/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* BeRound Font Family - Light */
@font-face {
    font-family: "BeRound";
    src: url(../font/Fontspring-DEMO-beround-light.otf) format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "BeRound";
    src: url(../font/Fontspring-DEMO-beround-light_italic.otf) format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* BeRound Font Family - Regular */
@font-face {
    font-family: "BeRound";
    src: url(../font/Fontspring-DEMO-beround-regular.otf) format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "BeRound";
    src: url(../font/Fontspring-DEMO-beround-regular_italic.otf) format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* BeRound Font Family - Medium */
@font-face {
    font-family: "BeRound";
    src: url(../font/Fontspring-DEMO-beround-medium.otf) format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "BeRound";
    src: url(../font/Fontspring-DEMO-beround-medium_italic.otf) format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* BeRound Font Family - SemiBold */
@font-face {
    font-family: "BeRound";
    src: url(../font/Fontspring-DEMO-beround-semibold.otf) format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "BeRound";
    src: url(../font/Fontspring-DEMO-beround-semibold_italic.otf) format('opentype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* BeRound Font Family - Bold */
@font-face {
    font-family: "BeRound";
    src: url(../font/Fontspring-DEMO-beround-bold.otf) format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "BeRound";
    src: url(../font/Fontspring-DEMO-beround-bold_italic.otf) format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* BeRound Font Family - ExtraBold */
@font-face {
    font-family: "BeRound";
    src: url(../font/Fontspring-DEMO-beround-extrabold.otf) format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "BeRound";
    src: url(../font/Fontspring-DEMO-beround-extrabold_italic.otf) format('opentype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

/* BeRound Font Family - Heavy */
@font-face {
    font-family: "BeRound";
    src: url(../font/Fontspring-DEMO-beround-heavy.otf) format('opentype');
    font-weight: 850;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "BeRound";
    src: url(../font/Fontspring-DEMO-beround-heavy_italic.otf) format('opentype');
    font-weight: 850;
    font-style: italic;
    font-display: swap;
}

/* BeRound Font Family - Black */
@font-face {
    font-family: "BeRound";
    src: url(../font/Fontspring-DEMO-beround-black.otf) format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "BeRound";
    src: url(../font/Fontspring-DEMO-beround-black_italic.otf) format('opentype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* Color Variables & Base Styles */
:root {
    --primary-color: #0c59a3;
    /* Brand Blue */
    --primary-hover: #08437a;
    --dark-blue: #072e54;
    --navy-blue: #031b33;
    --light-blue: #e8f4fd;
    --accent-blue: #4aa9ff;
    --text-dark: #2b2b2b;
    --text-light: #ffffff;
    --font-heading: 'BeRound', 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-navbar: 'BeRound', 'Poppins', sans-serif;
    --font-button-dark: 'BeRound', 'Poppins', sans-serif;
    --font-button-primary: 'BeRound', 'Poppins', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.more-text {
    font-family: var(--font-heading) !important;
    font-weight: 700;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

.btn-livup-dark {
    background-color: var(--dark-blue);
    color: var(--text-light);
    font-family: var(--font-button-dark);
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    padding: 12px 35px !important;
    border-radius: 50px !important;
    border: 2px solid var(--dark-blue);
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(7, 46, 84, 0.2);
    display: inline-block;
}

.btn-livup-dark:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(12, 89, 163, 0.35) !important;
}

.btn-livup-outline {
    background-color: transparent;
    color: var(--text-light);
    font-family: var(--font-button-dark);
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    padding: 12px 35px !important;
    border-radius: 50px !important;
    border: 2px solid var(--text-light);
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.btn-livup-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.35) !important;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    transition: var(--transition-smooth);
    border-bottom: none;
    z-index: 1000;
    height: 70px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* Soft shadow below navbar */
}

.navbar.scrolled {
    height: 80px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.navbar.navbar-hidden {
    transform: translateY(-100%) !important;
}

.navbar-nav .nav-link {
    font-family: var(--font-navbar);
    font-weight: 800;
    /* Bold weight */
    color: var(--primary-color) !important;
    /* Same blue color as design */
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem !important;
    /* Spacing */
    transition: all 0.3s ease !important;
    background-color: transparent !important;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-hover);
    transition: all 0.3s ease;
    opacity: 0;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-hover) !important;
    background-color: transparent !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::after {
    width: 24px;
    opacity: 1;
}

.logo-img-desktop {
    height: 85px;
    /* Big logo for desktop */
    width: auto;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo-img-desktop {
    height: 75px;
}

.logo-img {
    height: 60px;
    /* Mobile logo */
    width: auto;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 2;
    height: 110vh;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero-title span {
    font-family: var(--font-heading);
    font-size: 3.3rem;
    display: block;
    color: #004b93;
    font-weight: 800;
    letter-spacing: 0.1px;
    margin-bottom: 0.2rem;
}

.hero-title div {
    font-family: var(--font-heading);
    font-size: 6.8rem;
    font-weight: 900;
    color: #004b93;
    line-height: 0.9;
}

.btn-livup-primary {
    background-color: #004b93;
    color: #ffffff;
    font-family: var(--font-button-primary);
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    padding: 10px 45px !important;
    border-radius: 50px !important;
    text-transform: uppercase;
    transition: all 0.3s ease !important;
    border: 2px solid #004b93;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 75, 147, 0.2);
}

.btn-livup-primary:hover {
    background-color: var(--navy-blue);
    border-color: var(--navy-blue);
    color: #ffffff;
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(0, 75, 147, 0.35) !important;
}

/* Interactive Badge */
.badge-container {
    position: absolute;
    top: -5%;
    left: 5%;
    transform: translateX(-40%);
    width: 180px;
    height: 180px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-inner-img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 2;
}

.rotating-badge-img {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    z-index: 1;
    animation: rotate 12s linear infinite;
    transform-origin: center;
}

.badge-text-svg text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 9px;
    fill: #000000;
    letter-spacing: 1.5px;
}

.badge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background-color: #2db3ff;
    border: 4px solid #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.badge-center span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

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

    to {
        transform: rotate(360deg);
    }
}

/* Floating Hand & Bottle */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
}

.hand-img {
    max-height: 85vh;
    object-fit: contain;
    z-index: 3;
    transform: scale(1.15) translateY(5%);
    transform-origin: bottom center;
}

.bottle-glow-bg {
    position: absolute;
    top: 50%;
    right: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 50%;
}

/* Dots Page Indicator */
.hero-indicators {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(12, 89, 163, 0.5);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-dot.active {
    width: 30px;
    border-radius: 6px;
    background-color: var(--dark-blue);
}

/* Image Wave Divider */
.wave-divider-image {
    position: absolute;
    bottom: -25vw;
    /* Position the wave perfectly based on viewport scaling */
    left: 0;
    width: 100%;
    z-index: 999;
    line-height: 0;
    pointer-events: none;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.wave-divider-image.hidden {
    opacity: 0;
    visibility: hidden;
}

.wave-divider-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Products Section */
.products-section {
    background: linear-gradient(to bottom, #87c9ee 10%, #49b5ff 40%, #2ba5ff 100%);
    position: relative;
    z-index: 5;
    transition: margin-top 0.6s ease-in-out;
    /* This ensures the wave from hero section slips BEHIND the products section */
}

.products-section.no-wave {
    margin-top: 0 !important;
}

.products-section .wave-divider-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: rotate(180deg);
}

.products-section .wave-divider-top svg {
    width: calc(100% + 1.3px);
    height: 80px;
}

.products-section .shape-fill-top {
    fill: #ffffff;
}

.products-main-title {
    font-size: 4.2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    margin-top: -85px;
    margin-bottom: 2rem !important;
    color: #ffffff;
}

.section-subtitle-white {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    padding-bottom: 6rem !important;
}

/* Products Slider */
.product-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

@media (min-width: 992px) {
    .slider-arrow {
        display: none !important;
    }

    .products-section {
        margin-top: 90px;
    }
}

.product-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    width: 100%;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.product-track::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 calc(33.333% - 20px);
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
    scroll-snap-align: start;
}

@media (max-width: 991.98px) {
    .product-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 575.98px) {
    .product-card {
        flex: 0 0 100%;
    }
}

.product-image-container {
    height: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.15));
}

.product-card:hover .product-img {
    transform: scale(1.08) translateY(-10px);
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.25));
}

.product-volume-pill {
    background-color: var(--text-light);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.product-card:hover .product-volume-pill {
    background-color: var(--dark-blue);
    color: var(--text-light);
    box-shadow: 0 6px 15px rgba(7, 46, 84, 0.2);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.slider-arrow:hover {
    color: var(--dark-blue);
    transform: translateY(-50%) scale(1.2);
}

.slider-arrow.prev {
    left: -40px;
}

.slider-arrow.next {
    right: -40px;
}

/* Quality and Sustainability Section */
.quality-section {
    position: relative;
    /* padding-bottom: 80px; */
}

.quality-section-content {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
    border-radius: 20px;
    padding: 20px;
}

.quality-title {
    color: #004b93;
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
}

.quality-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
    text-align: justify;
}

.model-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: visible;
}

.model-img {
    max-width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
    display: block;
}

.quality-section .wave-divider {
    height: 150px;
}

/* Why Livup Section */
.why-section {
    background: url('../dark blue water back.png') no-repeat top center;
    background-size: cover;
    padding: 100px 0 40px;
    color: var(--text-light);
    position: relative;
    z-index: 10;
    clear: both;
    margin-top: -35px;
    min-height: 80vh;
    overflow-x: hidden;
}

.why-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-heading);
    color: #ffffff;
}

.why-container {
    position: relative;
    min-height: 500px;
}

/* Droplet Center */
.droplet-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.droplet-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(74, 169, 255, 0.4) 0%, rgba(74, 169, 255, 0) 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.droplet-svg {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(74, 169, 255, 0.6));
    animation: floatDroplet 5s ease-in-out infinite;
}

/* Feature Nodes */
.feature-node {
    position: absolute;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: var(--transition-smooth);
}

.feature-node:hover {
    transform: translateY(-5px);
}

.feature-icon-circle {
    width: 70px;
    height: 70px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.feature-node:hover .feature-icon-circle {
    transform: scale(1.1);
}

.feature-icon-circle svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-color);
    transition: var(--transition-smooth);
}

.feature-icon-circle img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.feature-node:hover .feature-icon-circle svg {
    fill: var(--text-light);
}

.feature-text-box {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: max-content;
    pointer-events: none;
}

.feature-title-node {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-light);
}

.feature-desc-node {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Node Positioning & Connecting Lines */
.node-left {
    text-align: right;
}

.node-left .feature-text-box {
    right: 100%;
    margin-right: 15px;
}

.node-right {
    text-align: left;
}

.node-right .feature-text-box {
    left: 100%;
    margin-left: 15px;
}

/* Node Positions */
.node-1 {
    top: 0;
    left: 22%;
}

/* Top Left */
.node-2 {
    top: 45%;
    left: 16%;
}

/* Mid Left */
.node-3 {
    top: 80%;
    left: 22%;
}

/* Bottom Left */
.node-4 {
    top: 0;
    right: 22%;
}

/* Top Right */
.node-5 {
    top: 45%;
    right: 16%;
}

/* Mid Right */
.node-6 {
    top: 80%;
    right: 22%;
}

/* Bottom Right */

/* SVG Connector Lines Container */
.connector-lines-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.connector-lines-svg line {
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 2;
    transition: var(--transition-smooth);
}

.feature-node:hover~.connector-lines-svg line {
    stroke: var(--accent-blue);
    stroke-width: 2;
}

/* Customers Section */
.customers-section {
    background-color: #f7fafc;
    padding: 80px 0;
}

.customer_section_wrapper {
    padding: 1rem 0 !important;
}

.customers-title {
    color: #004b93;
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-family: 'Fontspring', sans-serif;
    letter-spacing: 1px;
}

.logos-card {
    background: #ffffff;
    border-radius: 60px;
    padding: 2.5rem 4rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    max-width: 1900px;
    margin: 0 auto;
    border: 2px solid rgba(0, 75, 147, 0.08);
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    height: 12vh;
    display: flex;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 100px;
    animation: scroll-marquee 25s linear infinite;
}

.marquee-logo {
    max-height: 60px;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(20%);
}

.marquee-logo:hover {
    transform: scale(1.15);
    filter: grayscale(0%) drop-shadow(0 4px 12px rgba(0, 75, 147, 0.2));
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Get in Touch Section */
.contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #e3f4ff 100%);
    padding: 100px 0;
}

.contact-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(12, 89, 163, 0.08);
}

.contact-title {
    color: #004b93;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.word-cloud-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.word-cloud-img {
    max-height: 700px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(12, 89, 163, 0.1));
    animation: floatDroplet 6s ease-in-out infinite;
}

