* {
    font-family: "Poppins", serif;

    --text-color: #A3A3A3;

    --transition: all .15s cubic-bezier(0.06, -0.42, 0.43, 1.01);

    --lpad: 50px;

    --mpad: 15px;
    --spad: 10px;

    --lgap: 30px;
    --mgap: 15px;
    --sgap: 10px;

    --lmar: 50px;
    --mmar: 25px;
    --smar: 10px;

    --primary-color: #1d4e86;
    --secondary-color: #327d3f;
    --tertiary-color: #2faecd;



    --heading-size: 30px;
    --heading-line: 30px;
    --heading-weight: 700;
    --heading-font: "Poppins", serif;
    --heading-color: #494949;

    --nheading-size: 22px;
    --nheading-line: 44px;
    --nheading-weight: 600;
    --nheading-font: "Poppins", serif;
    --nheading-color: #494949;


    --ntext-size: 18px;
    --ntext-line: 36px;
    --ntext-weight: 300;
    --ntext-font: "Poppins", serif;
    --ntext-color: #A3A3A3;

    --stext-size: 16px;
    --stext-line: 32px;
    --stext-weight: 300;
    --stext-font: "Poppins", serif;
    --stext-color: #A3A3A3;

    --min-screen-width: 800px
}

body {
    padding: 0;
    margin: 0;
}

/* basic */
/* `Text & `Headings */
.mHeading {
    font-size: 50px;
    line-height: 70px;
    font-weight: 700;
    font-style: normal;
}

.heading {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: var(--heading-size);
    line-height: var(--heading-line);
    font-weight: var(--heading-weight);
    margin-bottom: var(--mmar);
}

.nheading {
    color: var(--nheading-color);
    font-family: var(--nheading-font);
    font-size: var(--nheading-size);
    line-height: var(--nheading-line);
    font-weight: var(--nheading-weight);
    margin-bottom: var(--mmar);
}

.ntext {
    color: var(--ntext-color);
    font-family: var(--ntext-font);
    font-size: var(--ntext-size);
    line-height: var(--ntext-line);
    font-weight: var(--ntext-weight);
}

.nTextHeading {
    font-size: var(--ntext-size);
    line-height: var(--ntext-line);
    color: var(--nheading-color);
    font-style: normal;
    font-weight: var(--nheading-weight);
}

/* `colors */
.primaryColor {
    color: var(--primary-color);
}

.secondaryColor {
    color: var(--secondary-color);
}

.tertiaryColor {
    color: var(--tertiary-color);
}

.textA-j {
    text-align: justify
}

.textA-r {
    text-align: right
}

.s-gap {
    gap: var(--sgap);
}

.italic {
    font-style: italic;
}

.gap-25 {
    gap: var(--lgap);
}

/* `buttons */

a.buttonLink {
    color: var(--text-color);
    text-decoration: none;
}

.but {
    user-select: none;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 5px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
    height: 40px;
    font-weight: 500;
    font-style: normal;
    font-size: var(--text-size);
}

.but_pos {
    background: #1D4E88;
    color: white;
    font-family: 'Montserrat';
    font-weight: 600;
}

.but_bor {
    border-color: var(--text-color);
    color: var(--text-color);
}

.wholepage {
    /* max-width: 1080px; */
    /* margin: auto; */
}

/* `navbar */
.navbar {
    padding: var(--lpad);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.navbar .logoImg img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: var(--mgap);
}

.nav-link {
    flex: 1;
    padding: 6px 10px;
    cursor: pointer;
    position: relative;
    text-align: center;
}

.nav-link .title {
    white-space: nowrap;
    transition: var(--transition);
    font-weight: var(--ntext-weight);
    font-style: normal;
    color: var(--nheading-color);
}

.nav-link .line {
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: var(--nheading-color);
    height: 2px;
    left: 0;
    right: 0;
    transition: var(--transition);
    transform-origin: center;
    transform: scale(0);
}

.nav-link.activeLink,
.nav-link:hover .title {
    font-weight: var(--nheading-weight);
}

