/* ================================ about mission vision page css ============================= */

.about-two__mission-card {
     position: relative;
     height: 100%;
     padding: 35px 30px;
     background: #fff;
     border-radius: 12px;
     border: 1px solid rgba(0, 0, 0, 0.08);
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
     display: flex;
     gap: 22px;
     transition: all 0.4s ease;
     overflow: hidden;
 }

 .about-two__mission-card::before {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     width: 4px;
     height: 100%;
     background: #0073b4;
     transition: all 0.4s ease;
 }

 .about-two__mission-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
 }

 .about-two__mission-icon {
     flex: 0 0 65px;
     width: 65px;
     height: 65px;
     border-radius: 50%;
     background: #f0f6e8;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #0073b4;
     font-size: 26px;
     transition: all 0.4s ease;
 }

 .about-two__mission-card:hover .about-two__mission-icon {
     background: #0073b4;
     color: #fff;
     transform: rotateY(180deg);
 }

 .about-two__mission-content {
     flex: 1;
 }

 .about-two__mission-content h3 {
     margin: 0 0 12px;
     font-size: 24px;
     font-weight: 700;
     color: #222;
 }

 .about-two__mission-content p {
     margin-bottom: 10px;
     font-size: 15px;
     line-height: 1.8;
     color: #666;
 }

 @media (max-width: 767px) {

     .about-two__mission-card {
         padding: 25px 20px;
         gap: 15px;
     }

     .about-two__mission-icon {
         flex: 0 0 55px;
         width: 55px;
         height: 55px;
         font-size: 21px;
     }

     .about-two__mission-content h3 {
         font-size: 21px;
     }

     .about-two__mission-content p {
         font-size: 14px;
     }
 }

 /* ================================ products details page and products page css ============================= */
 .product-details-section {
     background: #f7faf8;
 }

 .product-details-card {
     background: #ffffff;
     border: 1px solid #e2ebe5;
     border-radius: 22px;
     padding: 45px;
     box-shadow: 0 12px 45px rgba(0, 80, 40, 0.08);
 }


 /* HEADING */

 .product-details-heading {
     margin-bottom: 40px;
 }

 .product-details-tag {
     display: inline-block;
     color: #07964d;
     font-size: 14px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     margin-bottom: 8px;
 }

 .product-details-heading h2 {
     color: #078d48;
     font-size: 42px;
     font-weight: 700;
     margin-bottom: 8px;
 }

 .product-details-heading p {
     color: #666;
     font-size: 16px;
     margin: 0;
 }


 /* TOP SECTION */

 .product-top-row {
     margin-bottom: 35px;
 }


 /* IMAGE */

 .product-image-box {
     background: #f8fbf9;
     border: 1px solid #e5eee8;
     border-radius: 18px;
     padding: 20px;
     text-align: center;
     height: 330px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .product-main-image {
     width: 100%;
     height: 285px;
     object-fit: contain;
     transition: 0.4s ease;
 }

 .product-image-box:hover .product-main-image {
     transform: scale(1.04);
 }


 /* DESCRIPTION */

 .product-description-box {
     padding: 5px 0 20px 25px;
 }

 .product-description-box h3 {
     color: #078d48;
     font-size: 28px;
     font-weight: 700;
     margin-bottom: 15px;
 }

 .product-description-box p {
     color: #555;
     font-size: 16px;
     line-height: 1.8;
     margin-bottom: 12px;
 }


 /* DOSAGE */

 .product-dosage-box {
     margin-left: 25px;
     padding: 20px 22px;
     background: #f2faf5;
     border-left: 4px solid #07964d;
     border-radius: 10px;
     display: flex;
     gap: 15px;
     align-items: flex-start;
 }

 .product-info-icon {
     width: 45px;
     height: 45px;
     min-width: 45px;
     background: #07964d;
     color: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 18px;
 }

 .product-dosage-box h4 {
     margin: 0 0 5px;
     color: #078d48;
     font-size: 19px;
     font-weight: 700;
 }

 .product-dosage-box p {
     margin: 0;
     color: #555;
     line-height: 1.7;
     font-size: 15px;
 }


 /* BOTTOM INFO */

 .product-info-section {
     border-top: 1px solid #e5ebe7;
     padding: 35px 10px 10px;
     margin-top: 10px;
 }


 /* SECTION TITLE */

 .product-section-title {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 25px;
 }

 .product-title-icon {
     width: 52px;
     height: 52px;
     min-width: 52px;
     background: #07964d;
     color: #fff;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 21px;
 }

 .product-section-title span {
     color: #07964d;
     font-size: 13px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .product-section-title h3 {
     margin: 2px 0 0;
     font-size: 28px;
     color: #222;
     font-weight: 700;
 }


 /* INGREDIENTS */

 .ingredients-list {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 12px 20px;
 }

 .ingredient-item {
     min-height: 55px;
     padding: 14px 18px;
     background: #f7faf8;
     border: 1px solid #e4eee8;
     border-radius: 8px;

     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 15px;
 }

 .ingredient-name {
     color: #444;
     font-size: 15px;
     line-height: 1.5;
 }

 .ingredient-item strong {
     color: #078d48;
     white-space: nowrap;
     font-size: 15px;
 }


 /* BENEFITS */

 .benefits-section {
     margin-top: 20px;
 }

 .benefits-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 15px;
 }

 .benefit-item {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     padding: 17px 18px;
     background: #f7faf8;
     border: 1px solid #e4eee8;
     border-radius: 9px;
     transition: 0.3s ease;
 }

 .benefit-item:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(0, 100, 50, 0.08);
 }

 .benefit-item i {
     width: 23px;
     height: 23px;
     min-width: 23px;
     background: #07964d;
     color: #fff;
     border-radius: 50%;
     font-size: 11px;

     display: flex;
     align-items: center;
     justify-content: center;
     margin-top: 2px;
 }

 .benefit-item p {
     margin: 0;
     color: #444;
     font-size: 15px;
     line-height: 1.5;
 }


 /* =========================================
   RESPONSIVE
========================================= */

 @media (max-width: 991px) {

     .product-details-card {
         padding: 30px;
     }

     .product-description-box {
         padding-left: 0;
         margin-top: 25px;
     }

     .product-dosage-box {
         margin-left: 0;
     }

     .benefits-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }


 @media (max-width: 767px) {

     .product-details-card {
         padding: 20px 15px;
         border-radius: 15px;
     }

     .product-details-heading h2 {
         font-size: 30px;
     }

     .product-image-box {
         height: 280px;
     }

     .product-main-image {
         height: 240px;
     }

     .product-description-box h3 {
         font-size: 24px;
     }

     .product-description-box p {
         font-size: 15px;
     }

     .ingredients-list {
         grid-template-columns: 1fr;
     }

     .benefits-grid {
         grid-template-columns: 1fr;
     }

     .product-info-section {
         padding-left: 0;
         padding-right: 0;
     }

 }



 .product-buy-box {
     margin-top: 25px;
     padding: 22px 25px;
     border-radius: 12px;
     background: #f8f9fa;
     border: 1px solid #e5e5e5;
 }

 .product-buy-box h4 {
     margin-bottom: 8px;
     font-size: 20px;
     font-weight: 700;
     color: #222;
 }

 .product-buy-box p {
     margin-bottom: 18px;
     color: #666;
     font-size: 15px;
 }

 /* Social Icons */
 .product-social-links {
     display: flex;
     gap: 12px;
     margin-bottom: 20px;
 }

 .social-btn {
     width: 42px;
     height: 42px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 18px;
     text-decoration: none;
     transition: 0.3s ease;
 }

 .social-btn.facebook {
     background: #1877f2;
 }

 .social-btn.instagram {
     background: linear-gradient(45deg,
             #f58529,
             #dd2a7b,
             #8134af,
             #515bd4);
 }

 .social-btn.amazon {
     background: #111;
 }

 .social-btn:hover {
     color: #fff;
     transform: translateY(-3px);
 }

 /* Amazon Buy Button */
 .amazon-buy-btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 12px 20px;
     border-radius: 6px;
     background: #ff9900;
     color: #111;
     font-size: 15px;
     font-weight: 700;
     text-decoration: none;
     transition: 0.3s ease;
 }

 .amazon-buy-btn:hover {
     background: #e88900;
     color: #111;
     transform: translateY(-2px);
 }

 .amazon-buy-btn .fa-arrow-right {
     font-size: 13px;
 }


 .product-card {
     position: relative;
 }

 /* Amazon Buy Label */
 .amazon-product-link {
     position: absolute;
     top: 12px;
     right: 12px;
     z-index: 10;

     display: flex;
     align-items: center;
     gap: 8px;

     padding: 8px 12px;
     background: #ffffff;
     color: #222;
     border-radius: 30px;

     font-size: 12px;
     font-weight: 600;
     text-decoration: none;

     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);

     transition: all 0.3s ease;
 }

 .amazon-product-link i {
     font-size: 20px;
     color: #111;
 }

 .amazon-product-link:hover {
     background: #ff9900;
     color: #fff;
     transform: translateY(-2px);
 }

 .amazon-product-link:hover i {
     color: #fff;
 }



 /* ========================================= PRODUCT ENQUIRY SECTION ========================================= */