.form-group-custom {
    margin-bottom: 1.5rem;
}

.form-group-custom input,
.form-group-custom textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(12, 89, 163, 0.15);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: #fcfdfe;
    transition: var(--transition-smooth);
}

.form-group-custom input::placeholder,
.form-group-custom textarea::placeholder {
    color: #a0aec0;
}

.form-group-custom input:focus,
.form-group-custom textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(12, 89, 163, 0.1);
}

/* Footer Section */
.footer-section {
    background: url('../footer_dark_clouds.png') no-repeat center bottom;
    background-size: cover;
    background-blend-mode: overlay;
    position: relative;
    color: #ffffff;
    padding: 80px 0 30px;
    font-size: 0.9rem;
    border-top: none;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-certifications {
    max-height: 70px;
    width: auto;
    margin-top: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-col-title {
    font-family: var(--font-heading);
    color: var(--text-light) !important;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
    border: none;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-blue);
    padding-left: 5px;
}

.footer-contact-info p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-info svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

.social-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

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

@keyframes floatHand {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

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

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

@keyframes floatDroplet {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.4;
    }
}

/* Scroll Animations */
.reveal {
    position: relative;

    opacity: 10;
    transform: translateY(0px);
}

.js-disabled .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}


/* =========================================
   RESPONSIVE RULES
   ========================================= */

