* {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

body, html {
    width: 100vw;
    overflow-x: clip;
}

.themePrimary {
    color: #2D3475;
}

.themePrimary-bg {
    background-color: #2D3475;
}
.themeSecondary{
    color:#852D84;
}
.themeSecondary-bg{
    background-color:#852D84;
}

.color-lightblue {
    color: #7690C9;
}
.color-lightblue-bg {
    background-color: #7690C9;
}
.color-pink {
    color: #E61563;
}
.color-pink-bg {
    background-color: #E61563;
}
.rounded-4 {
    border-radius: 20px;
}
.custom-btn {
    padding: 10px 15px;
    border: 1px solid #852D84;
    background-color: #852D84;
    color: white;
    border-radius: 10px;
    font-size: 1.2rem;
    transition: all ease-in 0.3s;
}

.custom-btn:hover{
    background-color:#fff;
    color:#852D84;
}

/****--------Fonts------------****/
.dm-serif-display-regular {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-style: normal;
}

.dm-serif-display-regular-italic {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-style: italic;
}
.lexend {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}
.lexend-bold {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.satisfy-regular {
    font-family: "Satisfy", cursive;
    font-weight: 400;
    font-style: normal;
}

/***************************************** Font Size Variants ************************************/
.font-xs {
    font-size: 0.75rem; /* 12px */
}

.font-sm {
    font-size: 0.875rem; /* 14px */
}

.font-md {
    font-size: 1rem; /* 16px */
}

.font-lg {
    font-size: 1.125rem; /* 18px */
}

.font-xl {
    font-size: 1.25rem; /* 20px */
}

.font-2xl {
    font-size: 1.5rem; /* 24px */
}

.font-3xl {
    font-size: 1.875rem; /* 30px */
}

.font-4xl {
    font-size: 2.25rem; /* 36px */
}

.font-5xl {
    font-size: 3rem; /* 48px */
}

.font-6xl {
    font-size: 4rem; /* 64px */
}

.font-7xl {
    font-size: 5rem; /* 64px */
}

.font-8xl {
    font-size: 6rem; /* 64px */
}

/*--- Navbar ---*/
#mainNavbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: transparent;
    padding-top: 20px;
}

.nav-item .nav-link {
    color: #fff !important;
    font-weight: 600;
}

.navbar-scrolled .nav-link {
    color: #000 !important;
}
.navbar-nav {
    position: relative;
    z-index: 998;
    right: 130px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.logo-link {
    display: inline-block;
    margin-left: 220px; 
}
.logo {
    position: relative;
    z-index: 1001;
    display:block;
}
.top-strip {
    height:100px;
}
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
    border: none;
}
/*--- footer ---*/
ul.quick-links li a {
    text-decoration: none;
    color: #fff;
}

    ul.quick-links li a:hover {
        color: #7690C9;
    }

.social-links a i{
    color:white;
}
    .social-links a i:hover {
        color: #7690C9;
    }

footer li{
    margin-bottom:0.8rem;
}
/*=============================== Home Page ============================*/
.banner-section {
    height: 600px;
    overflow: hidden;
}
.banner-bottle-img {
    margin-top:100px;
    height:500px;
}
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -3;
}

.banner-content {
    position: relative;
    height: 100%;
    z-index: 2;
    padding: 0 20px;
}
.wave-img {
    display: block;
    margin-top: -120px;
    z-index: -2;
}

.shark-tank-logo{
    position:absolute;
    top:50px;
    right:10px;
}
    .shark-tank-logo img {
        height: 120px;
    }
.shark-heading {
    width: 150px;
    font-size:25px;
}