.product-enquiry-section {
    position: relative;
    padding: 100px 0;
    background: #f5f8f4;
    overflow: hidden;
}

.product-enquiry-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(45, 122, 78, 0.08);
    border-radius: 50%;
    top: -180px;
    left: -120px;
}

.product-enquiry-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(45, 122, 78, 0.06);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
}

.product-enquiry-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================
   LEFT CONTENT
========================================= */

.enquiry-content {
    padding-right: 35px;
}

.enquiry-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3d8054;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.enquiry-subtitle i {
    font-size: 15px;
}

.enquiry-content h2 {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
    color: #1d2a22;
    margin: 0 0 20px;
}

.enquiry-content h2 span {
    display: block;
    color: #3d8054;
}

.enquiry-content > p {
    color: #68736c;
    font-size: 16px;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 35px;
}


/* =========================================
   FEATURES
========================================= */

.enquiry-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.enquiry-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #ffffff;
    color: #3d8054;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.07);
}

.enquiry-feature h4 {
    font-size: 16px;
    color: #26352c;
    margin: 0 0 3px;
    font-weight: 700;
}

.enquiry-feature p {
    margin: 0;
    color: #7a847d;
    font-size: 13px;
}


/* =========================================
   FORM BOX
========================================= */

.product-enquiry-form {
    background: #ffffff;
    padding: 42px;
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(30, 55, 40, 0.10);
    border: 1px solid rgba(61, 128, 84, 0.10);
}