/* ---------- XL (≤1399px) ---------- */
@media (max-width: 1399.98px) {
    .hero-title span {
        font-size: 3.5rem !important;
    }

    .hero-title div {
        font-size: 7rem !important;
    }
}

/* ---------- LG (≤1199px) ---------- */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.25rem;
    }

    .hero-title span {
        font-size: 3rem !important;
    }

    .hero-title div {
        font-size: 6rem !important;
    }

    .badge-container {
        width: 180px !important;
        height: 180px !important;
    }

    .node-1 {
        left: 28%;
    }

    .node-2 {
        left: 14%;
    }

    .node-3 {
        left: 28%;
    }

    .node-4 {
        right: 28%;
    }

    .node-5 {
        right: 14%;
    }

    .node-6 {
        right: 28%;
    }

    .quality-section {
        max-height: none;
    }
}

/* ---------- MD (≤991px) ---------- */
@media (max-width: 991.98px) {

    /* --- Navbar --- */
    .navbar {
        min-height: 60px;
        height: auto;
    }

    .logo-img-desktop,
    .logo-img {
        height: 45px;
    }

    .navbar-collapse {
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        margin-top: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1001;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .navbar-nav.w-100 {
        width: 100% !important;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        text-align: left;
        font-size: 0.95rem;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    /* --- Hero Section --- */
    .hero-section {
        min-height: auto !important;
        padding-top: 100px;
        padding-bottom: 40px;
        text-align: left;
    }

    .hero-title span {
        font-size: 1.8rem !important;
    }

    .hero-title div {
        font-size: 3.5rem !important;
    }

    .btn-livup-primary {
        padding: 10px 24px !important;
        font-size: 0.95rem;
    }

    .hero-image-wrapper {
        margin-top: 1.5rem !important;
    }

    .bottle-image {
        max-height: 350px !important;
    }

    .badge-container {
        width: 110px !important;
        height: 110px !important;
    }

    .badge-container svg text {
        font-size: 10px !important;
    }

    .wave-divider-image {
        bottom: -15vw;
    }

    .hero-indicators {
        bottom: 60px;
    }

    /* --- Quality & Sustainability --- */
    .quality-section {
        max-height: none;
        padding: 0px 0;
    }

    .quality-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .quality-text {
        text-align: center;
    }

    .quality-section-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .model-img-wrapper {
        margin-top: 3rem;
    }

    .model-img {
        max-height: 400px;
    }

    /* --- Why Livup Grid --- */
    .why-section {
        padding: 150px 0 80px;
        margin-top: -120px;
        z-index: 10;
    }

    .why-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        min-height: auto;
    }

    .feature-node {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        text-align: center !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        background-color: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(5px);
        padding: 20px 15px !important;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature-icon-circle {
        order: 1;
        margin-right: 0 !important;
        margin-bottom: 12px !important;
        flex-shrink: 0;
    }

    .feature-text-box {
        position: static !important;
        transform: none !important;
        width: auto !important;
        order: 2;
        margin: 0 !important;
        pointer-events: auto !important;
    }

    .node-left .feature-text-box,
    .node-right .feature-text-box {
        left: auto !important;
        right: auto !important;
    }

    .droplet-wrapper,
    .connector-lines-svg {
        display: none !important;
    }

    /* --- Products Section --- */
    .products-section {
        padding: 60px 0 100px;
    }

    .products-main-title {
        font-size: 2.2rem;
        margin-top: 0;
    }

    .section-subtitle-white {
        padding-bottom: 2rem !important;
    }

    .product-slider-wrapper {
        padding: 0 10px;
    }

    /* --- Customers --- */
    .customers-section {
        padding: 60px 0;
    }

    .customers-title {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }

    .logos-card {
        border-radius: 30px;
        padding: 2rem;
        gap: 20px;
    }

    .logo-item {
        height: 45px;
    }

    /* --- Contact --- */
    .contact-section {
        padding: 60px 0;
    }

    .contact-title {
        font-size: 2rem;
    }

    .word-cloud-img {
        max-height: 400px;
    }

    /* --- Footer --- */
    .footer-section {
        padding: 60px 0 20px;
        text-align: center;
    }

    .footer-section .col-lg-4 {
        justify-content: center !important;
    }

    .footer-section .row>div {
        text-align: center;
    }

    .footer-contact-info p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* ---------- SM (≤767px) ---------- */
@media (max-width: 767.98px) {

    /* --- Hero --- */
    .hero-section {
        padding-top: 80px;
        padding-bottom: 40px;
        background-position: center center;
    }

    .hero-title {
        margin-bottom: 1.5rem !important;
    }

    .hero-title span {
        font-size: 1.5rem !important;
        letter-spacing: 0 !important;
    }

    .hero-title div {
        font-size: 3rem !important;
    }

    .btn-livup-primary {
        padding: 8px 20px !important;
        font-size: 0.85rem;
    }

    .bottle-image {
        max-height: 300px !important;
    }

    .badge-container {
        width: 90px !important;
        height: 90px !important;
    }

    .badge-container svg text {
        font-size: 8px !important;
    }

    .wave-divider-image {
        bottom: -10vw;
    }

    .hero-indicators {
        bottom: 40px;
    }

    /* --- Products --- */
    .products-section {
        padding: 40px 0 80px;
    }

    .products-main-title {
        font-size: 1.8rem;
    }

    .section-subtitle-white {
        font-size: 0.95rem;
        padding-bottom: 1.5rem !important;
    }

    .product-track {
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .product-image-container {
        height: 280px;
    }

    /* --- Quality --- */
    .quality-title {
        font-size: 2rem;
    }

    .quality-text {
        font-size: 0.9rem;
    }

    .model-img {
        max-height: 320px;
    }

    /* --- Why Livup --- */
    .why-section {
        padding: 220px 0 80px;
    }

    .why-title {
        font-size: 2rem;
    }

    .why-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-title-node {
        font-size: 1.05rem;
    }

    .feature-icon-circle {
        width: 55px;
        height: 55px;
    }

    /* --- Customers --- */
    .customers-title {
        font-size: 1.8rem;
    }

    .logos-card {
        border-radius: 20px;
        padding: 1.5rem;
        gap: 15px;
        justify-content: center;
    }

    .logo-item {
        height: 40px;
        flex: 0 0 calc(50% - 15px);
    }

    .logo-item svg,
    .logo-item img {
        max-width: 130px;
    }

    /* --- Contact --- */
    .contact-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .word-cloud-wrapper {
        margin-bottom: 2rem;
    }

    .word-cloud-img {
        max-height: 300px;
    }

    /* --- Footer --- */
    .footer-section {
        padding: 40px 0 15px;
    }

    .footer-col-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 15px;
    }
}

/* ---------- XS (≤575px) ---------- */
@media (max-width: 575.98px) {

    /* --- Hero --- */
    .hero-section {
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .hero-title span {
        font-size: 1.2rem !important;
    }

    .hero-title div {
        font-size: 2.5rem !important;
    }

    .btn-livup-primary {
        font-size: 0.8rem;
        padding: 8px 18px !important;
    }

    .bottle-image {
        max-height: 250px !important;
    }

    .badge-container {
        width: 80px !important;
        height: 80px !important;
    }

    .badge-container svg {
        display: none !important;
    }

    .wave-divider-image {
        bottom: -5vw;
    }

    .hero-indicators {
        bottom: 20px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .hero-dot.active {
        width: 22px;
    }

    /* --- Products --- */
    .products-main-title {
        font-size: 1.5rem;
    }

    .section-subtitle-white {
        font-size: 0.85rem;
        padding-bottom: 1.5rem !important;
    }

    /* Removed product-track flex-direction column override to keep it a carousel */

    .product-image-container {
        height: 260px;
    }

    .product-volume-pill {
        font-size: 0.8rem;
        padding: 0.4rem 1.5rem;
    }

    /* --- Quality --- */
    .quality-section {
        padding: 0px 0;
    }

    .quality-title {
        font-size: 1.7rem;
    }

    .quality-text {
        font-size: 0.85rem;
    }

    .model-img {
        max-height: 280px;
    }

    /* --- Why Livup --- */
    .why-section {
        padding: 150px 0 60px;
    }

    .why-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .feature-node {
        padding: 12px !important;
        gap: 10px !important;
    }

    .feature-title-node {
        font-size: 0.95rem;
    }

    .feature-icon-circle {
        width: 45px;
        height: 45px;
    }

    /* --- Customers --- */
    .customers-section {
        padding: 40px 0;
    }

    .customers-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .logos-card {
        border-radius: 16px;
        padding: 1.2rem;
        gap: 12px;
    }

    .logo-item {
        height: 35px;
        flex: 0 0 calc(50% - 12px);
    }

    .logo-item svg,
    .logo-item img {
        max-width: 110px;
    }

    /* --- Contact --- */
    .contact-section {
        padding: 40px 0;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .form-group-custom input,
    .form-group-custom textarea {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .word-cloud-img {
        max-height: 250px;
    }

    /* --- Footer --- */
    .footer-section .row .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .social-links {
        gap: 10px;
    }

    .social-btn {
        width: 32px;
        height: 32px;
    }

    .social-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* ---------- XXS (≤399px) ---------- */
@media (max-width: 399.98px) {
    .hero-title span {
        font-size: 1rem !important;
    }

    .hero-title div {
        font-size: 2rem !important;
    }

    .badge-container {
        display: none !important;
    }

    .bottle-image {
        max-height: 200px !important;
    }

    .products-main-title {
        font-size: 2rem;
    }

    .quality-title {
        font-size: 2rem;
    }

    .why-title {
        font-size: 2rem;
    }

    .customers-title {
        font-size: 1.5rem;
    }

    .logo-item {
        flex: 0 0 100%;
    }

    .contact-title {
        font-size: 2rem;
    }
}

/* ---------- Landscape phones ---------- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto !important;
        padding-top: 100px;
        padding-bottom: 30px;
    }

    .bottle-image {
        max-height: 50vh !important;
    }

    .badge-container {
        width: 100px !important;
        height: 100px !important;
    }

    .hero-indicators {
        bottom: 10px;
    }
}

/* =========================================
   OUR PRODUCTS PAGE
   ========================================= */

.products-hero-section {
    position: relative;
    padding-top: 150px;
    overflow: hidden;
    background: linear-gradient(to bottom, #7fc8ff 0%, #ffffff 100%);
}

.products-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.products-hero-text {
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.6);
    line-height: 0.8;
    margin: 0;
    text-align: center;
    font-family: var(--font-heading);
    letter-spacing: -2px;
}

.hero-splash-img {
    object-fit: cover;
    max-height: 30vh;
    margin-bottom: -5px;
}

/* Float animation for bottle */
@keyframes floatBottle {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

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

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

.products-hero-bottle {
    max-width: 450px;
    margin-top: -150px;
    animation: floatBottle 6s ease-in-out infinite;
}

/* Products Section Cards */
.products-watermark-bg {
    font-size: 15vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #e1efff;
    z-index: 1;
    font-family: var(--font-heading);
    pointer-events: none;
}

.product-card-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    transition: transform 0.4s ease;
}

.product-card-img {
    max-width: 60%;
    height: 320px;
    object-fit: contain;
    margin: 0 auto -20px auto;
    position: relative;
    z-index: 3;
    transition: transform 0.4s ease;
}

.product-card-img-1 {
    max-width: 60%;
    transition: transform 0.4s ease;
}

.product-card-img.bottle-small {
    height: 250px;
}

.product-card {
    border-radius: 35px;
    padding: 20px 20px;
    text-align: center;
    z-index: 1;
}

.product-card-wrapper:hover {
    transform: translateY(-12px) scale(1.03);
}

.product-card-wrapper:hover .product-card-img {
    transform: translateY(-10px) rotate(2deg);
}

.product-card-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.8rem;
    margin: 0;
    font-family: var(--font-heading);
}

/* First Card */
.card-1-wrapper {
    padding-top: 100px;
}

.card-1 {
    background-color: #73ccff;
}

/* Second Card */
.card-2-wrapper {
    padding-top: 0px;
}

.card-2 {
    background-color: #b6e4ff;
}

/* Third Card */
.card-3-wrapper {
    padding-top: 50px;
}

.card-3 {
    background-color: #66c6ff;
}

/* Animations */
.fade-up-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up-element.in-view {
    opacity: 1;
    transform: translateY(0);
}

.btn-explore {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 800;
    font-size: 1.1rem;
}

.btn-explore:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 82, 180, 0.3) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {

    .card-1-wrapper,
    .card-2-wrapper,
    .card-3-wrapper {
        padding-top: 50px;
    }
}

/* =========================================
   ABOUT US PAGE — REDESIGNED
   ========================================= */

/* --- Hero --- */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #c8eaff 0%, #e8f6ff 50%, #ffffff 100%);
    padding-top: 100px;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.about-trust,
.about-factory,
.about-quality,
.about-comp,
.about-directors {
    scroll-margin-top: 100px;
}

.about-hero__bg-img {
    width: 100%;
    height: 140%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    top: -25%;
    transform: translateY(140px) scale(1);
    transition: transform 0.1s linear;
}

.about-hero__particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.about-hero__bubble {
    position: absolute;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(74, 169, 255, 0.2));
    border-radius: 50%;
    animation: bubbleUp 5s ease-in infinite;
}

@keyframes bubbleUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) scale(0.5);
        opacity: 0;
    }
}

.about-hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.about-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 8px 20px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.about-hero__badge-icon {
    display: flex;
    color: var(--primary-color);
}

.about-hero__title {
    font-family: var(--font-heading);
    font-size: 4.4rem;
    font-weight: 900;
    color: var(--dark-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(12, 89, 163, 0.1);
}

.about-hero__subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-hero__scroll-hint {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.7;
}

.about-hero__scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.7);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.about-hero__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 4;
    line-height: 0;
}

.about-hero__wave svg {
    width: 100%;
    height: 120px;
}

/* --- Trust Section --- */
.about-trust {
    padding: 80px 0 60px;
    background: url('../water wave (about us).png') no-repeat;
    background-size: cover;
    background-color: #ffffff;
}

.about-trust__header {
    text-align: center;
    margin-bottom: 50px;
}

.about-trust__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.3;
}

