@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --primary-clr: #031F42;
    --secondary-clr: #F4AA20;
    --light-secondary-clr: #FCE975;
    --white-clr: #fff;
    --info-clr: #0071dc;

    --main-clr: #071c3c;
    --second-clr: #F27223;
    --theme-color: #05367f;
    --dark-theme-clr: #2C3E50;
    --light-clr: #F2F2F2;
    --yellow-clr: #CB9C2F;
    --light-gray-clr: #FBFBFB;
    --text-clr: #14141D;
}

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.7;
    color: var(--primary-clr);
}

/********************** GENERAL STARTS**********************/

/* 1. Backgrounds */
.bg-primary-theme {
    background-color: var(--primary-clr);
    color: var(--white-clr);
}

.bg-secondary-theme {
    background-color: var(--secondary-clr);
    color: var(--white-clr);
}

.bg-light-secondary-theme {
    background-color: var(--light-secondary-clr);
    color: var(--white-clr);
}

.bg-theme {
    background-color: var(--theme-clr);
    color: var(--main-clr);
}

.bg-theme-dark {
    background-color: var(--dark-theme-clr);
    color: #fff;
}

.bg-light-theme {
    background-image: linear-gradient(to left top, #fffcfc, #fefcfc, #fefbfc, #fdfbfc, #fcfbfc, #fbfafb, #fafafa, #f9f9f9, #f7f7f7, #f5f6f5, #f4f4f4, #f2f2f2);
}

.bg-gradient-theme {
    background-image: linear-gradient(to top, #f4fbe9, #f2fae7, #f1f9e4, #eff8e2, #eef7df, #edf6dd, #ecf5dc, #ebf4da, #eaf4d8, #e9f3d6, #e8f3d4, #e7f2d2);
}

.bgg-blue-theme {
    background-image: radial-gradient(circle, #f2f7fd, #f1f6fc, #eff5fb, #eef4f9, #edf3f8, #edf3f8, #edf3f8, #edf3f8, #eef4f9, #eff5fb, #f1f6fc, #f2f7fd);
}

.bg-light-gray {
    background-color: var(--light-gray-clr);
}

/* 2 Buttons */
.btn-primary-theme,
a.btn-primary-theme {
    background-color: var(--primary-clr);
    color: var(--white-clr);
    border: solid 2px var(--primary-clr);
}

.btn-primary-theme:hover,
a.btn-primary-theme:hover {
    border: solid 2px var(--primary-clr);
    background-color: var(--light-clr);
}

.btn-secondary-theme,
a.btn-secondary-theme {
    background-color: var(--secondary-clr);
    color: var(--white-clr);
    border: solid 2px var(--secondary-clr);
}

.btn-secondary-theme:hover,
a.btn-secondary-theme:hover {
    border: solid 2px var(--secondary-clr);
}

.btn-light-secondary-theme,
a.btn-light-secondary-theme {
    background-color: var(--light-secondary-clr);
    color: var(--white-clr);
}

.btn-info-theme,
a.btn-info-theme {
    background-color: var(--info-clr);
    color: var(--white-clr);
    border: solid 2px var(--info-clr);
}


.btn-info-theme:hover,
a.btn-info-theme:hover {
    background-color: var(--info-clr);
    border: solid 2px var(--info-clr);
    color: var(--white-clr);
}

.btn-yellow {
    background-color: var(--yellow-clr);
    color: var(--main-clr);
}

.btn-yellow:hover {
    background-color: var(--main-clr);
    color: var(--light-clr);
}

.btn-orange {
    background-color: var(--second-clr);
    color: var(--light-clr);
    border: solid 2px var(--second-clr);
}

.btn-orange:hover {
    background-color: var(--light-clr);
    color: var(--second-clr);
    border: solid 2px var(--second-clr);
}

.btn-outline-orange {
    background-color: var(--white-clr);
    color: var(--second-clr);
    border: solid 2px var(--second-clr);
}

.btn-outline-orange:hover {
    background-color: var(--second-clr);
    color: #fff !important;
    border: solid 2px var(--second-clr);
}


/* TEXT COLORS */
.txt-primary {
    color: var(--primary-clr);
}

.txt-info {
    color: var(--info-clr);
}

.txt-secondary {
    color: var(--secondary-clr);
}

.txt-light-secondary {
    color: var(--light-secondary-clr);
}

/* BORDER */
.b-bottom {
    border: solid 1px #f6f2f2;
}


.theme-color {
    color: var(--theme-clr);
}

.p-block {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.pb-block {
    padding-bottom: 3rem;
}


.black-color {
    color: var(--main-clr);
}

.theme-color {
    /* color: #C3D4A4; */
    color: var(--theme-clr);
}

.form-label {
    font-weight: 500;
    font-size: 0.90rem;
}

.required::after {
    content: ' *';
    color: red;
}

.form-control,
.form-select {
    border-radius: 0;
    padding: 0.46rem;
    border-color: #eee;
}

.heading {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.3rem;
}

.heading>span {
    color: var(--secondary-clr) !important;
}

.subheading {
    text-align: center;
    margin-bottom: 2rem;
}

/********************** GENERAL ENDS **********************/


/* TOPBAR */
.topnav {
    font-size: 0.85rem;
}

.nav-side-menu>li>a {
    color: var(--primary-clr);
    font-weight: 500;
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: var(--primary-clr);
    font-weight: 700;
}

/* FOOTER SECTION */
#footer {
    padding-top: 4rem;
    padding-bottom: 3rem;
    background-color: var(--primary-clr);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

#footer .nav-link {
    color: var(--white-clr) !important;
}

/* HERO SECTION */
/* .hero-title {
    font-size: 2.3rem;
    font-weight: 700;
} */

/* .hero-slider {
    overflow: hidden;
    border-radius: 10px;
} */

/* ===================== HERO SECTION STARTS ===================== */

#hero-section {
    width: 100%;
}

.hero-content {
    background-color: #EAF9F6;
    padding: 30px 15px;
    height: 100%;
    z-index: 10;
    border-radius: 30px;
}

.transparent {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-title {
    color: var(--primary-color);
    text-transform: capitalize;
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 25px;
}

.hero-subtitle {
    color: #eee;
    text-transform: uppercase;
    font-size: 0.90rem;
    font-weight: 600;
    color: var(--info-clr);
}

.hero-text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.hero-right {
    display: none;
}

.hero-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 25px;
}

.hero-list li {
    padding-right: 30px;
    margin-bottom: 0.9rem;
}

.hero-list li span {
    font-weight: bold;
    color: #121212;
    padding-left: 0.5rem;
}

.hero-list li:nth-child(1) {
    color: #3AD532;
}

.hero-list li:nth-child(2) {
    color: #FFBB00;
}

.hero-list li:nth-child(3) {
    color: #EE4158;
}

/* ===================== HERO SECTION ENDS ===================== */

#choose-block {}

.choose-items {
    padding: 20px;
    background: var(--rr-common-white);
    -webkit-box-shadow: 0px 5px 60px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 60px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.choose-icon i {
    font-size: 3rem;
    margin-bottom: 1.8rem;
    color: var(--primary-clr);
}

.choose_title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-clr);
}

.choose-text {
    line-height: 1.8;
}

/* PRODUCT BLOCK STARTS */
.product-block {
    border: solid 2px var(--light-clr);
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-img {
    height: 300px;
    overflow: hidden;
    padding: 20px;
}

.product-img:hover img {
    scale: 1.2;
}

.product-block img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.2s;
}

.product-block .info {
    padding: 1rem;
}

.product-name {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.1rem;
}

.product-name>a {
    text-decoration: none;
    color: var(--primary-clr);
}

.product-price {
    color: var(--secondary-clr);
    font-size: 1.3rem;
    font-weight: 700;
}

.cart-btn {
    font-weight: 700;
    padding: 0.7rem;
}

.cart-btn i {
    margin-right: 10px;
}

.wishlist-btn {
    color: var(--main-clr);
    text-decoration: none;
}

/* PRODUCT DETAIL */
.product-detail {
    padding: 2rem 0.7rem;
}

.product-detail .product-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--main-clr);
    margin-bottom: 1rem;
}

