/* Who we are section CSS Start */
.who-we-are {
    padding-top: 70px;
    padding-bottom: 70px;
}

.who-we-are .image-container {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    overflow: hidden;
}

.who-we-are .image-container img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.who-we-are .img-boxes {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.who-we-are .img-box {
    width: 100%;
    height: 100%;
    flex: 1;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.who-we-are .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Styles */

@media (min-width: 768px) and (max-width: 1024px) {
    .who-we-are {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .who-we-are {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .who-we-are .image-container {
        max-width: 100%;
        text-align: center;
    }
}

/* Who we are section CSS End */

/* Featured Section Start  */

.featured-section {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #f5fbff;
}

.featured-section .icon-boxes {
    padding: 20px;
    border-bottom: 1px solid #ccc;
}

.featured-section .icon-boxes .icon-box {
    padding: 10px;
    transition: transform 0.3s ease;
}

.featured-section .icon-boxes:first-of-type .icon-box:nth-child(1),
.featured-section .icon-boxes:first-of-type .icon-box:nth-child(2) {
    border-right: 1px solid #ccc;
}

.featured-section .icon-boxes:nth-of-type(2) .icon-box {
    border-right: none;
}

/* .featured-section .icon-boxes .icon-box:not(:last-child) {
    border-right: 1px solid #ccc;
} */

.featured-section .icon-boxes .icon-box:hover {
    transform: translateY(-5px);
}

.featured-section .icon-boxes .icon-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
}

.featured-section .icon-boxes .icon-box .box-content h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #000;
    font-family: "Area-Normal-Extrabold, sans-serif"
}

.featured-section .icon-boxes .icon-box .box-content .description {
    word-spacing: 5px;
    text-align: left;
}

.featured-section .image-container {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-height: 380px;
    overflow: hidden;
}

.featured-section .image-container img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .featured-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .featured-section .icon-boxes:first-of-type .icon-box:nth-child(1),
    .featured-section .icon-boxes:first-of-type .icon-box:nth-child(2),
    .featured-section .icon-boxes:first-of-type .icon-box:nth-child(3) {
        border-right: none;
        border-bottom: 1px solid #ccc;
    }

    .featured-section .icon-boxes {
        border-bottom: none;
    }

    .featured-section .icon-boxes:nth-of-type(2) .icon-box:first-child {
        border-right: none;
        border-bottom: 1px solid #ccc;
    }
}

@media (max-width: 767px) {
    .featured-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .featured-section .icon-boxes .icon-box img {
        width: 50px;
        height: 50px;
    }

    .featured-section .icon-boxes .icon-box .box-content h5 {
        font-size: 1rem;
    }

    .featured-section .icon-boxes {
        border-bottom: none;
    }

    .featured-section .icon-boxes:first-of-type .icon-box:nth-child(1),
    .featured-section .icon-boxes:first-of-type .icon-box:nth-child(2),
    .featured-section .icon-boxes:first-of-type .icon-box:nth-child(3) {
        border-right: none;
        border-bottom: 1px solid #ccc;
    }
    
    .featured-section .icon-boxes:nth-of-type(2) .icon-box:first-child {
        border-right: none;
        border-bottom: 1px solid #ccc;
    }
}

/* Featured Section End  */

/* Specification Section Start */

.specification {
    padding-top: 70px;
    padding-bottom: 70px;
}

.specification .table-container {
    margin: 20px auto;
    background: #f8f8f8;
    padding: 20px 80px;
    border-radius: 10px;
    overflow-x: auto;
}

.specification .table-container table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

.specification thead {
    background: #f8f8f8;
    color: #000;
}

.specification thead tr th {
    font-family: "Area-Normal-Extrabold, sans-serif";
    font-size: 1.7rem;
    color: #000;
}

.specification th, 
.specification td {
    padding: 15px 30px;
    text-align: left;
}

.specification tr td {
    font-size: 15px;
    color: #000;
    font-family: "Area-Normal-Semibold, sans-serif"
}

.specification tbody tr:nth-child(even) {
    background: #f8f8f8;
}

.specification tbody tr:nth-child(odd) {
    background: #fff;
}

.specification tbody tr:nth-child(odd) td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 12px 30px;
}