.about-trust__title strong {
    font-weight: 800;
    color: var(--dark-blue);
}

.about-trust__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.about-trust__stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-trust__stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    display: inline;
}

.about-trust__stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: -5px;
}

.about-trust__stat-label {
    font-size: 0.9rem;
    color: #6b7c93;
    font-weight: 500;
    margin-top: 4px;
}

.about-trust__stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #d0e3f5, transparent);
}

.about-trust__features {
    display: flex;
    justify-content: center;
    gap: 150px;
    max-width: 900px;
    margin: 0 auto 20px;
    flex-wrap: wrap;
}

.about-trust__feature-card {
    position: relative;
    background: transparent;
    border: none;
    padding: 20px 10px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.about-trust__feature-card:hover {
    transform: translateY(-6px);
}

.about-trust__feature-glow {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 95px;
    height: 95px;
    background: radial-gradient(circle, rgba(74, 169, 255, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.4s ease;
}

.about-trust__feature-card:hover .about-trust__feature-glow {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(74, 169, 255, 0.2), transparent 70%);
}

.about-trust__feature-icon {
    width: 95px;
    height: 95px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    padding: 15px;
    transition: all 0.4s ease;
    background: var(--primary-color);
    box-shadow: 0 4px 20px rgba(12, 89, 163, 0.25);
}

.about-trust__feature-card:hover .about-trust__feature-icon {
    border-color: var(--primary-color);
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(12, 89, 163, 0.2);
}

.about-trust__feature-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transition: transform 0.4s ease;
    display: block;
}

.about-trust__feature-card:hover .about-trust__feature-icon img {
    transform: scale(1.1);
}

.about-trust__feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 4px;
}