.product-detail .product-subtitle {
    color: var(--main-clr);
    font-size: 0.98rem;
}

.product-detail .product-price {
    font-size: 2.5rem;
}

.product-detail .product-price i {
    font-size: 1.2rem;
}

.product-detail .product-price .tax {
    color: var(--main-clr);
    font-size: 0.7rem;
    margin-left: 5px;
    display: block;
}

.product-detail .quantity-block {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.product-detail .quantity-block span {
    padding: 1rem 2rem;
}

.product-detail .product-quantity {
    padding: 2rem 0;
}

.product-additional-details {
    color: var(--main-clr);
    font-size: 0.95rem;
}

.product-additional-details ul {
    position: relative;
    list-style: none;
    padding: 0.2rem;
}

.product-additional-details ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.product-additional-details ul li::before {
    content: '\25CF';
    position: absolute;
    left: 0;
    top: -8px;
    margin-right: 10px;
    color: var(--light-secondary-clr);
    font-size: 1.4rem;
}

.product-additional-details ul li i {
    margin-right: 10px;
}

.product-variants {
    border-top: solid 1px #eee;
    margin-top: 1.5rem;
    padding-top: 1rem;
}

.variant-title {
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

.variant-heading {
    font-size: 0.9rem;
    font-weight: 700;
    color: #4f585e;
    margin-bottom: 10px;
}

.variant-value {
    padding: 0.15rem 1.3rem;
    display: inline-block;
    font-weight: 500;
    border: solid 2px #eee;
    border-radius: 5px;
    margin-right: 1rem;
    transition: all 0.2s;
    cursor: pointer;
    font-size: 0.90rem;
}

.variant-value:hover {
    border-color: var(--main-clr);
    background-color: var(--light-clr);
}

.variant-attribute-block {
    margin: 1.3rem 0;
}

/* CART BUTTONS */
.cart-edits {
    font-size: 0.85rem;
}

.cart-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--second-clr);
}

