* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #fbf9f4;
    /* Light pale background */
}


a {
    text-decoration: none;
}

.header {

    width: 100%;
    background: #f7f2ea;
    border-bottom: 1px solid #ddd;
}

.container {

    width: 90%;
    max-width: 1280px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 0;
}


/* Logo */

.logo {

    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon-1 img {
    width: 30%;
}

/* .logo-icon{

    width:48px;
    height:48px;

    border:1px solid #555;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    color:#222;
} */

.logo-text h2 {

    font-size: 32px;
    font-family: Georgia, serif;
    color: #222;
    font-weight: 500;
}

.logo-text p {

    margin-top: 5px;
    font-size: 11px;
    letter-spacing: 4px;
    color: #444;
}


/* Navigation */

.navbar {

    display: flex;
    gap: 40px;
}

.navbar a {

    color: #444;
    font-size: 16px;
    position: relative;
    padding-bottom: 8px;
}

.navbar a:hover {

    color: #000;
}

.navbar a.active {

    color: #000;
}

.navbar a.active::after {

    content: "";
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: #dd8d27;
}


/* Button */

.btn {

    background: #22150f;
    color: #fff;

    padding: 16px 30px;

    border-radius: 35px;

    font-size: 13px;

    letter-spacing: 1px;

    transition: .3s;
}

.btn:hover {

    background: #000;
}


/* Mobile Button */

.menu-btn {

    display: none;
    font-size: 24px;
    cursor: pointer;
}



/* Responsive */

@media(max-width:992px) {

    .header {
        position: relative;
        z-index: 1000;
    }

    .container {
        flex-wrap: nowrap;
    }

    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #f7f2ea;
        width: 100%;
        flex-direction: column;
        padding: 20px 0;
        gap: 18px;
        text-align: center;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        z-index: 1000;
    }

    .navbar.show {
        display: flex;
    }

    .btn {

        display: none;
    }

    .menu-btn {

        display: block;
    }

    .logo-text h2 {

        font-size: 26px;
    }

}


@media(max-width:576px) {

    .container {

        width: 92%;
        padding: 15px 0;
    }

    .logo {

        gap: 10px;
    }

    .logo-icon {

        width: 42px;
        height: 42px;

        font-size: 18px;
    }

    .logo-text h2 {

        font-size: 22px;
    }

    .logo-text p {

        font-size: 9px;
        letter-spacing: 3px;
    }

    .menu-btn {

        font-size: 22px;
    }

    .navbar a {

        font-size: 17px;
    }

}

/* footer */


.footer {

    background: #0d3818;
    color: #fff;

}

.container {

    width: 90%;
    max-width: 1300px;
    margin: auto;

}

/* Top */

.footer>.container {

    display: flex;
    justify-content: space-between;
    gap: 80px;

    padding: 70px 0;

}

.footer-about {

    flex: 1.8;

}

.footer-box {

    flex: 1;

}

/* Logo */

.footer-logo {

    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 35px;

}

.logo-icon {

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 18px;
}

.logo-text h2 {

    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 5px;

}

.logo-text span {

    font-size: 12px;
    letter-spacing: 5px;
    color: #d9d1b7;

}

/* About */

.about-text {

    max-width: 520px;
    line-height: 1.8;
    color: #d8d8d8;
    font-size: 18px;

}

.sanskrit {

    color: #ff8b00;

    margin-top: 35px;

    font-size: 38px;

    font-family: serif;

}

.translation {

    margin-top: 10px;

    letter-spacing: 3px;

    font-size: 14px;

    color: #aab39b;

}

/* Right */

.footer-box h5 {

    color: #c9c296;

    letter-spacing: 6px;

    font-size: 14px;

    margin-bottom: 30px;

}

.footer-box p {

    margin-bottom: 12px;

    color: #fff;

    font-size: 20px;

    line-height: 1.7;

}

/* Bottom */

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .08);

    padding: 25px 0;

}

.bottom-content {

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #aab39b;

    font-size: 15px;

}

/* Tablet */