.about-trust__feature-card p {
    font-size: 0.9rem;
    color: #6b7c93;
    margin: 0;
}

/* --- Factory Gallery --- */
.about-factory {
    padding: 40px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f8ff 100%);
}

.about-factory__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
    max-width: 950px;
    margin: 0 auto;
}

.about-factory__side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.about-factory__img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.about-factory__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-factory__img-wrapper:hover img {
    transform: scale(1.05);
}

.about-factory__img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(7, 46, 84, 0.8), transparent);
    padding: 24px 16px 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-factory__img-wrapper:hover .about-factory__img-overlay {
    opacity: 1;
}

.about-factory__img-tag {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.about-factory__video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 46, 84, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.4s ease;
}

.about-factory__video-card:hover .about-factory__video-overlay {
    background: rgba(7, 46, 84, 0.6);
}

.about-factory__play-btn {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.about-factory__video-card:hover .about-factory__play-btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.about-factory__video-label {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Quality Section --- */
.about-quality {
    padding: 80px 0;
    background: #ffffff;
}

.about-quality__top {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.about-quality__heading-group {
    flex-shrink: 0;
}

.about-quality__title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark-blue);
    line-height: 1.15;
    margin-bottom: 8px;
}

.about-quality__accent-line {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue));
    border-radius: 2px;
}