.form-heading {
    margin-bottom: 28px;
}

.form-heading > span {
    color: #3d8054;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.form-heading h3 {
    font-size: 30px;
    color: #1d2a22;
    font-weight: 700;
    margin: 6px 0 7px;
}

.form-heading p {
    color: #7b857e;
    font-size: 14px;
    margin: 0;
}


/* =========================================
   FORM GROUP
========================================= */

.enquiry-form-group {
    margin-bottom: 20px;
}

.enquiry-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #29352e;
    margin-bottom: 8px;
}

.enquiry-form-group label span {
    color: #d44a4a;
}


/* =========================================
   INPUT
========================================= */

.input-with-icon {
    position: relative;
}

.input-with-icon > i {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: #3d8054;
    font-size: 15px;
    z-index: 2;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
    width: 100%;
    border: 1px solid #e1e7e2;
    background: #f9fbf9;
    border-radius: 10px;
    padding: 13px 16px 13px 46px;
    color: #26352c;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.input-with-icon input {
    height: 52px;
}

.input-with-icon input::placeholder,
.input-with-icon textarea::placeholder {
    color: #a0a8a2;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
    border-color: #3d8054;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(61, 128, 84, 0.08);
}


/* =========================================
   SELECT
========================================= */

.select-box select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 40px;
}

.select-box::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: #66736b;
    pointer-events: none;
}


/* =========================================
   TEXTAREA
========================================= */

.input-with-icon textarea {
    min-height: 100px;
    resize: vertical;
    line-height: 1.6;
}