@media(max-width:992px) {

    .footer>.container {

        flex-wrap: wrap;

        gap: 45px;

    }

    .footer-about {

        width: 100%;

    }

    .footer-box {

        width: 45%;

    }

    .logo-text h2 {

        font-size: 30px;

    }

    .about-text {

        font-size: 16px;

    }

    .footer-box p {

        font-size: 18px;

    }

    .bottom-content {

        flex-direction: column;

        text-align: center;

        gap: 15px;

    }

}

/* Mobile */

@media(max-width:768px) {

    .footer {

        text-align: center;

    }

    .footer>.container {

        flex-direction: column;

        padding: 50px 0;

        gap: 40px;

    }

    .footer-logo {

        justify-content: center;

    }

    .about-text {

        max-width: 100%;

        font-size: 15px;

    }

    .sanskrit {

        font-size: 30px;

    }

    .translation {

        font-size: 13px;

    }

    .footer-box {

        width: 100%;

    }

    .footer-box h5 {

        margin-bottom: 18px;

    }

    .footer-box p {

        font-size: 16px;

    }

    .bottom-content {

        font-size: 13px;

        line-height: 1.8;

    }

}

/* Small Mobile */

@media(max-width:480px) {

    .logo-text h2 {

        font-size: 24px;

    }

    .logo-text span {

        font-size: 10px;

        letter-spacing: 3px;

    }

    .logo-icon {

        width: 38px;
        height: 38px;

    }

    .sanskrit {

        font-size: 26px;

    }

    .about-text {

        font-size: 14px;

    }

    .footer-box p {

        font-size: 15px;

    }

}

.banner-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    padding: 50px;
}

.banner-content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fbf9f4;
    max-width: 55%;
}

.subtitle-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #4a5568;
    margin-right: 1rem;
}

.line {
    flex-grow: 1;
    height: 1px;
    background-color: #cbd5e0;
    max-width: 450px;
}

.img-box img {
    width: 100%;
    height: 600px;
}

.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    color: #2d2a26;
    font-weight: 600;
    margin: 0 0 2rem 0;
}

.highlight-green {
    color: #1a4131;
    /* Dark green */
    font-style: italic;
}

.highlight-underline {
    position: relative;
    display: inline-block;
    color: #1a4131;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 6px;
    background-color: #e9a36a;
    /* Orange underline */
    z-index: -1;
}

.description {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5f66;
    max-width: 85%;
    margin-bottom: 2.5rem;
}

.button-group {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-primary {
    background-color: #1a4131;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: #112d22;
}

.btn-secondary {
    color: #2d2a26;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #e9a36a;
    /* orange */
}

.banner-image-section {
    flex: 1;
    /* Using a placeholder image related to Ayurveda */
    background-image: url('https://images.unsplash.com/photo-1611078813295-e2f69453f66d?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
}

.badge {
    position: absolute;
    top: 0rem;
    left: -3rem;
    /* Overlap the left section */
    background-color: #fbf9f4;
    padding: 1rem 1.5rem;
    transform: rotate(-3deg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.badge-title {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #4a5568;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.badge-text {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: #2d2a26;
}

.footer-bottom p a {
    font-size: 18px;
    color: #fff;
}

@media (max-width: 991px) {
    .banner-container {
        flex-direction: column;
    }

    .banner-content-section {
        max-width: 100%;
        padding: 4rem 2rem;
    }

    .banner-image-section {
        min-height: 400px;
    }

    .badge {
        left: 2rem;
        top: -2rem;
    }
}

/* Medicine Section Styles */
.Medicine-sec {
    background-color: #fbf9f4;
    padding: 0;
    color: #2d2a26;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #e2ddd3;
}

.med-top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2ddd3;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #8c887e;
    text-transform: uppercase;
}

.med-top-bar .diamond {
    width: 5px;
    height: 5px;
    background-color: #e9a36a;
    transform: rotate(45deg);
}

.med-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 6rem;
}

.med-left {
    flex: 1;
}

.med-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #1a4131;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.med-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    line-height: 1.1;
    color: #2d2a26;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
    letter-spacing: -1px;
}

.med-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #5a5f66;
    max-width: 90%;
}

.med-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e2ddd3;
    margin-top: 2.5rem;
}