.about-quality__desc {
    border-left: 2px solid rgba(12, 89, 163, 0.15);
    padding-left: 24px;
}

.about-quality__desc p {
    font-size: 1.4rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.about-quality__photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-quality__photo-item {
    position: relative;
    border-radius: 60px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.about-quality__photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-quality__photo-item:hover img {
    transform: scale(1.05);
}

.about-quality__photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(7, 46, 84, 0.7), transparent);
    padding: 30px 16px 14px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-quality__photo-item:hover .about-quality__photo-caption {
    opacity: 1;
}

.about-quality__photo-caption span {
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
}

/* --- Composition Section --- */
.about-comp {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #f0f8ff 0%, #e4f2fc 100%);
}

.about-comp__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.about-comp__title-brand {
    font-weight: 800;
    color: var(--primary-color);
}

.about-comp__visual {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.about-comp__glass-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

.about-comp__glass {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    justify-content: center;
    position: relative;
}

.about-comp__glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(100, 180, 240, 0.5) 0%, rgba(60, 140, 220, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

.about-comp__glow-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 2px dotted rgba(12, 89, 163, 0.25);
    animation: rotateRing 20s linear infinite;
}

.about-comp__glow-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 75%;
    border-radius: 50%;
    border: 1.5px dotted rgba(12, 89, 163, 0.15);
    animation: rotateRing 15s linear infinite reverse;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.06);
    }
}

@keyframes rotateRing {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.about-comp__glass img {
    height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(12, 89, 163, 0.2));
    animation: floatDroplet 5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.about-comp__label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.about-comp__label--na,
.about-comp__label--sugar {
    grid-column: 1;
    justify-self: end;
    flex-direction: row;
}

.about-comp__label--mg,
.about-comp__label--ca {
    grid-column: 3;
    justify-self: start;
    flex-direction: row;
}

.about-comp__label--na {
    grid-row: 1;
    align-self: center;
}

.about-comp__label--sugar {
    grid-row: 2;
    align-self: center;
}

.about-comp__label--mg {
    grid-row: 1;
    align-self: center;
}

.about-comp__label--ca {
    grid-row: 2;
    align-self: center;
}

.about-comp__label-content {
    display: flex;
    flex-direction: column;
}

.about-comp__label--na .about-comp__label-content,
.about-comp__label--sugar .about-comp__label-content {
    text-align: right;
}

.about-comp__label-symbol {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
}

.about-comp__label-name {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
}

.about-comp__label-value {
    font-size: 1.1rem;
    color: #6b7c93;
}

.about-comp__label-drop {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
    filter: drop-shadow(0 4px 10px rgba(12, 89, 163, 0.4));
}

.about-comp__label-line {
    flex: 1;
    height: 0;
    flex-shrink: 1;
    border-top: 2px dotted rgba(12, 89, 163, 0.5);
    min-width: 30px;
}

.about-comp__label--mg .about-comp__label-line,
.about-comp__label--ca .about-comp__label-line {
    border-top: 2px dotted rgba(12, 89, 163, 0.5);
    background: none;
}

.about-comp__bottom-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.about-comp__stat-pill {
    flex: 1;
    text-align: center;
    padding: 24px 20px;
    border-right: 1px solid rgba(12, 89, 163, 0.12);
}

.about-comp__stat-pill:last-child {
    border-right: none;
}

.about-comp__stat-pill strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
}

.about-comp__stat-pill span {
    font-size: 1.1rem;
    color: #6b7c93;
}

/* --- Directors Section --- */
.about-directors {
    padding: 80px 0;
    background: #ffffff;
}

.about-directors__header {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

.about-directors__heading-group {
    flex-shrink: 0;
}

.about-directors__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.about-directors__accent-line {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue));
    border-radius: 2px;
}

.about-directors__desc {
    border-left: 2px solid rgba(12, 89, 163, 0.15);
    padding-left: 24px;
}

.about-directors__desc p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.about-directors__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.about-directors__card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(12, 89, 163, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    will-change: transform;
}

.about-directors__card:hover {
    box-shadow: 0 20px 50px rgba(12, 89, 163, 0.15);
}