.textarea-icon > i {
    top: 19px;
    transform: none;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.enquiry-submit {
    margin-top: 5px;
}

.enquiry-submit button {
    width: 100%;
    height: 54px;
    border: 0;
    border-radius: 10px;
    background: #3d8054;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquiry-submit button i {
    transition: transform 0.3s ease;
}

.enquiry-submit button:hover {
    background: #28663e;
    box-shadow: 0 10px 25px rgba(61, 128, 84, 0.25);
}

.enquiry-submit button:hover i {
    transform: translateX(5px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .product-enquiry-section {
        padding: 75px 0;
    }

    .enquiry-content {
        padding-right: 0;
    }

    .enquiry-content h2 {
        font-size: 38px;
    }

    .product-enquiry-form {
        padding: 32px;
    }
}


@media (max-width: 767px) {

    .product-enquiry-section {
        padding: 60px 0;
    }

    .enquiry-content {
        margin-bottom: 10px;
    }

    .enquiry-content h2 {
        font-size: 32px;
    }

    .product-enquiry-form {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .form-heading h3 {
        font-size: 25px;
    }
}


@media (max-width: 575px) {

    .enquiry-content h2 {
        font-size: 29px;
    }

    .product-enquiry-form {
        padding: 22px 16px;
    }

    .input-with-icon input,
    .input-with-icon select {
        height: 50px;
    }
}




/* =========================== index image section bottom ===================================== */
.contact-one__image-box {
    position: relative;
    height: 100%;
    min-height: 520px;
    padding: 15px;
}

.contact-one__image {
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.contact-one__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.05) 65%
    );
}

.contact-one__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.contact-one__image-box:hover .contact-one__image img {
    transform: scale(1.05);
}

/* Bottom Content */
.contact-one__image-content {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 35px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.contact-one__image-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    background: #0072b0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-one__image-text h3 {
    margin: 0 0 5px;
    font-size: 18px;
    line-height: 1.3;
    color: #222;
}

.contact-one__image-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}


/* Mobile */
@media (max-width: 767px) {

    .contact-one__image-box {
        min-height: 400px;
        padding: 0;
    }

    .contact-one__image {
        height: 400px;
    }

    .contact-one__image-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 15px;
    }

    .contact-one__image-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
    }

    .contact-one__image-text h3 {
        font-size: 16px;
    }

    .contact-one__image-text p {
        font-size: 13px;
    }
}



            .soham-contact-info {
                padding-right: 45px;
            }

            .soham-contact-intro {
                font-size: 16px;
                line-height: 1.8;
                margin: 20px 0 28px;
                color: #666;
            }

            .soham-contact-intro strong {
                font-weight: 700;
            }


            /* Feature Grid */
            .soham-contact-features {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
                margin-bottom: 28px;
            }

            .soham-contact-feature {
                display: flex;
                align-items: flex-start;
                gap: 15px;
                padding: 20px;
                background: #fff;
                border-radius: 10px;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
                transition: all 0.3s ease;
            }

            .soham-contact-feature:hover {
                transform: translateY(-5px);
                box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
            }

            .soham-contact-feature-icon {
                min-width: 48px;
                width: 48px;
                height: 48px;
                display: flex;
                color: #f1743f;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                font-size: 20px;
            }

            .soham-contact-feature h4 {
                margin: 0 0 5px;
                font-size: 17px;
                font-weight: 700;
            }

            .soham-contact-feature p {
                margin: 0;
                font-size: 14px;
                line-height: 1.6;
                color: #777;
            }


            /* Highlight Box */
            .soham-contact-highlight {
                display: flex;
                align-items: center;
                gap: 18px;
                padding: 22px 25px;
                border-radius: 12px;
                margin-top: 10px;
                background: linear-gradient(135deg, #f5f8ef, #ffffff);
                border: 1px solid rgba(0, 0, 0, 0.06);
            }

            .soham-contact-highlight-icon {
                min-width: 55px;
                width: 55px;
                height: 55px;
                color: #f1743f;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 23px;
            }

            .soham-contact-highlight span {
                display: block;
                font-size: 13px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                margin-bottom: 5px;
            }

            .soham-contact-highlight h4 {
                margin: 0;
                font-size: 16px;
                line-height: 1.5;
            }


            /* Mobile */
            @media (max-width: 991px) {

                .soham-contact-info {
                    padding-right: 0;
                    margin-bottom: 40px;
                }

            }

            @media (max-width: 575px) {

                .soham-contact-features {
                    grid-template-columns: 1fr;
                }

                .soham-contact-feature {
                    padding: 16px;
                }

                .soham-contact-highlight {
                    padding: 18px;
                }

            }