.dosha-item {
    display: flex;
    align-items: flex-start;
    padding: 2.5rem 0;
    border-bottom: 1px solid #e2ddd3;
}

.dosha-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #e9a36a;
    font-weight: 600;
    width: 50px;
}

.dosha-name {
    display: flex;
    flex-direction: column;
    width: 128px;
    margin-top: 9px;
}

.dosha-name .hindi {
    font-size: 16px;
    color: #1a4131;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dosha-name .english {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #2d2a26;
}

.dosha-desc {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: #5a5f66;
}

@media (max-width: 991px) {
    .med-top-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .med-container {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .med-heading {
        font-size: 2.5rem;
    }

    .med-right {
        margin-top: 1rem;
    }
}

/* Formulations Section */
.Formulations {
    background-color: #0b2216;
    /* Dark green background */
    padding: 5rem 0;
    color: white;
    font-family: 'Inter', sans-serif;
}

.formulations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.form-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #e9a36a;
    /* Orange color */
    text-transform: uppercase;
}

.form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s, border-color 0.3s;
}

.form-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.form-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    line-height: 1.2;
    color: white;
    margin: 0 0 4rem 0;
    font-weight: 600;
    letter-spacing: -1px;
}

.form-heading .highlight-orange {
    color: #e9a36a;
    font-style: italic;
    font-weight: 400;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.form-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: transparent;
}

.form-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #fbf9f4;
}

.form-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.form-card:hover .form-card-img img {
    transform: scale(1.03);
}

.form-card-content {
    background-color: #fbf9f4;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.form-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2d2a26;
    margin: 0;
    font-weight: 600;
}

.form-card-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    color: #8c887e;
    margin: 0;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.form-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #e9a36a;
    font-weight: 600;
}

@media (max-width: 991px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 767px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

/* Shelf Section */
.shelf {
    background-color: #fbf9f4;
    padding: 5rem 0;
    font-family: 'Inter', sans-serif;
}

.shelf-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 5rem;
    align-items: center;
}

.shelf-image {
    flex: 1;
}

.shelf-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.shelf-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shelf-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #4a5568;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.shelf-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    color: #2d2a26;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
}

.shelf-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #5a5f66;
    margin-bottom: 2.5rem;
    max-width: 95%;
}

.shelf-divider {
    border: none;
    height: 1px;
    background-color: #e2ddd3;
    width: 100%;
    margin-bottom: 2rem;
}

.shelf-stats {
    display: flex;
    gap: 3.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {

    font-size: 2.5rem;
    color: #1a4131;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #8c887e;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .shelf-container {
        flex-direction: column;
        gap: 3rem;
    }

    .shelf-heading {
        font-size: 2.8rem;
    }

    .shelf-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
}

/* about */


.container-about {
    display: block;
    width: 90%;
    max-width: 1320px;
    margin: auto;

}

.lineage-section {

    padding: 70px 0;

}

/* subtitle */

.sub-title {

    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #4a4a4a;
    text-transform: uppercase;
    margin-bottom: 0px;

}

/* heading */

.lineage-section h1 {
    margin-top: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 75px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 50px;
    letter-spacing: -1px;
    color: #1a1a1a;

}

.lineage-section h1 span {

    color: #164627;
    font-style: italic;
    font-weight: 500;

}

/* layout */

.lineage-grid {

    display: grid;
    grid-template-columns: 52% 1fr;
    gap: 60px;
    align-items: start;

}

/* image */

.left-img {

    overflow: hidden;

}

.left-img img {

    width: 100%;
    display: block;

}

/* right */

.right-content {

    padding-top: 0px;

}

.right-content h3 {

    font-family: 'Playfair Display', serif;
    font-size: 32px;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 40px;
    color: #111;
    margin-top: 0px;

}

.right-content h3 em {

    font-style: italic;

}

.right-content hr {

    border: none;
    border-top: 1px solid #e2ddd3;
    margin-bottom: 30px;

}

.right-content p {

    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;

}

/* Responsive */

@media(max-width:991px) {

    .lineage-grid {

        grid-template-columns: 1fr;

    }

    .lineage-section h1 {

        font-size: 60px;

    }

    .right-content {

        padding-top: 10px;

    }

}