.about-directors__card-img {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0c59a3, #072e54);
    aspect-ratio: 1;
}

.about-directors__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.about-directors__card:hover .about-directors__card-img img {
    transform: scale(1.05);
}

.about-directors__card-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(7, 46, 84, 0.5), transparent);
    pointer-events: none;
}

.about-directors__card-info {
    padding: 18px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
    text-align: center;
}

.about-directors__card-info strong {
    display: block;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.about-directors__card-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* --- About Page Responsive --- */
@media (max-width: 991.98px) {
    .about-hero__title {
        font-size: 4rem;
    }

    .about-trust__features {
        display: flex;
        justify-content: center;
        gap: 60px;
    }

    .about-quality__top {
        flex-direction: column;
        gap: 20px;
    }

    .about-quality__desc {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid rgba(12, 89, 163, 0.15);
        padding-top: 16px;
    }

    .about-directors__header {
        flex-direction: column;
        gap: 20px;
    }

    .about-directors__desc {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid rgba(12, 89, 163, 0.15);
        padding-top: 16px;
    }

    .about-directors__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 650px;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        min-height: 80vh;
        padding-top: 90px;
    }

    .about-hero__title {
        font-size: 3rem;
    }

    .about-hero__subtitle {
        font-size: 1rem;
    }

    .about-trust__title {
        font-size: 2rem;
    }

    .about-trust__stats {
        gap: 20px;
    }

    .about-trust__stat-number {
        font-size: 2.5rem;
    }

    .about-trust__stat-divider {
        height: 30px;
    }

    .about-trust__features {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-quality__title {
        font-size: 2rem;
    }

    .about-quality__photos {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-comp__glass-container {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: center;
    }

    .about-comp__glass {
        grid-column: 1;
        grid-row: 1;
        /* Move glass to top on mobile */
    }

    .about-comp__label {
        grid-column: 1;
        grid-row: auto !important;
        /* Reset row placement so they stack automatically */
        justify-self: center;
        flex-direction: column !important;
        text-align: center;
    }

    .about-comp__label-line {
        display: none;
        /* Hide horizontal lines on mobile */
    }

    .about-comp__label--na .about-comp__label-content,
    .about-comp__label--sugar .about-comp__label-content {
        text-align: center;
    }

    .about-comp__glass img {
        height: 250px;
    }

    .about-comp__title {
        font-size: 2rem;
    }

    .about-directors__title {
        font-size: 2rem;
    }

    .about-directors__grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .about-comp__bottom-stats {
        flex-direction: column;
        gap: 0;
    }

    .about-comp__stat-pill {
        border-right: none;
        border-bottom: 1px solid rgba(12, 89, 163, 0.12);
        padding: 12px;
    }

    .about-comp__stat-pill:last-child {
        border-bottom: none;
    }
}

@media (max-width: 575.98px) {
    .about-hero__title {
        font-size: 2.5rem;
    }

    .about-trust__stats {
        flex-direction: column;
        gap: 16px;
    }

    .about-trust__stat-divider {
        width: 50px;
        height: 1px;
    }
}

/* =========================================
   BLOGS LISTING PAGE
   ========================================= */

.blogs-hero {
    min-height: 60vh;
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
}

.blogs-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../blog-ocean.jpg') no-repeat center center;
    background-size: cover;
    z-index: 0;
}

.blogs-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 40, 80, 0.4);
}

.blogs-sidebar {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blogs-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    line-height: 0;
}

.sidebar-blog-item:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.blog-card {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-5px);
}

.pagination .page-link {
    color: var(--text-color);
    padding: 10px 15px;
}

.pagination .page-link.text-dark {
    color: #000 !important;
}

/* =========================================
   BLOG DETAILS PAGE
   ========================================= */

.blog-details-section h2 {
    font-size: 1.8rem;
}

.blog-tips p {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* =========================================
   LANDING PAGE RESPONSIVENESS
   ========================================= */

@media (max-width: 991.98px) {

    /* Hero Section */
    .hero-section {
        height: auto !important;
        min-height: 0 !important;
        padding-bottom: 0;
        overflow: hidden;
    }

    .carousel-item {
        height: auto !important;
        min-height: 0 !important;
        padding-top: 0 !important;
    }

    .carousel-item>div {
        height: auto !important;
    }

    .carousel-item>.container {
        padding-top: 120px !important;
    }

    .display-1 {
        font-size: 3.5rem !important;
    }

    .hero-image-wrapper {
        margin-top: 40px !important;
        justify-content: center !important;
    }

    .badge-container {
        left: 5% !important;
        width: 140px !important;
        height: 140px !important;
    }

    .badge-container img {
        width: 120px !important;
        height: 120px !important;
    }

    .bottle-image {
        max-height: 45vh !important;
    }

    .wave-divider-image {
        display: none !important;
    }

    /* Carousel Images (Slides 2, 3, 4) */
    .carousel-item img.d-block {
        height: auto !important;
        /* Let image use intrinsic height */
        object-fit: contain !important;
        /* Stop zooming */
        object-position: center !important;
    }

    /* Why Livup Section */
    .why-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        min-height: auto;
        padding: 40px 0;
    }

    .droplet-wrapper {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin-bottom: 20px;
        order: -1;
    }

    .feature-node {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100%;
        justify-content: center !important;
        text-align: center !important;
        flex-direction: column !important;
    }

    .feature-icon-circle {
        margin: 0 auto 15px auto !important;
    }

    #connectorLines {
        display: none !important;
    }

    /* Get in Touch Section */
    .word-cloud-wrapper {
        margin-bottom: 40px;
    }

    .word-cloud-img {
        max-height: 350px;
    }
}