/*--- why us section ---*/
.why-us-section {
    background-image: url('/images/himalaya-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.info {
    position: relative;
    padding: 25px;
    border-radius: 10px;
    max-width: 250px;
    min-height: 200px;
    color: #fff;
}

    .info.info-left::after,
    .info.info-right::after {
        content: "";
        position: absolute;
        bottom: 20px;
        width: 0;
        height: 0;
    }

    .info.info-left::after {
        right: -40px;
        border-top: 20px solid transparent;
        border-bottom: 10px solid transparent;
    }

    .info.info-right::after {
        left: -40px;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
    }

    .info.color-pink-bg.info-left::after {
        border-left: 40px solid #E61563;
    }

    .info.color-lightblue-bg.info-left::after {
        border-left: 40px solid #7690C9;
    }

    .info.color-pink-bg.info-right::after {
        border-right: 40px solid #E61563;
    }

    .info.color-lightblue-bg.info-right::after {
        border-right: 40px solid #7690C9;
    }

.bottle-img {
    max-height: 550px;
    width: auto;
}

/*---- media section ----*/
.card-img-top {
    height: 300px; 
    object-fit: cover; 
}
.card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-text {
    flex-grow: 1;
}
.card-body a {
    margin-top: auto;
}
.view-more-card {
    background-color: transparent;
    border: none;
    min-height: 360px;
    position: relative;
}

.animated-blob {
    width: 100%;
    height: 100%;
    top: -4%;
    left: 0;
    animation: blobFloat 10s ease-in-out infinite alternate;
    z-index: 0;
}


@keyframes blobFloat {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }
    25% {
        transform: translate(5px, -5px) rotate(2deg);
    }
    50% {
        transform: translate(-5px, 5px) rotate(-2deg);
    }
    75% {
        transform: translate(5px, 5px) rotate(1deg);
    }
    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

/*========================= About Page ========================*/

.mission-statement {
    background: #f5f8ff;
    border-left: 4px solid #852C84;
    border-right: 4px solid #852C84;
}

.unique-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

    .unique-card:hover {
        transform: translateY(-10px);
    }

.ribbon {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    transform: rotate(45deg);
    opacity: 0.15;
    z-index: 0;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    z-index: 1;
    position: relative;
}

.special-note-unique {
    background: linear-gradient(135deg, #2D3475, #852D84);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


.team-photo img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 5px solid #efefef;
}

/*============= Certificates ===========================*/
.certificate-banner {
    height: 350px;
    background-image: url('/images/banner/certificate-banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: start;
    justify-content: start;
    color: #ffffff;
    padding: 20px;
}

    .certificate-banner::after {
        content: "";
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        height: 350px;
        background: rgba(0,0,0,0.3); 
    }

    .certificate-banner .banner-content {
        position: relative;
        z-index: 1;
    }

        .certificate-banner .banner-content h1 {
            margin-top: 100px;
        }

/*========================= Contact Page =========================*/
.contact-banner {
    height: 350px;
    background-image: url('/images/banner/contact-banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 20px;
}
.contact-banner::after {
    content: "";
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 350px;
    background: rgba(0,0,0,0.3);
}
    .contact-banner .banner-content {
        position: relative;
        z-index: 1;
    }

        .contact-banner .banner-content h1 {
            margin-top: 70px;
        }
.form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
}

/*=========================== Product page =======================*/
.product-card {
    background: linear-gradient(145deg, #e6f7ff, #ffffff);
    box-shadow: 2px 2px 5px #ccc;
    
}
.size-div{
    height:80px;
    width:80px;
    border-radius:50%;
    background-color:#7690C9;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    position:absolute;
    top:-40px;
    right:-10px;
}

.product-info {
    height: 680px;
    background: #FAF9F6;
    border-radius: 30px;
    position: relative;
    margin-left: -80px;
}

.video-container {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 12px;
}

    .video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.video-info {
    background-color: #852D84;
    padding: 50px;
    border-radius: 20px;
    margin-left: -35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    position:sticky;
}
.sticky-col {
    position: sticky;
    top: 120px; 
    align-self: flex-start;
    z-index: 2;
}
.video-container-blob {
    background: url('/images/blobs-bg.png');
    background-repeat: no-repeat;
    background-position: right;
}