@media(max-width:768px) {

    .lineage-section {

        padding: 50px 0;

    }

    .lineage-section h1 {

        font-size: 44px;
        line-height: 1.1;

    }

    .right-content h3 {

        font-size: 28px;

    }

    .right-content p {

        font-size: 18px;

    }

    .sub-title {

        letter-spacing: 4px;
        font-size: 12px;

    }

}

@media(max-width:480px) {

    .lineage-section h1 {

        font-size: 36px;

    }

    .right-content h3 {

        font-size: 24px;

    }

    .right-content p {

        font-size: 16px;
        line-height: 1.7;

    }

}

/* section 2 */


.container-about {
    display: block;
    width: 90%;
    max-width: 1300px;
    margin: auto;

}

/*============================*/

.timeline-section {

    padding: 90px 0;

}

/*============================*/

.timeline-heading {

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 50px;

}

.left-heading span {

    display: block;
    font-size: 13px;
    letter-spacing: 7px;
    color: #063f2e;
    text-transform: uppercase;
    margin-bottom: 18px;

}

.left-heading h2 {

    font-family: 'Cormorant Garamond', serif;
    font-size: 65px;
    font-weight: 500;
    line-height: 1.05;

}

.right-heading {

    width: 320px;
    margin-top: 40px;

}

.right-heading p {

    font-size: 20px;
    line-height: 1.6;
    color: #75695d;

}

/*============================*/

.timeline {

    position: relative;
    margin-left: 8px;

}

.timeline:before {

    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #d7cec2;

}

/*============================*/

.timeline-item {

    position: relative;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 80px;
    padding-bottom: 50px;
    padding-left: 45px;

}

.timeline-item:last-child {

    padding-bottom: 0;

}

.timeline-item:before {

    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 14px;
    height: 14px;
    border: 2px solid #ff7a00;
    border-radius: 50%;
    background: #fff;

}

.timeline-item:after {

    content: "";
    position: absolute;
    left: 4px;
    top: 14px;
    width: 6px;
    height: 6px;
    background: #ff7a00;
    border-radius: 50%;

}

/*============================*/

.timeline-year {

    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    color: #073d2f;
    font-weight: 500;
    line-height: 1;

}

/*============================*/

.timeline-content h3 {

    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.15;

}

.timeline-content p {

    font-size: 18px;
    color: #5b5148;
    line-height: 1.7;
    max-width: 900px;

}

/*============================*/

@media(max-width:991px) {

    .timeline-heading {

        flex-direction: column;
        gap: 30px;

    }

    .right-heading {

        width: 100%;
        margin-top: 0;

    }

    .timeline-item {

        grid-template-columns: 130px 1fr;
        gap: 35px;

    }

    .left-heading h2 {

        font-size: 52px;

    }

    .timeline-year {

        font-size: 48px;

    }

    .timeline-content h3 {

        font-size: 34px;

    }

    .timeline-content p {

        font-size: 20px;

    }

}

/*============================*/

@media(max-width:768px) {

    .timeline-item {

        grid-template-columns: 1fr;
        padding-left: 35px;
        gap: 20px;

    }

    .timeline-year {

        font-size: 40px;

    }

    .timeline-content h3 {

        font-size: 30px;

    }

    .timeline-content p {

        font-size: 17px;
        line-height: 1.8;

    }

    .left-heading h2 {

        font-size: 42px;

    }

    .right-heading p {

        font-size: 18px;

    }

}

/*============================*/

@media(max-width:480px) {

    .timeline-section {

        padding: 60px 0;

    }

    .left-heading h2 {

        font-size: 34px;

    }

    .timeline-year {

        font-size: 34px;

    }

    .timeline-content h3 {

        font-size: 25px;

    }

    .timeline-content p {

        font-size: 16px;

    }

}

.imgbox img {
    width: 100%;
    height: 500px;
}

.imgbox {
    margin: 20px;
}

/* contact us */



.container {

    width: 90%;
    max-width: 1320px;
    margin: auto;

}

.contact-section {

    padding: 80px 0;

}

.contact-wrapper {
    display: grid;
    grid-template-columns: 46% 54%;
}