@media (max-width: 767.98px) {
    .carousel-item>.container {
        padding-top: 90px !important;
    }

    .display-1 {
        font-size: 2.1rem !important;
        margin-bottom: 15px !important;
    }

    .hero-image-wrapper {
        margin-top: 15px !important;
    }

    .bottle-image {
        max-height: 48vh !important;
    }

    .contact-title {
        font-size: 2.2rem !important;
    }

    /* Make sure html and body have no horizontal scroll */
    html,
    body {
        overflow-x: hidden;
    }

    /* Footer Mobile Fixes */
    .footer-section {
        padding: 50px 0 20px;
    }

    .footer-section img.img-fluid[alt="Livup Logo"] {
        max-width: 180px !important;
        margin: 0 auto;
        display: block;
    }

    .footer-col-title {
        font-size: 1.1rem !important;
        text-align: center;
        margin-top: 20px;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a {
        font-size: 0.9rem !important;
    }

    .footer-contact-info p {
        justify-content: center;
        text-align: center;
        font-size: 0.8rem !important;
    }

    .footer-section .col-6 {
        width: 100%;
        /* Force stacking */
        margin-bottom: 20px;
    }

    .footer-section .mt-4 img {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }
}

/* =======================================================================
   OUR PRODUCTS PAGE STYLES
   ======================================================================= */

/* Products Hero Section */
.products-hero-section {
    position: relative;
    background: url('../about us background.png') no-repeat center top;
    /* Hide wave */
    background-size: cover;
    margin-top: 110px;
    /* Push below navbar */
    height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    /* Stack above the white section */
    overflow: hidden;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        letter-spacing: -20px;
        transform: translate(-50%, -80%) scale(0.8);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        letter-spacing: -2px;
        transform: translate(-50%, -50%) scale(1);
        filter: blur(0);
    }
}

.products-hero-text {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Fontspring', sans-serif;
    font-size: clamp(4rem, 15vw, 20rem);
    /* Highly responsive for mobile */
    font-weight: 900;
    color: #ffffff;
    z-index: 1;
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
    animation: logoFadeIn 1.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), text-shadow 0.5s ease, color 0.5s ease;
}

.products-hero-text:hover {
    transform: translate(-50%, -53%) scale(1.05);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 50px rgba(12, 89, 163, 0.5);
    color: #e3f2fd;
    cursor: default;
}

.hero-bottle-container {
    position: absolute;
    bottom: -10vh;
    left: 40%;
    transform: translateX(-50%);
    z-index: 11;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    /* Removed pointer-events: none so hover works */
}

/* Shake animation specific to products hero bottle */
@keyframes products-bottle-shake {

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

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

    30% {
        transform: rotate(3deg);
    }

    45% {
        transform: rotate(-2deg);
    }

    60% {
        transform: rotate(2deg);
    }

    75% {
        transform: rotate(-1deg);
    }

    90% {
        transform: rotate(1deg);
    }
}

.products-hero-bottle {
    height: 100% !important;
    width: auto !important;
    object-fit: contain;
    transition: transform 0.3s ease !important;
    cursor: pointer;
}

.products-hero-bottle:hover {
    animation: products-bottle-shake 0.5s ease-in-out infinite !important;
}

/* Responsive constraints for Products Page */
@media (max-width: 991.98px) {
    .products-hero-section {
        height: 60vh;
        margin-top: 90px;
    }

    .hero-bottle-container {
        height: 70vh;
        bottom: -5vh;
    }

    .products-hero-text {
        top: 35%;
        font-size: clamp(5rem, 16vw, 14rem);
    }
}

@media (max-width: 767.98px) {
    .products-hero-section {
        height: 45vh;
        margin-top: 80px;
    }

    .hero-bottle-container {
        height: 55vh;
        bottom: -10vh;
    }

    .products-hero-text {
        top: 40%;
        font-size: clamp(3rem, 12vw, 8rem);
    }

    .products-watermark-bg {
        font-size: clamp(2rem, 12vw, 6rem);
        top: 20px;
    }
}

.products-intro-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #4a4a4a;
    position: relative;
    z-index: 5;
    font-weight: 500;
}

.btn-explore {
    background-color: #004b93;
    color: #ffffff;
    font-weight: 800;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-explore:hover {
    background-color: #00366b;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Product Cards Section */
.product-cards-section {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-cards-section .container {
    position: relative;
    z-index: 2;
}

.products-watermark-bg {
    font-family: 'Fontspring', sans-serif;
    font-size: clamp(4rem, 12vw, 18rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px #86b4e1;
    z-index: 0;
    white-space: nowrap;
    text-transform: capitalize;
    transition: all 0.4s ease;
    cursor: default;
}

.products-watermark-bg:hover {
    color: rgba(134, 180, 225, 0.15);
    -webkit-text-stroke: 2.5px #0c59a3;
    transform: translateX(-50%) scale(1.02);
}

.product-card-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    transition: var(--transition-smooth);
}

.product-card-wrapper:hover {
    transform: translateY(-10px);
}

.product-card-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 380px;
    background-color: #70d5fb;
    border-radius: 20px;
    z-index: -1;
}

.product-card-img {
    height: 430px;
    object-fit: contain;
    z-index: 2;
    margin-bottom: 15px;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.bottle-small {
    height: 320px;
    margin-bottom: 15px;
}

.product-card-title {
    font-family: 'Fontspring', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    z-index: 3;
}

/* Mobile Adjustments for Products Page */
@media (max-width: 991.98px) {
    .product-card-wrapper {
        margin-top: 50px;
        height: 420px;
    }

    .product-card-bg {
        width: 260px;
        height: 320px;
    }

    .product-card-img {
        height: 360px;
    }

    .bottle-small {
        height: 280px;
    }
}

@media (max-width: 767.98px) {
    .product-card-wrapper {
        height: 380px;
    }

    .product-card-bg {
        width: 220px;
        height: 280px;
    }

    .product-card-img {
        height: 300px;
    }

    .bottle-small {
        height: 240px;
    }

    .product-card-title {
        font-size: 1.8rem;
    }

    #our_products_id {
        padding-top: 10px !important;
    }


}

@media (max-width :1000px) {
    .products-section {
        background: linear-gradient(to bottom, #26b1e6 10%, #49b5ff 40%, #2ba5ff 100%);
    }
}