.specification tbody tr:nth-child(odd) td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 12px 30px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .specification {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .specification .table-container {
        padding: 20px 25px;
    }

    .specification thead tr th {
        font-size: 1.5rem;
    }
    .specification thead tr th.custumFont {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .specification {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .specification .table-container {
        padding: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .specification .table-container table {
        min-width: 600px; 
        width: auto;
    }

    .specification .table-container::-webkit-scrollbar {
        height: 6px;
    }

    .specification .table-container::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 3px;
    }

    .specification .table-container::-webkit-scrollbar-track {
        background-color: #f0f0f0;
    }

    .specification thead tr th {
        font-size: 1.1rem;
        padding: 10px 10px;
    }

    .specification tr td {
        font-size: 0.8rem;
        padding: 10px 15px;
    }

    .specification tbody tr:nth-child(odd) td:first-child,
    .specification tbody tr:nth-child(odd) td:last-child {
        padding: 15px 10px;
    }
}

/* Specification Section End */

/* Toxicity Profile Section Start */

.profile-section {
    padding-bottom: 70px;
}

.profile-section .table-container {
    margin: 20px auto;
    background: #f8f8f8;
    padding: 20px 65px;
    border-radius: 10px;
    overflow-x: auto;
}

.profile-section .table-container table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 15px;
}

.profile-section thead {
    color: #000;
}

.profile-section thead tr th {
    font-family: "Area-Normal-Extrabold, sans-serif";
    font-size: 1.7rem;
    color: #000;
}

.profile-section th, 
.profile-section td {
    padding: 15px 30px;
    text-align: left;
}

.profile-section tr td {
    font-family: "Area-Normal-Semibold, sans-serif";
    font-size: 15px;
    color: #000;
    background-color: #fff;
    border-radius: 10px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .profile-section {
        padding-bottom: 50px;
    }
    .profile-section .table-container {
        padding: 20px 10px;
    }

    .profile-section thead tr th {
        font-size: 1.5rem;
    }
}

/* Mobile: below 767px */
@media (max-width: 767px) {
    .profile-section {
        padding-bottom: 50px;
    }

    .profile-section .table-container {
        padding: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .profile-section .table-container table {
        min-width: 600px; 
        width: auto;
    }

    .profile-section .table-container::-webkit-scrollbar {
        height: 6px;
    }

    .profile-section .table-container::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 3px;
    }

    .profile-section .table-container::-webkit-scrollbar-track {
        background-color: #f0f0f0;
    }

    .profile-section thead tr th {
        font-size: 1.1rem;
        padding: 10px 10px;
    }

    .profile-section tr td {
        font-size: 0.8rem;
        padding: 10px 15px;
    }
}

/* Toxicity Profile Section Start */

.how-it-works-section .container-fluid {
    background: #aad04e;
}

.how-it-works-section .col-lg-3 .content-box {
    padding: 25px;
    border-right: none;
    height: 100%;
}

.how-it-works-section .col-lg-3:nth-child(2) .content-box,
.how-it-works-section .col-lg-3:nth-child(3) .content-box {
    border-right: 1px solid #000;
}

.how-it-works-section .image-container img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.how-it-works-section .content-box h4 {
    font-family: "Area-Normal-Bold, sans-serif";
    font-size: 1rem;   
    color: #000;
}

.how-it-works-section .content-box .description {
    word-spacing: 5px;
    text-align: left;
    color: #000;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .how-it-works-section {
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .how-it-works-section .col-lg-3:nth-child(2) .content-box{
        border-right: none;
    }
}

@media (max-width: 767px) { 
    .how-it-works-section {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .how-it-works-section .col-lg-3:nth-child(2) .content-box,
    .how-it-works-section .col-lg-3:nth-child(3) .content-box {
        border-right: none;
        border-bottom: 1px solid #000;
    }
}

/* Toxicity Profile Section End */


/* Usage Instructions Section Start */

.usage-instruction-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.usage-instruction-section .card {
    border: none;
    height: 100%;
    border-radius: 0px;
    border-bottom: 2px solid #ccc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usage-instruction-section .card:hover {
    transform: translateY(-5px);
}

.usage-instruction-section .image-container {
    margin-bottom: 15px;
}

.usage-instruction-section .image-container img {
    max-width: 100%;
    height: auto;
}

.usage-instruction-section .card ul li {
    font-family: "Area-Normal-Semibold, sans-serif";
    font-size: 1.1rem;
}

.usage-instruction-section .card ul li::marker {
    color: #aad04e;
    font-size: 28px;
}

.washing-instructions-section .subContent {
    background-color: #f7f7f7;
    border-radius: 20px;
    font-family: "Area-Normal-Semibold, sans-serif";
    font-size: 1.1rem;
    text-align: center;
}

.washing-instructions-section .subContent span {
    font-family: "Area-Normal-Extrabold, sans-serif";
}

.washing-instructions-section .content-box {
    padding: 30px;
    border-radius: 20px;
    min-height: 210px;
    background-color: #fff;
    box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.washing-instructions-section .content-box:hover img {
    transform: scale(1.1) rotate(3deg);
}

.washing-instructions-section .content-box img {
    max-width: 60px;
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.washing-instructions-section .description {
    font-family: "Area-Normal-Semibold", sans-serif;
    font-size: 1.2rem;
    color: #000;
    margin: 10px 0;
    text-align: center;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .usage-instruction-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .washing-instructions-section .content-box {
        min-height: 180px;
    }
}

@media (max-width: 767px) { 
    .usage-instruction-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .washing-instructions-section .content-box {
        min-height: 150px;
    }
}

/* Usage Instructions Section Start */

.veeralin-advantages-section .container {
    border-bottom: 1px solid #ccc;
    padding-bottom: 50px;
}

.veeralin-advantages-section .table-container {
    background: none;
    padding: 0;
    margin: 0;
}

.veeralin-advantages-section tr td {
    background-color: #eff1eb;
}

.veeralin-advantages-section tr td {
    width: 25%;
}

.veeralin-advantages-section tr td:nth-child(2) {
    width: 75%;
}

.veeralin-advantages-section tr td {
    font-size: 15px;
}

/* Usage Instructions Section End */

/* Proven Performance Section Start */

.proven-performance {
    padding-bottom: 70px;
}

.proven-performance .container {
    border-bottom: 1px solid #ccc;
    padding-bottom: 50px;
}

.proven-performance .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-right: none;
}

.proven-performance .col-lg-4:first-child .image-container {
    border-right: 2px solid #ccc;
}

.proven-performance .image-container img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.proven-performance .image-container:hover {
    transform: translateY(-6px);
}

@media (min-width: 768px) and (max-width: 1024px) {
    .proven-performance {
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) { 
    .proven-performance {
        padding-bottom: 50px;
    }
    .proven-performance .col-lg-4:first-child .image-container {
        border-right: none;
        border-bottom: 2px solid #ccc;
    }
    .proven-performance .image-container {
        padding: 20px;
    }
    .proven-performance .image-container img {
        max-height: 60px;
    }
}

/* Proven Performance Section End */

/* Discover Our Products Section Start */

.discover-our-products {
    padding-bottom: 70px;
}

.discover-our-products .button-container {
    display: flex;
    gap: 1rem;
}

.discover-our-products .button-container .read-more:first-child {
    background-color: #aad04e; 
}

.discover-our-products .button-container .read-more {
    font-size: 16px;
    font-family: "Area-Normal-Semibold, sans-serif";
    color: #fff;
    background-color: #0084de;
    border: none;
    text-decoration: none;
    outline: none;
    border-radius: 30px;
    padding: 12px 40px;
}

.discover-our-products .image-container {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.discover-our-products .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .discover-our-products {
        padding-bottom: 50px;
    }
    .desktop-break {
        display: none;
    }
}

@media (max-width: 767px) {
    .discover-our-products {
        padding-bottom: 50px;
    }
        
    .discover-our-products .button-container .read-more {
        padding: 10px 20px;
        font-size: 13px;
        margin: 0 auto 10px;
    }

    .desktop-break {
        display: none;
    }
    
}

/* Discover Our Products Section End */

/* Pronet Page CSS Start */

.proven-performance-section {
    padding-bottom: 70px;
}

.proven-performance-section .trial-results {
    padding: 30px;
    min-height: 265px;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.1);
}

.proven-performance-section .trial-results .heading {    
    font-size: 1.1rem;
    line-height: 26px;
    margin-bottom: 20px;
    color: #000;
    font-family: "Area-Normal-Semibold, sans-serif";
}

.proven-performance-section .trial-results i {
    color: #aad04e;
    margin-right: 6px;
}

.proven-performance-section .text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #000;
    font-family: "Area-Normal-Semibold, sans-serif";
} 

@media (min-width: 768px) and (max-width: 1024px) {
    .proven-performance-section {
        padding-bottom: 50px;
    }
    .proven-performance-section .trial-results {
        min-height: 220px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .proven-performance-section {
        padding-bottom: 50px;
    }
    .proven-performance-section .trial-results {    
        margin-bottom: 20px;
    }
}
/* Pronet Page CSS End */

/* Herballent Cream Page CSS Start */

/* Gentle on skin Section Start */

.gentle-on-skin {
    padding-top: 70px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .gentle-on-skin {
        padding-top: 50px;
    }
}

@media (max-width: 767px) { 
    .gentle-on-skin {
        padding-top: 50px;
    }
}

/* Gentle on skin Section End */

/* Benefits Section Start */

.benefits {
    padding-top: 20px;
    padding-bottom: 70px;
}

.benefits .values {
    background-color: #f9f9f9;
    padding: 30px 60px;
    border-radius: 10px;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.1);
    min-height: 280px;
}

.benefits .values .image-container {
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
}

.benefits .values .image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefits .values h4 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #000;
    font-family: "Area-Normal-Extrabold, sans-serif";
}

.benefits .values .description {
    text-align: left;
    font-size: 16px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .benefits {
        padding-top: 20px;
        padding-bottom: 50px;
    }
    .benefits .values {
        padding: 30px 20px;
    }
    .benefits .values .image-container {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }
    .benefits .values h4 { 
        font-size: 1.4rem;
    }
    .benefits .values .description {
        text-align: left;
        width: 100%;
        font-size: 15px;
    }
}


@media (max-width: 767px) {
    .benefits {
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .benefits .values {
        padding: 15px;
        margin-bottom: 20px;
    }

    .benefits .values .image-container {
        width: 70px;
        height: 70px;
    }
    .benefits .values h4 {
        font-size: 1.1rem;
    }
}

/* Benefits Section End */

/* Usage Instruction CSS Start */

.usage-instruction {
    padding-top: 20px;
    padding-bottom: 70px;
}

.usage-instruction .impact-list {
    list-style: disc;
    background: #d2eaa6;
    padding: 20px 30px 20px 40px;
    border-radius: 10px;
    min-height: 85px;
}

.usage-instruction .impact-list li {
    position: relative;
    font-family: "Area-Normal-Regular, sans-serif";
    font-size: 1.1rem;
    line-height: 20px;
}

.usage-instruction .impact-list li::marker {
    color: #aad04e;
    font-size: 24px;
}

@media (max-width: 767px) {
    .usage-instruction {
        padding-top: 20px;
        padding-bottom: 50px;
    }
}

/* Usage Instruction CSS End */


/* Download Brochure CSS Start */

/* Modal background */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

/* Modal content */
.modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 0px;
    width: 90%;
    max-width: 500px;
    animation: slideIn 0.4s ease;
    position: relative;
}

/* Close button */
.close-btn {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #000;
    font-family: "Area-Normal-Semibold, sans-serif";
}

/* Form styling */
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0px;
    font-family: "Area-Normal-Regular, sans-serif";
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #007bff;
    outline: none;
}

.submit-btn {
    padding: 0.75rem;
    background: #007bff;
    color: white;
    border: none;
    font-size: 1rem;
    font-family: "Area-Normal-Semibold, sans-serif";
    border-radius: 0px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #0056b3;
}

/* Animation */
@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-30px);
        opacity: 0;
    }
}

.slide-out {
    animation: slideOut 0.4s ease forwards;
}

/* Download Brochure CSS End */
/* Herballent Cream Page CSS End */