/*===================*/


.small-title {

    display: block;

    font-size: 13px;

    letter-spacing: 6px;

    color: #083d2d;

    text-transform: uppercase;

    margin-bottom: 25px;

}

.contact-info h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: 65px;

    line-height: 56px;

    font-weight: 500;

    margin-bottom: 35px;

}

.contact-info h2 span {

    display: block;

    color: #083d2d;

    font-style: italic;

}

.intro {

    font-size: 18px;

    line-height: 1.7;

    color: #5a5048;

    margin-bottom: 65px;

}

.office span,
.info-row span {

    display: block;

    font-size: 13px;

    letter-spacing: 5px;

    color: #083d2d;

    margin-bottom: 18px;
    font-weight: 700;

}

.office h4 {

    font-family: 'Cormorant Garamond', serif;

    font-size: 18px;

    font-weight: 500;

    line-height: 1.4;

    margin-bottom: 55px;

}

.info-row {

    display: block;
    flex-wrap: wrap;
    gap: 50px;

    margin-bottom: 50px;

}

.info-row > div {
    flex: 1;
    min-width: 250px;
}

.info-row h5 {

    font-family: 'Cormorant Garamond', serif;

    font-size: 18px;
    
    font-weight: 500;
    
    word-wrap: break-word;
    overflow-wrap: break-word;

}
.info-row h5 a{
   color: #000;
   word-break: break-all;
}

.quote-box {

    border: 1px solid #d7cdc1;

    padding: 22px;

    font-size: 34px;

    font-family: 'Cormorant Garamond', serif;

}

/*===================*/

.contact-form {
    padding: 0px;
    padding-left: 50px;
}

.contact-form h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: 65px;

    font-weight: 500;

    margin-bottom: 40px;

}

.grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 24px;

}

.field {

    margin-bottom: 25px;

}

.field label {

    display: block;

    margin-bottom: 12px;

    text-transform: uppercase;

    letter-spacing: 5px;

    font-size: 13px;

    color: #083d2d;

}

input,
select,
textarea {

    width: 100%;

    border: 1px solid #d9d0c4;

    background: transparent;

    padding: 18px;

    font-size: 15px;

    outline: none;

    font-family: inherit;

}

textarea {

    height: 170px;

    resize: none;

}

button {

    margin-top: 10px;

    background: #1d1815;

    color: #fff;

    border: none;

    padding: 18px 42px;

    font-size: 17px;

    cursor: pointer;

    border-radius: 40px;

    transition: .3s;

}

button:hover {

    background: #083d2d;

}

/*===================*/

@media(max-width:991px) {

    .contact-wrapper {

        grid-template-columns: 1fr;

    }

    .contact-info {

        border-right: none;

        border-bottom: 1px solid #ded5ca;

    }

    .contact-info,
    .contact-form {

        padding: 45px;

    }

    .contact-info h2 {

        font-size: 56px;

    }

    .contact-form h2 {

        font-size: 48px;

    }

    .intro {

        font-size: 20px;

    }

    .office h4 {

        font-size: 28px;

    }

    .info-row h5 {

        font-size: 24px;

    }

}

/*===================*/

@media(max-width:768px) {

    .grid {

        grid-template-columns: 1fr;

    }

    .contact-info h2 {

        font-size: 46px;

    }

    .contact-form h2 {

        font-size: 38px;

    }

    .contact-info,
    .contact-form {

        padding: 30px;

    }

    .info-row {

        flex-direction: column;

        gap: 25px;

    }

    .office h4 {

        font-size: 22px;

    }

    .quote-box {

        font-size: 24px;

    }

}

/* gallery */


/*==============================*/

.gallery-section {

    padding: 90px 0;

}

/*==============================*/

.section-subtitle {
    text-align: center;
    display: block;
    font-size: 13px;
    letter-spacing: 7px;
    color: #083d2d;
    text-transform: uppercase;
    margin-bottom: 20px;

}

.section-title {

    font-family: 'Cormorant Garamond', serif;
    font-size: 82px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 35px;
    max-width: 950px;

}

.section-title span {

    color: #0b4b35;
    font-style: italic;

}