/* PROFILE SECTION */
.profile-sidebar li a i {
    color: var(--main-clr);
}

.profile-header .profile-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

/* PROFILE SECTION */
.profile-header .profile-name {
    color: var(--text-clr);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0;
    text-transform: capitalize;
}

.my-profile-section .profile-title {
    font-weight: 500;
    font-size: 1.3rem;
}

.list-group-flush>.list-group-item {
    border-bottom: 0;
}

.order-block {
    font-size: 0.95rem;
}

.order-block .order-price {
    font-size: 1.1rem;
    font-weight: 600;
}

.product-additional-details .nav-pills .nav-link.active,
.product-additional-details .nav-pills .show>.nav-link {
    background-color: var(--info-clr) !important;
    color: var(--white-clr) !important;
}

.product-additional-details .nav-link {
    color: var(--info-clr) !important;
}

@media only screen and (min-width: 768px) {
    .p-block {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .pb-block {
        padding-bottom: 4rem;
    }

    .heading {
        font-size: 3.5rem;
        font-weight: 600;
        text-align: center;
    }

    .hero-content {
        padding: 50px 20px;
    }

    /* 
    .hero-title {
        font-size: 3.5rem;
        font-weight: bold;
    } */

}

@media only screen and (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 20px;
        padding-left: 20px;
        text-transform: uppercase;
        color: var(--primary-clr);
        font-size: 0.90rem;
    }

    #footer {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    .choose-items {
        margin-bottom: 0;
    }

    .choose-item-block:nth-child(2),
    .choose-item-block:nth-child(3) {
        margin-top: 2.8rem;

    }

    /* PRODUCT DETAIL */
    .product-detail {
        padding: 2rem 2rem;
    }

    .product-detail .product-price {
        font-size: 3.2rem;
    }

    .product-detail .product-price i {
        font-size: 1.6rem;
    }

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

    .hero-list {
        flex-direction: row;
    }

    .hero-content {
        background-image: url(../images/doctor.png);
        background-repeat: no-repeat;
        position: relative;
        background-position: top right;
    }

    .w-lg-33 {
        width: 33.33%;
    }
}


/* GENERAL STYLING STARTS */
.ls-1 {
    letter-spacing: 1.1px;
}

.ls-2 {
    letter-spacing: 1.2px;
}

/* GENERAL STYLING ENDS */


/* FLOATING STYLING STARTS */
.floating-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* Individual floating elements */
.floating-element {
    position: absolute;
    bottom: -150px;
    width: 25px;
    height: 25px;
    background-color: var(--light-secondary-clr);
    /* Semi-transparent to match your color scheme */
    border-radius: 50%;
    animation: floatUp 10s infinite ease-in-out;
    opacity: 0.1;
}

/* Randomize position, size, and animation duration */
.floating-element:nth-child(2) {
    left: 20%;
    width: 50px;
    height: 50px;
    animation-duration: 12s;
}

.floating-element:nth-child(3) {
    left: 40%;
    width: 35px;
    height: 35px;
    animation-duration: 8s;
}

.floating-element:nth-child(4) {
    left: 60%;
    width: 60px;
    height: 60px;
    animation-duration: 15s;
}

.floating-element:nth-child(5) {
    left: 80%;
    width: 20px;
    height: 20px;
    animation-duration: 10s;
}

/* Floating animation */
@keyframes floatUp {
    0% {
        transform: translateY(0);
        opacity: 0.3;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-100vh);
        opacity: 0.4;
    }
}

/* FLOATING STYLING ENDS */

/* Product Additional Details START*/
.nutitional_info p {
    padding: 0;
    margin: 0;
}

.border-bottom-dark {
    border-bottom: solid 1px var(--primary-clr);
}

/* Product Additional Details END*/

.select2-container {
    border: solid 1px #eee;
    padding-top: 5px;
}

.select2-container--default .select2-selection--single {
    border: none;
}


/* GOOGLE LOGIN BUTTON */
.google-btn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

a.google-btn {
    border: solid 1px #eee;
    background-color: #fafafa;
}

a.google-btn:hover {
    border: solid 1px #eee;
    background-color: #eee;
}


.or-container {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 20px 0;
}

.or {
    position: relative;
    padding: 0 10px;
    font-weight: bold;
    color: #666;
    text-align: center;
}

.or::before,
.or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: #ccc;
}

.or::before {
    left: -110%;
}

.or::after {
    right: -110%;
}