.nav-link:hover .line {
    transform: scale(1);
}

.herosection,
.aboutPage,
.aboutFounderPage,
.houseOfBrand,
.quotePage,
.footer {
    padding: var(--lpad);
    position: relative;
}


/* `Hero Section Style */
.herosection {
    height: 100vh;
    max-height: 1000px;
    /* min-width: var(--min-screen-width); */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
}

.bg-dot-1,
.bg-dot-2 {
    position: absolute;
    z-index: -1;
}

.bg-dot-1 {
    top: 15%;
    width: 45vw;
    right: 0;
}

.bg-dot-2 {
    bottom: -10%;
    width: 25vw;
    right: 20vw;
}

.heroText {
    display: flex;
    flex-direction: column;
    gap: var(--sgap);
    align-items: flex-start;
    padding-top: 20vh;
}

/* .heroImage {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 50vw;
    bottom: 0;
}
 */



/* `About page */
.section.aboutPage {
    min-height: 100vh;
    /* max-height: 1000px; */
    background: #F5F5F5;
    box-sizing: border-box;
    align-items: center;
    display: flex;
    gap: var(--lgap);
    justify-content: center;
    overflow: hidden;
    /* min-width: var(--min-screen-width); */
}

.aboutTextSection {
    /* max-width: 700px; */
}

.aboutImage img {
    width: 30vw;
    /* max-width: 500px; */
    height: auto;
}

/* `house of brands */
#brandsContainer {
    display: flex;
    flex-direction: column;
    gap: var(--lgap);
    padding-left: var(--lpad);
}

.brand-container {
    display: flex;
    position: relative;
}

.brand-content {
    display: flex;
    padding-left: 10px;
    padding-right: 10vw;
}

.nheading-subline {
    font-family: var(--ntext-font);
    font-weight: var(--ntext-weight);
    font-style: italic;
}