.section-desc {
    text-align: center;
    /* max-width: 720px; */
    font-size: 20px;
    line-height: 1.8;
    color: #5d564f;
    margin-bottom: 60px;

}

/*==============================*/

.gallery-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

}

/*==============================*/

.gallery-card {

    position: relative;
    overflow: hidden;
    height: 420px;
    cursor: pointer;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);

}

/* .gallery-card.large{

    height:520px;

} */

.gallery-card img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: .6s;

}

.gallery-card:hover img {

    transform: scale(1.08);

}

/*==============================*/

.overlay {

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            transparent 100%);

}

.overlay h3 {

    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.9);

}

.overlay span {

    color: #eaeaea;
    letter-spacing: 4px;
    font-size: 13px;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.9);
    font-weight: 600;

}

/*==============================*/

@media(max-width:991px) {

    .section-title {

        font-size: 60px;

    }

    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .gallery-card,
    .gallery-card.large {

        height: 360px;

    }

}

@media(max-width:768px) {

    .gallery-grid {

        grid-template-columns: 1fr;

    }

    .section-title {

        font-size: 44px;

    }

    .section-desc {

        font-size: 17px;

    }

    .gallery-card,
    .gallery-card.large {

        height: 320px;

    }

    .overlay h3 {

        font-size: 28px;

    }

}

@media(max-width:480px) {

    .gallery-section {

        padding: 60px 0;

    }

    .section-title {

        font-size: 36px;

    }

}


/* Products Banner Section */
.products-banner {
    background-color: #f3efe6;
    /* Light pale background */
    padding: 100px 0;
    width: 100%;
}

.products-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.products-banner-content {
    flex: 1;
    max-width: 650px;
}

.products-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    color: #4a5568;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.products-heading {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: #2d2a26;
    margin: 0 0 25px 0;
    line-height: 1.1;
    font-weight: 600;
}

.highlight-green-italic {
    color: #1a4131;
    /* Dark green */
    font-style: italic;
}

.products-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5a5f66;
    margin-bottom: 40px;
    max-width: 90%;
}

.category-pills {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pill {
    background-color: #f9f7f1;
    border: 1px solid #d4cdc3;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    color: #555;
    text-transform: uppercase;
}

.products-banner-note-wrapper {
    flex-basis: 380px;
    margin-top: 60px;
}

.prescription-note {
    background-color: #fbf9f4;
    border: 1px solid #d4cdc3;
    padding: 30px;
}

.note-title {
    font-size: 12px;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.note-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 25px;
}

.note-link {
    font-size: 13px;
    color: #c98a3a;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid #c98a3a;
    padding-bottom: 3px;
}

@media(max-width:991px) {
    .products-banner-inner {
        flex-direction: column;
    }

    .products-banner-note-wrapper {
        margin-top: 0;
        width: 100%;
        flex-basis: auto;
    }

    .products-heading {
        font-size: 3rem;
    }
}

@media(max-width:576px) {
    .products-heading {
        font-size: 2.5rem;
    }

    .category-pills {
        gap: 10px;
    }

    .pill {
        padding: 8px 15px;
        font-size: 11px;
    }
}

/* Product Grid Section */
.product-box {
    padding: 60px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #444;
    letter-spacing: 1px;
    z-index: 10;
}

.product-content {
    display: flex;
    flex-direction: column;
}

.product-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.product-hindi {
    font-size: 15px;
    color: #1a4131;
    font-weight: 600;
    width: 64%;
}

.product-price {
    font-size: 16px;
    color: #ff8b00;
    font-weight: 600;
}

.product-action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn-action {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view {
    background-color: #f0f6ff;
    color: #3b82f6;
}

.btn-view:hover {
    background-color: #e0f0ff;
}

.btn-whatsapp {
    background-color: #22c55e;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background-color: #16a34a;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #222;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.product-meta {
    font-size: 11px;
    color: #777;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.product-desc-sm {
    font-size: 13px;
    color: #555;
    margin: 0;
}

@media(max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
}

@media(max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px 0;
    }
}

@media(max-width:600px) {
    /* removed .container { display: block; } to fix header issue */
    .container{
        display: block;
    }
    .header .container {
        display: flex;
    }
    .imgbox img{
        height: auto;
    }
    .banner-container {
        padding: 0px;
    }

    .button-group {
        display: block;
    }

    .btn-primary {
        margin-bottom: 20px;
    }

    .shelf-stats {
        gap: 2rem;
        flex-wrap: inherit;
    }
    .main-heading{
        font-size: 50px;
    }
    .products-banner{
        padding: 50px 0px;
    }
    .prescription-note{
        margin-top: 20px;
    }
    .contact-section {
    padding: 30px 0;
}

}
/* about us  */
/*==========================
Mission & Vision
===========================*/

.mission-vision-section{
    padding: 50px 0;
    background:#f8fbff;
    font-family:'Poppins',sans-serif;
}

.mv-container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.mv-heading{
    max-width:720px;
    margin:0 auto 70px;
    text-align:center;
}

.mv-subtitle{
    display:inline-block;
    padding:8px 18px;
    background:#e8f1ff;
    color:#5f5e5e;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:18px;
}

.mv-heading h2{
    font-size:42px;
    color:#1b1b1b;
    margin-bottom:18px;
    line-height:1.3;
    margin-top: 0px;
}

.mv-heading p{
    font-size:16px;
    color:#666;
    line-height:30px;
}

.mv-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.mv-card{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.mv-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
}

.mission-card::before{
    background:#1a4131;
}

.vision-card::before{
    background:#1a4131;
}

.mv-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.mv-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
    background:#eef5ff;
}

