/* Global Style */

body {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1px;
    height: 100%;
}

html,
body {
    height: 100%
}

::selection {
    background-color: #24b662;
    color: #ffffff;
}

::-moz-selection {
    background-color: #24b662;
    color: #ffffff;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
}

a:hover {
    color: #fff;
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

p {
    line-height: 32px;
}

ul,
li {
    margin: 0;
    padding: 0;
}

fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}

.no-padding {
    padding: 0
}

.section-space-padding {
    padding: 100px 0px;
}

.section-title {
    text-align: center;
}

.section-title h2 {
    margin-top: 0;
    font-weight: 600;
    border-bottom: 4px double #24b662;
    border-radius: 25px;
    font-size: 30px;
    margin: 0 auto;
    padding: 10px 0;
    width: 350px;
    margin-bottom: 30px;
}

.section-title p {
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 40px;
}

.bg-cover {
    background-repeat: no-repeat;
}

.button {
    border: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    cursor: pointer;
    padding: 25px 80px;
    display: inline-block;
    margin: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    outline: none;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.button:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.button:before {
    font-family: 'FontAwesome';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.button-style {
    border-radius: 50px;
    border: 3px solid #fff;
    color: #fff;
    overflow: hidden;
}

.button-style:hover,
.button-style:active,
.button-style:focus {
    background: #24b662;
    color: #ffffff !important;
}

.button-style:before {
    position: absolute;
    height: 100%;
    font-size: 125%;
    line-height: 3.5;
    color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.button-style:active:before {
    color: #17954c;
}

.button-style-icon:before {
    left: 130%;
    top: -12px;
}

.button-style-icon:hover:before {
    left: 70%;
}

.button-style-dark {
    border: 3px solid #000000 !important;
    color: #000000;
}


/* Preloader */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #ffffff;
    z-index: 999;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #24b662;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #24b662;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #24b662;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* Home Section and Navigation Menu */

.home-section {
    height: 100%;
}

.home-section-background {
    position: relative;
    height: 100%;
    background: url(/public/images/bg/bg.jpg);
    background-size: cover;
    z-index: 1;
}

.home-section-background:after {
    position: absolute;
    background: rgba(0, 0, 0, .7);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

.display-table {
    display: table;
    width: 100%;
    height: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.header-text {}

.home-section-background h2 {
    color: #f8f8f8;
    font-size: 50px;
    letter-spacing: 5px;
    margin: 0;
}

.home-section-background p {
    color: #f8f8f8;
    letter-spacing: 4px;
    font-size: 15px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* About Me */

.about-section {
    overflow: hidden;
    background-color: #F9F9F9;
}

.about-me {}

.about-me h2 {
    padding: 0px 50px;
}

.about-me p {
    padding: 50px;
    font-size: 15px;
}


/* Packaging */


/* fade in */

li {
    opacity: 0;
    list-style-type: none;
}

li.Pouches {
    -webkit-animation: fade 2s ease-in-out forwards;
    -webkit-animation-delay: 0.5s;
    -moz-animation: fade 2s ease-in-out forwards;
    -moz-animation-delay: 0.5s;
    -o-animation: fade 2s ease-in-out forwards;
    -o-animation-delay: 1s;
    animation: fade 2s ease-in-out forwards;
    animation-delay: 0.5s;
}

li.Jars {
    -webkit-animation: fade 2s ease-in-out forwards;
    -webkit-animation-delay: 1.5s;
    -moz-animation: fade 2s ease-in-out forwards;
    -moz-animation-delay: 1.5s;
    -o-animation: fade 2s ease-in-out forwards;
    -o-animation-delay: 1.5s;
    animation: fade 2s ease-in-out forwards;
    animation-delay: 1.5s;
}

li.Tubes {
    -webkit-animation: fade 2s ease-in-out forwards;
    -webkit-animation-delay: 2.5s;
    -moz-animation: fade 2s ease-in-out forwards;
    -moz-animation-delay: 2.5s;
    -o-animation: fade 2s ease-in-out forwards;
    -o-animation-delay: 2.5s;
    animation: fade 2s ease-in-out forwards;
    animation-delay: 2.5s;
}

li.Capsules {
    -webkit-animation: fade 2s ease-in-out forwards;
    -webkit-animation-delay: 3.5s;
    -moz-animation: fade 2s ease-in-out forwards;
    -moz-animation-delay: 3.5s;
    -o-animation: fade 2s ease-in-out forwards;
    -o-animation-delay: 3.5s;
    animation: fade 2s ease-in-out forwards;
    animation-delay: 3.5s;
}

li.Masksachets {
    -webkit-animation: fade 2s ease-in-out forwards;
    -webkit-animation-delay: 4.5s;
    -moz-animation: fade 2s ease-in-out forwards;
    -moz-animation-delay: 4.5s;
    -o-animation: fade 2s ease-in-out forwards;
    -o-animation-delay: 4.5s;
    animation: fade 2s ease-in-out forwards;
    animation-delay: 4.5s;
}

li.Bottles {
    -webkit-animation: fade 2s ease-in-out forwards;
    -webkit-animation-delay: 5.5s;
    -moz-animation: fade 2s ease-in-out forwards;
    -moz-animation-delay: 5.5s;
    -o-animation: fade 2s ease-in-out forwards;
    -o-animation-delay: 5.5s;
    animation: fade 2s ease-in-out forwards;
    animation-delay: 5.5s;
}

@-webkit-keyframes fade {
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fade {
    100% {
        opacity: 1;
    }
}

@-o-keyframes fade {
    100% {
        opacity: 1;
    }
}

@keyframes fade {
    100% {
        opacity: 1;
    }
}


/* filling */

.filling-section {
    background: #F9F9F9;
}

.filling-word {
    padding: 0px 100px;
}

.filling-word img {
    margin: 0 auto;
    max-width: 140px;
}

.filling-word h2 {
    font-size: 12px;
    text-transform: uppercase;
    color: #24b662;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 20px 0px;
}

.filling-word p {
    line-height: 25px;
}


/* Sample pouching */

.samplepouching-section {
    overflow: hidden;
    background-color: #FFFFFF;
}

.samplepouching img {
    position: absolute;
}

.samplepouchingdetail {}

.samplepouchingdetail h2 {
    padding: 0px 50px;
}

.samplepouchingdetail p {
    padding: 50px;
    font-size: 15px;
}


/* Product Rework*/

.productrework-section {
    overflow: hidden;
    background-color: #F9F9F9;
}

.productrework-section hr {
    border-bottom: 2px solid #24b662;
    width: 42px;
    margin-left: 0px;
}

.productrework-section .services-detail {
    border-radius: 4px;
    border-bottom-right-radius: 10%;
    background-color: #ffffff;
    box-shadow: 0px 1px 2px 0px rgba(90, 91, 95, 0.15);
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 0px;
    padding: 20px 30px 20px 30px;
    margin-top: 32px;
}

.productrework-section .services-detail:hover {
    border-bottom-right-radius: 4px;
    box-shadow: 0px 16px 22px 0px rgba(90, 91, 95, 0.3);
    top: -5px;
}

.productrework-section .services-detail .fa {
    font-size: 42px;
}

li.one {
    -webkit-animation: fade 2s ease-in-out forwards;
    -webkit-animation-delay: 0.5s;
    -moz-animation: fade 2s ease-in-out forwards;
    -moz-animation-delay: 0.5s;
    -o-animation: fade 2s ease-in-out forwards;
    -o-animation-delay: 1s;
    animation: fade 2s ease-in-out forwards;
    animation-delay: 0.5s;
}

li.two {
    -webkit-animation: fade 2s ease-in-out forwards;
    -webkit-animation-delay: 1.5s;
    -moz-animation: fade 2s ease-in-out forwards;
    -moz-animation-delay: 1.5s;
    -o-animation: fade 2s ease-in-out forwards;
    -o-animation-delay: 1.5s;
    animation: fade 2s ease-in-out forwards;
    animation-delay: 1.5s;
}

li.three {
    -webkit-animation: fade 2s ease-in-out forwards;
    -webkit-animation-delay: 2.5s;
    -moz-animation: fade 2s ease-in-out forwards;
    -moz-animation-delay: 2.5s;
    -o-animation: fade 2s ease-in-out forwards;
    -o-animation-delay: 2.5s;
    animation: fade 2s ease-in-out forwards;
    animation-delay: 2.5s;
}

li.four {
    -webkit-animation: fade 2s ease-in-out forwards;
    -webkit-animation-delay: 3.5s;
    -moz-animation: fade 2s ease-in-out forwards;
    -moz-animation-delay: 3.5s;
    -o-animation: fade 2s ease-in-out forwards;
    -o-animation-delay: 3.5s;
    animation: fade 2s ease-in-out forwards;
    animation-delay: 3.5s;
}


/* Services */

.services-section {
    background-color: #FFFFFF;
}

.services-section hr {
    border-bottom: 2px solid #24b662;
    width: 42px;
    margin-left: 0px;
}

.services-section .services-detail {
    border-radius: 4px;
    border-bottom-right-radius: 20%;
    background-color: #ffffff;
    box-shadow: 0px 1px 2px 0px rgba(90, 91, 95, 0.15);
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 0px;
    padding: 60px 40px 60px 40px;
    margin-top: 32px;
}

.services-section .services-detail:hover {
    border-bottom-right-radius: 4px;
    box-shadow: 0px 16px 22px 0px rgba(90, 91, 95, 0.3);
    top: -5px;
}

.services-section .services-detail .fa {
    font-size: 42px;
}


/* Call to Action */

.call-to-action {
    background-color: #F9F9F9;
}

.call-to-action h2 {
    font-size: 30px;
}


/* Contact Us */

.contact-us {
    background-color: #FFFFFF;
}

.contact-us-detail {}

.contact-us-detail i {
    font-size: 30px;
    margin-bottom: 10px;
    background-color: #F9F9F9;
    border-radius: 50%;
    box-shadow: 0px 1px 2px 0px rgba(90, 91, 95, 0.15);
    transition: all 0.3s ease-in-out;
    width: 88px;
    height: 88px;
    line-height: 88px;
}

.contact-us-detail:hover i {
    box-shadow: 0px 8px 15px 0px rgba(90, 91, 95, 0.33);
    margin-top: -5px;
}

.contact-us-detail a {
    color: #333;
}

.contact-us-detail a:hover {
    color: #333;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    border: 2px solid transparent;
    height: 50px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    -ms-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    -o-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    -webkit-transition: all 150ms ease-in-out 0s;
    -moz-transition: all 150ms ease-in-out 0s;
    -ms-transition: all 150ms ease-in-out 0s;
    -o-transition: all 150ms ease-in-out 0s;
    transition: all 150ms ease-in-out 0s;
}

.form-control:focus {
    border-color: #171717;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.form-control:focus {
    border-color: #24b662;
    border-width: 2px;
}

.map {
    width: 100%;
    height: 340px;
    border: 1px solid #24b662;
}


/* Social Icons */

.social-icon {
    list-style: none;
    padding-left: 0;
    margin: 0;
    text-align: center;
}

.social-icon:before,
.social-icon:after {
    content: " ";
    display: table;
}

.social-icon:after {
    clear: both;
}

.social-icon li {
    display: inline-block;
    margin: 0px 4px;
}

.social-icon li a {
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    color: #fff;
    text-align: center;
    border: 0 none;
    border-radius: 4px;
    font-size: 30px;
    box-shadow: 0px 1px 2px 0px rgba(90, 91, 95, 0.15);
    transition: all 0.3s ease-in-out;
}

.social-icon li a:hover {
    box-shadow: 0px 8px 15px 0px rgba(90, 91, 95, 0.33);
}

.social-icon li a .fa {
    line-height: inherit;
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #1da1f2;
}

.google-plus {
    background-color: #dd4b39;
}

.instagram {
    background-color: #464545;
}

.linkedin {
    background-color: #0077b5;
}

.pinterest {
    background-color: #bd081c;
}

.youtube {
    background-color: #cd201f;
}

.vimeo {
    background-color: #1ab7ea;
}

.dribbble {
    background-color: #ea4c89;
}

.behance {
    background-color: #1769ff;
}

.flickr {
    background-color: #ff0084;
}

.tumblr {
    background-color: #35465c;
}

.foursquare {
    background-color: #f94877;
}

.github {
    background-color: #333333;
}

.skype {
    background-color: #00aff0;
}


/* Footer */

.footer-section {
    background: #000;
    padding: 80px 0px;
    color: #f8f8f8;
}

.footer-section p {
    font-size: 14px;
}

.footer-section a {
    color: #ffffff;
}


/* Responsive */

@media only screen and (max-width: 991px) {
    .about-section img {
        position: inherit;
    }
    .call-to-action h2 {
        font-size: 20px;
    }
    .space-set {
        margin-top: 80px;
    }
    .footer-section p {
        text-align: center !important;
    }
    }

    .home-section-background {
        padding-top: 120px;
    }

    .home-section-background h2 {
        font-size: 22px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .filling-word {
        padding: 0;
    }

    .statistics-center {
        margin-left: 20%;
    }

    .call-to-action h2 {
        font-size: 18px;
        line-height: 35px;
    }

    .contact-us-detail {
        margin-bottom: 30px;
    }
}
@media only screen and (max-width: 555px) {
    .social-icon li a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-weight: 500;
        width: 200px;
    }
    
    .section-title p {
        font-weight: 300;
        font-size: 12px;
    }
    
    .home-section-background h2 {
        font-size: 18px;
    }
    
    .home-section-background p {
        font-size: 12px;
    }
}
@media only screen and (max-width: 449px) {
    .button {
        padding: 15px 30px;
        font-weight: 600;
        font-size: 10px;
    }
    
    .button-style:before {
        display: none;
    }
}

/* Scroll To Top */
.scroll-to-top {
    background-color: #24b662;
    display: none;
    width: 50px;
    height: 50px;
    font-size: 25px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    position: fixed;
    right: 0px;
    bottom: 50px;
    z-index: 999;
}
.scroll-to-top:hover,
.scroll-to-top:focus {
    background-color: #1bab58;
    color: #ffffff;
}

/* Spacing ( with Margin and Padding ) */

/* Margin */
.margin-0 {
    margin: 0px !important;
}

/* Margin Top */
.margin-top-0 {
    margin-top: 0px !important;
}
.margin-top-10 {
    margin-top: 10px !important;
}
.margin-top-20 {
    margin-top: 20px !important;
}
.margin-top-30 {
    margin-top: 30px !important;
}
.margin-top-40 {
    margin-top: 40px !important;
}
.margin-top-50 {
    margin-top: 50px !important;
}
.margin-top-60 {
    margin-top: 60px !important;
}
.margin-top-70 {
    margin-top: 70px !important;
}
.margin-top-80 {
    margin-top: 80px !important;
}
.margin-top-90 {
    margin-top: 90px !important;
}
.margin-top-100 {
    margin-top: 100px !important;
}
.margin-top-120 {
    margin-top: 120px !important;
}
.margin-top-150 {
    margin-top: 150px !important;
}
.margin-top-200 {
    margin-top: 200px !important;
}

/* Margin Bottom */
.margin-bottom-0 {
    margin-bottom: 0px !important;
}
.margin-bottom-10 {
    margin-bottom: 10px !important;
}
.margin-bottom-20 {
    margin-bottom: 20px !important;
}
.margin-bottom-30 {
    margin-bottom: 30px !important;
}
.margin-bottom-40 {
    margin-bottom: 40px !important;
}
.margin-bottom-50 {
    margin-bottom: 50px !important;
}
.margin-bottom-60 {
    margin-bottom: 60px !important;
}
.margin-bottom-70 {
    margin-bottom: 70px !important;
}
.margin-bottom-80 {
    margin-bottom: 80px !important;
}
.margin-bottom-90 {
    margin-bottom: 90px !important;
}
.margin-bottom-100 {
    margin-bottom: 100px !important;
}
.margin-bottom-120 {
    margin-bottom: 120px !important;
}
.margin-bottom-150 {
    margin-bottom: 150px !important;
}
.margin-bottom-200 {
    margin-bottom: 200px !important;
}

/* Padding */
.padding-0 {
    padding: 0px !important;
}

/* Padding Top */
.padding-top-0 {
    padding-top: 0px !important;
}
.padding-top-10 {
    padding-top: 10px !important;
}
.padding-top-20 {
    padding-top: 20px !important;
}
.padding-top-30 {
    padding-top: 30px !important;
}
.padding-top-40 {
    padding-top: 40px !important;
}
.padding-top-50 {
    padding-top: 50px !important;
}
.padding-top-60 {
    padding-top: 60px !important;
}
.padding-top-70 {
    padding-top: 70px !important;
}
.padding-top-80 {
    padding-top: 80px !important;
}
.padding-top-90 {
    padding-top: 90px !important;
}
.padding-top-100 {
    padding-top: 100px !important;
}
.padding-top-120 {
    padding-top: 120px !important;
}
.padding-top-150 {
    padding-top: 150px !important;
}
.padding-top-200 {
    padding-top: 200px !important;
}

/* Padding Bottom */
.padding-bottom-0 {
    padding-bottom: 0px !important;
}
.padding-bottom-10 {
    padding-bottom: 10px !important;
}
.padding-bottom-20 {
    padding-bottom: 20px !important;
}
.padding-bottom-30 {
    padding-bottom: 30px !important;
}
.padding-bottom-40 {
    padding-bottom: 40px !important;
}
.padding-bottom-50 {
    padding-bottom: 50px !important;
}
.padding-bottom-60 {
    padding-bottom: 60px !important;
}
.padding-bottom-70 {
    padding-bottom: 70px !important;
}
.padding-bottom-80 {
    padding-bottom: 80px !important;
}
.padding-bottom-90 {
    padding-bottom: 90px !important;
}
.padding-bottom-100 {
    padding-bottom: 100px !important;
}
.padding-bottom-120 {
    padding-bottom: 120px !important;
}
.padding-bottom-150 {
    padding-bottom: 150px !important;
}
.padding-bottom-200 {
    padding-bottom: 200px !important;
}

/* Colors */
.color-1 {
    color: #f306a0;
}
.color-2 {
    color: #d60bfb;
}
.color-3 {
    color: #d8be10;
}
.color-4 {
    color: #0fd28a;
}
.color-5 {
    color: #f97400;
}
.color-6 {
    color: #08a6f3;
}

/* Background Color */
.bg-color-1 {
    background-color: #f306a0;
}
.bg-color-2 {
    background-color: #d60bfb;
}
.bg-color-3 {
    background-color: #d8be10;
}
.bg-color-4 {
    background-color: #0fd28a;
}
.bg-color-5 {
    background-color: #f97400;
}
.bg-color-6 {
    background-color: #08a6f3;
}

/* Custom */
.services-detail h5 {
    overflow-wrap: break-word;
}

/* ============================================================
   2026 refresh — design tokens, responsive fixes, contact modal
   ============================================================ */

:root {
    --fs-brand: #24b662;
    --fs-brand-dark: #17954c;
    --fs-ink: #1c1c1c;
    --fs-muted: #6b7280;
    --fs-radius: 14px;
    --fs-shadow: 0 10px 30px -12px rgba(16, 24, 20, 0.18);
    --fs-shadow-lg: 0 22px 45px -18px rgba(16, 24, 20, 0.30);
}

/* --- Responsive safety net: prevent horizontal overflow so pinch-zoom-out
   can no longer reveal white space beside the page (the original bug). --- */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}
img,
iframe,
video,
svg {
    max-width: 100%;
    height: auto;
}
.home-section,
.home-section-background {
    max-width: 100%;
}
.samplepouching {
    position: relative;
}
.samplepouching img {
    position: relative;
    max-width: 100%;
}
.navbar-nav {
    flex-wrap: wrap;
}

/* --- Smooth scrolling + anchor offset so sections clear the fixed navbar --- */
html {
    scroll-behavior: smooth;
}
section[id] {
    scroll-margin-top: 80px;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Modernised buttons --- */
.button {
    padding: 16px 42px;
    box-shadow: var(--fs-shadow);
}
.button-style {
    border-width: 2px;
}
.button-style:hover,
.button-style:active,
.button-style:focus {
    background: var(--fs-brand);
}
#contact-submit.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

/* --- Responsive section titles (replaces the fixed 350px width) --- */
.section-title h2 {
    width: auto;
    min-width: 260px;
    max-width: 92%;
    border-bottom-width: 3px;
}
.section-space-padding {
    padding: clamp(60px, 8vw, 110px) 0;
}

/* --- Softened cards --- */
.services-detail,
.productrework-section .services-detail {
    border-radius: var(--fs-radius);
}

/* --- Gradient hero overlay (replaces the flat black overlay) --- */
.home-section-background::after {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.78), rgba(18, 40, 28, 0.62));
}

/* --- Contact form polish --- */
.form-control {
    border-radius: 8px;
}
.form-control:focus {
    border-color: var(--fs-brand);
    box-shadow: 0 0 0 3px rgba(36, 182, 98, 0.18);
}

/* --- Honeypot field (off-screen, not display:none so bots still fill it) --- */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* --- Contact result modal --- */
.fs-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.fs-modal--open {
    display: flex;
}
.fs-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 20, 12, 0.55);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.fs-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 18px;
    padding: 44px 32px 32px;
    text-align: center;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
    animation: fs-pop 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.3);
}
@keyframes fs-pop {
    from { transform: translateY(12px) scale(0.96); opacity: 0; }
    to   { transform: none; opacity: 1; }
}
.fs-modal__close {
    position: absolute;
    top: 10px;
    right: 16px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: #9aa0a6;
    cursor: pointer;
}
.fs-modal__icon {
    margin: 0 auto 18px;
    width: 76px;
    height: 76px;
}
.fs-modal__icon svg {
    width: 76px;
    height: 76px;
}
.fs-modal__check-svg { display: block; }
.fs-modal__error-svg { display: none; }
.fs-modal--error .fs-modal__check-svg { display: none; }
.fs-modal--error .fs-modal__error-svg { display: block; }
.fs-modal__circle {
    stroke: var(--fs-brand);
    stroke-width: 2;
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    animation: fs-draw 0.6s ease forwards;
}
.fs-modal__check-path {
    stroke: var(--fs-brand);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: fs-draw 0.35s 0.45s ease forwards;
}
.fs-modal__error-path {
    stroke: #e53935;
    stroke-width: 3;
    stroke-linecap: round;
}
.fs-modal--error .fs-modal__circle {
    stroke: #e53935;
}
@keyframes fs-draw {
    to { stroke-dashoffset: 0; }
}
.fs-modal__title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--fs-ink);
}
.fs-modal__message {
    font-size: 15px;
    line-height: 1.6;
    color: var(--fs-muted);
    margin: 0 0 24px;
}
.fs-modal__btn {
    margin: 0;
    padding: 14px 36px;
}

/* --- Respect users who prefer reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .fs-modal__dialog,
    .fs-modal__circle,
    .fs-modal__check-path { animation: none; }
    .fs-modal__circle,
    .fs-modal__check-path { stroke-dashoffset: 0; }
}

/* --- Products carousel: never let it overflow the page horizontally.
   (Swiper's own CSS targets the newer .swiper class, but this site uses the
   older .swiper-container class, so we clip + constrain it ourselves.) --- */
.products-section { overflow-x: hidden; }
.products-section .container-fluid { max-width: 100%; }
.product_swiper,
.swiper-container { overflow: hidden; max-width: 100%; }
/* Shrink slides on small screens so one always fits comfortably. */
.product_swiper .swiper-slide { max-width: calc(100vw - 64px); }