.services {
    display: flex;
    gap: var(--sgap);
    margin: var(--mmar) 0;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.service-item-img {
    height: 70px;
    width: 70px;
    /*border-radius: 25px;*/
    /*border: 1px solid rgb(149, 149, 149);*/
    overflow: hidden;
}

.service-item-head {
    font-size: var(--stext-size);
    color: var(--nheading-color);
    font-family: var(--stext-font);
    font-weight: var(--stext-weight);
    text-align: center;
}

.sideLine-vertical {
    min-width: 1px;
    background-color: #A3A3A3;
    position: absolute;
    top: calc(var(--lpad) + 40px);
    bottom: 50px;
    left: 100px;
}

.sidePoint {
    min-width: 50px;
    position: relative;
}

.sideLine {
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    top: 21px;
}

.sideLinerPointer-outer {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ff000000;
    border-radius: 5px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 15px;
    background: white;
}

.sideLinerPointer-inner {
    background-color: #268BA5;
    width: 4px;
    height: 4px;
    border-radius: 5px;
}

.saatvik-vaidya-logo,
.sabka-vaidya-logo,
.veda-24-7-logo {
    width: 200px;
}

/* `founders page */
.section.aboutFounderPage {
    background-image: url('../img/aboutFounderBg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    box-sizing: border-box;
    display: flex;
    gap: var(--lgap);
}

.founderImage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.founderImage .founderImage-inner {
    position: relative;
}

.founderImage img {
    width: 300px;
    border-radius: 10px;
    z-index: 1;
    position: relative;
}

.founderImage .image-border {
    border: 1px solid white;
    border-radius: 10px;
    position: absolute;
    left: 10px;
    bottom: 20px;
    right: -10px;
    top: -10px;
    z-index: 0;
}


/* `quote page */
.quoteImage img {
    width: 30vw;
}

.quotePage {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* footer */
.footer {
    background-color: #1C4E86;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.footerLogoImg {
    width: 200px;
    margin-bottom: var(--mmar);
}

.qrImage {
    width: 200px;
}

.aboutFounderPage .ntext,
.aboutFounderPage .heading,
.footer .ntext,
.footer .heading,
.footer .nheading,
.footer .ntextHeading,
.aboutFounderPage .ntext,
.aboutFounderPage .heading,
.aboutFounderPage .nheading,
.aboutFounderPage .ntextHeading {
    color: white;
}






/* `animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* Initial state for animations */
.animate-on-scroll {
    position: relative;
    overflow: hidden;
}

.aboutFounderPage .section-heading,
.aboutFounderPage .nText {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.aboutFounderPage .founderImage {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
}

/* Background animation */
.aboutFounderPage:before {
    content: "";
    position: absolute;
    inset: 0;
    /* background-color: #378b3b; */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease-out;
    z-index: -1;
}

/* Triggered animation states */
.aboutFounderPage.show:before {
    transform: scaleX(1);
}

.aboutFounderPage.show .section-heading,
.aboutFounderPage.show .nText {
    opacity: 1;
    transform: translateX(0);
}

.aboutFounderPage.show .founderImage {
    opacity: 1;
    transform: scale(1);
}

.aboutImage-side {
    display: block;
}

.founderImage-side {
    display: flex;
}

.aboutImage-between,
.founderImage-between {
    display: none;
}

@media (max-width: 1200px) {
    /* Large screens */

    html {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    /* Tablets */
}

@media (max-width: 768px) {
    /* Landscape phones */
}

@media (max-width: 576px) {
    * {
        --lpad: 30px;

        --heading-size: 24px;
        --heading-line: 24px;

        --nheading-size: 16px;
        --nheading-line: 32px;

        --ntext-size: 12px;
        --ntext-line: 24px;

        --stext-size: 8px;
        --stext-line: 16px;
    }

    .mHeading {
        font-size: 30px;
        line-height: 35px;
        text-align: center;
    }

    .heroText {
        align-items: center;
        padding-bottom: 6vh;
    }

    .heroText .ntext {
        text-align: center;
    }

    .herosection {
        align-items: end;
    }

    .founderImage-side,
    .aboutImage-side {
        display: none;
    }

    .founderImage-between,
    .aboutImage-between {
        display: block;
    }

    .aboutImage img {
        width: calc(100vw - 2* var(--lpad));
        margin-bottom: var(--mmar);
    }

    .founderImage {
        align-self: center;
        margin-bottom: 10px;
    }

    .founderImage .image-border,
    .founderImage img {
        width: 200px;
    }

    .founderImage .image-border {
        right: unset;
    }

    .section-heading {
        text-align: center;
    }

    #brandsContainer {
        padding-left: 0;
    }

    .sideLine-vertical {
        /* left: var(--lpad); */
        display: none;
    }

    .res_dflexcol {
        flex-direction: column-reverse;
    }

    .aboutFounderPage {
        background-size: unset;
    }

    .quoteImage {
        display: none;
    }

    .res_dflexac {
        align-items: center;
    }

    .res_textc {
        text-align: center;
    }

    .footer {
        gap: var(--mgap)
    }

    .res_overflowHide {
        overflow: hidden;
        align-items: center;
        gap: var(--mgap);
    }

    .service-item {
        flex-basis: calc((100% - 10px) / 2);
    }

    .services {
        flex-wrap: wrap;
    }

    .sidePoint {
        /* top: 30px; */
        display: none;
    }

    .brand-content {
        padding-right: 0;
        padding-left: 0;
        align-items: center;
    }

    .nheading-subline {
        text-align: center;
    }

    .brand-content .nheading {
        font-size: var(--heading-size);
        line-height: var(--heading-line);
    }

    .saatvik-vaidya-logo,
    .sabka-vaidya-logo,
    .veda-24-7-logo {
        width: 100px;
    }

    .nav-links {
        display: none;
    }

    .section.aboutFounderPage {
        height: unset;
        background-color: var(--secondary-color);
        background-image: unset;
    }

    .but_bor {
    transform: scale(0.7);
    }
}

.navbar a {
    text-decoration: none;
}