.vision-card .mv-icon{
    background:#e8fff7;
}

.mv-card h3{
    font-size:30px;
    color:#222;
    margin-bottom:18px;
}

.mv-card p{
    color:#666;
    font-size:16px;
    line-height:30px;
}

/* Responsive */

@media(max-width:991px){

.mv-wrapper{
    grid-template-columns:1fr;
}

.mv-heading h2{
    font-size:34px;
}

}

@media(max-width:767px){

.mission-vision-section{
    padding:70px 0;
}

.mv-card{
    padding:30px;
}

.mv-heading h2{
    font-size:28px;
}

.mv-heading p,
.mv-card p{
    font-size:15px;
    line-height:28px;
}

.mv-card h3{
    font-size:24px;
}

.mv-icon{
    width:65px;
    height:65px;
    font-size:28px;
}

}
/* 2section */
.core-values-section{
    padding:0px 0;
    background:#f7f9fc;
    font-family:'Poppins',sans-serif;
}

.container-1{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    max-width:900px;
    margin:0 auto 60px;
    text-align:center;
    margin-bottom: 0px;
}

.section-title span{
    display:inline-block;
    background:#e8f2ff;
    color:#0d6efd;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.section-title h2{
    font-size:42px;
    color:#222;
    margin-bottom:20px;
    margin-top: 0px;
}

.section-title p{
    color:#666;
    line-height:30px;
    font-size:16px;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-bottom:60px;
}

.value-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.4s;
    border-top:5px solid #1a4131;
}

.value-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.icon-box{
    width:70px;
    height:70px;
    background:#edf5ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#1a4131;
    margin-bottom:20px;
}

.value-card h3{
    font-size:28px;
    margin-bottom:15px;
    color:#222;
}

.value-card p{
    color:#666;
    line-height:30px;
}

.safety-box{
    background: #1a4131;
    padding:45px;
    border-radius:20px;
    color:#fff;
}

.safety-box h3{
    font-size:32px;
    margin-bottom:25px;
}

.safety-box ul{
    list-style:none;
    padding:0;
}

.safety-box ul li{
    position:relative;
    padding-left:35px;
    margin-bottom:18px;
    line-height:30px;
}

.safety-box ul li:before{
    content:"✔";
    position:absolute;
    left:0;
    top:0;
    font-size:18px;
    color:#fff;
}
.section-title span{
    color: #5c5c5c;
}

@media(max-width:991px){

.values-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.core-values-section{
    padding:50px 0;
}

.section-title h2{
    font-size:30px;
}

.value-card{
    padding:25px;
}

.safety-box{
    padding:30px;
}

.safety-box h3{
    font-size:26px;
}

}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}