/**
* Template Name: QuickStart
* Template URL: https://bootstrapmade.com/quickstart-bootstrap-startup-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Open Sans", sans-serif;
    --nav-font: "Open Sans", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website.
   Updating them here will change the color scheme of the entire website */
:root {
    /* Background color for the entire website, including individual sections */
    --background-color: #ffffff;
    /* Default color used for the majority of the text content across the entire website */
    --default-color: #3d4348;
    /* Color for headings, subheadings and title throughout the website */
    --heading-color: #3e5055;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --accent-color: #FFAD60;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --surface-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --contrast-color: #ffffff;

    --main-background-color: #FFA500;

    --light-accent-color: #f9b372;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. 
  They are separate from the global colors to allow for more customization options */
:root {
    /* The default color of the main navmenu links */
    --nav-color: #313336;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-hover-color: #FFAD60;
    /* Used as the background color for mobile navigation menu */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-background-color: #ffffff;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-color: #313336;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation
     links when they are hovered over. */
    --nav-dropdown-hover-color: #FFAD60;
}

/* Color Presets - These classes override global colors when applied to any section or element, 
   providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f8fbfc;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 10px 0;
    transition: all 0.5s;
    z-index: 997;
    display: flex;
}

.header .container-fluid {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header .logo-container {
    width: 20%;
}

.header .navmenu {
    width: 70%;
}

.header .logo img {
    width: 250px;
}

.header .logo img {
    width: 90%;
    height: 90px;
}


.header .navmenu .btn-getstarted,
.header .navmenu .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
    font-weight: 500;
    text-transform: capitalize;
}

.header .navmenu .btn-getstarted:hover,
.header .navmenu .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.scrolled .header {
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}

.navmenu {
    padding: 0;
}

.navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    list-style: none;
    align-items: center;
}

.navmenu li {
    position: relative;
}

.navmenu a,
.navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
}

.navmenu a i,
.navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
}

.navmenu li:last-child a {
    padding-right: 0;
}

.navmenu li:hover > a,
.navmenu .active,
.navmenu .active:focus {
    color: var(--nav-hover-color);
}

.navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.navmenu .dropdown ul li {
    min-width: 200px;
}

.navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
}

.navmenu .dropdown ul a i {
    font-size: 12px;
}

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover > a {
    /*color: var(--nav-dropdown-hover-color);*/
    background-color: var(--accent-color);
}

.navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
}

.navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
}

.navmenu .megamenu {
    position: static;
}

.navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
}

.navmenu .megamenu ul li {
    flex: 1;
}

.navmenu .megamenu ul li a,
.navmenu .megamenu ul li:hover > a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
}

.navmenu .megamenu ul li a:hover,
.navmenu .megamenu ul li .active,
.navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
}

.navmenu .megamenu:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

/* Index Page Header
------------------------------*/
.index-page .header {
    /* --background-color: rgba(255, 255, 255, 0); */
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
    --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
}

#preloader:before,
#preloader:after {
    content: "";
    position: absolute;
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
    animation-delay: -0.5s;
}

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 20px;
    z-index: 99999;
    background-color: var(--main-background-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
    box-shadow: 0.2em 0.2em 1em rgba(0, 0, 0, 0.5);
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0;
    position: relative;
}

.page-title h1 {
    font-size: 24px;
    font-weight: 700;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    /* color: var(--default-color); */
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 100px;
    overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    position: relative;
    /* text-transform: uppercase; */
    /* letter-spacing: 2px; */
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
    color: var(--accent-color);
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/* ------------------------------------------------------
# Carousel section
-------------------------------------------------------- */

.carousel-section {
    margin-top: 120px;
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.carousel-section::before {
    background-image: url('/assets/img/carousel/Untitled\ design\ \(1\).png');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.9;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: #FFC085;
}

.carousel-inner {
    width: 100%;
}

.carousel-section .carousel {
    height: 310px;
}

.carousel-item {
    padding: 20px 0;
    min-height: 310px;
}

.text-section {
    margin-top: 40px;
}

.text-section .main-text {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 2;
}

.text-section .sub-text {
    font-size: 2.5rem;
    margin-top: 10px;
    max-width: 600px;
    font-weight: 400;
    color: var(--default-color);
    text-transform: uppercase;
    font-weight: 600;
}

.text-section .below-text {
    font-size: 2rem;
}

.text-section .sub-text-2 {
    margin-left: 76px;
    text-transform: uppercase;
}

.text-section .sub-text-3 {
    margin-left: 125px;
    text-transform: uppercase;
}

.image-section .carousel-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid var(--contrast-color);
    padding: 1px;
}

.image-section #carousel1-img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    padding: 1px;
    margin-top: -20px;
}

.image-section #carousel2-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1px;
    margin-top: -40px;
}

.image-section #carousel3-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1px;
    margin-top: -40px;
}

#conveyor-img {
    width: 100%;
    height: 100%;
    padding: 1px;
    object-fit: contain;
    margin-top: -40px;
}

.carousel-section .carousel-indicators {
    bottom: -43px;
}

.carousel-section .carousel-indicators button {
    background-color: var(--default-color);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin-right: 10px;
}


/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
    margin: 50px 0;
}

.featured-services .features-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap;
}

.featured-services .feature-item {
    text-align: center;
}

.featured-services .feature-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    padding: 2px;
    border-radius: 50%;
    background-color: var(--accent-color);
}

.featured-services .feature-item p {
    margin: 10px 0 0 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--default-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    padding-bottom: 20px;
}

.about .content .who-we-are {
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--default-color);
    font-size: 24px;
    font-weight: 600;
}

.about .content h3 {
    font-size: 2rem;
    font-weight: 700;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 1.25rem;
    margin-right: 4px;
    color: var(--accent-color);
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .read-more {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.about .content .read-more:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    padding-right: 19px;
}

.about .content .read-more:hover i {
    margin-left: 10px;
}

.about .about-images img {
    border-radius: 10px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    padding: 20px 0;
}

.clients .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.clients .client-logo img {
    padding: 20px 40px;
    max-width: 90%;
}

.client-card {
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid silver;
}

.client-card img {
    object-fit: contain;
    width: 100%;
    height: 95px;
}

/*--------------------------------------------------------------
# Feature products Section
--------------------------------------------------------------*/

.features {
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.features::before {
    background-color: var(--accent-color);
    opacity: 0.8;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.features .section-title h2 {
    color: #ffffff;
}

.features .section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: var(--contrast-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.features .nav-tabs {
    border: 0;
}

.features .nav-item {
    width: 100%;
    margin-bottom: 15px;
}

.features .nav-item:last-child {
    margin-bottom: 0;
}

.features .nav-link {
    color: var(--heading-color);
    border: 0;
    padding: 30px;
    transition: 0.3s;
    border-radius: 10px;
    display: flex;
    cursor: pointer;
}

.features .nav-link i {
    background-color: var(--surface-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    width: 48px;
    height: 48px;
    font-size: 22px;
    flex-shrink: 0;
    border-radius: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.features .nav-link h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
    transition: 0.3s;
}

.features .nav-link p {
    font-size: 15px;
    margin: 0;
}

.features .nav-link:hover {
    background: color-mix(in srgb, var(--main-background-color), transparent 96%);
}

.features .nav-link.active {
    background: color-mix(in srgb, var(--main-background-color), transparent 96%);
    color: var(--default-color);
}

/*--------------------------------------------------------------
# Features Details Section
--------------------------------------------------------------*/
.features-details .features-item + .features-item {
    margin-top: 60px;
}

.features-details .features-item .content {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 30px;
    border-radius: 10px;
}

.features-details .features-item h3 {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 15px;
}

.features-details .features-item .more-btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 6px 30px;
    border-radius: 6px;
}

.features-details .features-item .more-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.features-details .features-item ul {
    list-style: none;
    padding: 0;
}

.features-details .features-item ul li {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.features-details .features-item ul li:last-child {
    padding-bottom: 0;
}

.features-details .features-item ul i {
    font-size: 20px;
    margin-right: 10px;
    color: var(--accent-color);
}

.features-details .features-item img {
    border-radius: 15px;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
    box-sizing: content-box;
    padding: 30px;
    margin: 40px 30px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    border: 4px solid var(--background-color);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.testimonials .swiper-slide {
    opacity: 0.3;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .section-title p {
    margin-bottom: 15px;
}

.contact .info-item {
    background-color: var(--surface-color);
    padding: 20px 0 30px 0;
}

.contact .info-item i {
    font-size: 20px;
    color: #ffffff;
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
    background-color: var(--accent-color);
}

.contact .info-item h3 {
    font-size: 20px;
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .php-email-form {
    background-color: var(--surface-color);
    height: 100%;
    padding: 30px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.company-map-container {
    width: 100%;
    height: 480px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* -------------------------- */

.contact .php-email-form {
    padding: 20px;
    position: absolute;
    z-index: 1;
    width: 600px;
    height: 420px;
    background-color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 12px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
    font-weight: 500;
}

.contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* ----------------------------------
--------Feature product section-------
--------------------------------------- */
.feature-container .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.feature-container .card {
    width: 360px;
    height: 460px;
    border-radius: 15px;
    padding: 8px;
}

.feature-container .card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.feature-container .card-content {
    height: 190px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.feature-container .card-content .product-name-container {
    height: 60px;
    padding: 10px 0;
}

.feature-container .card-content .product-short-description-container {
    height: 130px;
}

.feature-container .card-content .product-name {
    font-size: 19px;
    font-weight: 700;
    text-transform: capitalize;
}

.feature-container .card-content .product-short-description {
    color: var(--default-color);
}

/*Testimonials section*/
.review-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: white;
    padding: 20px 80px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.rating-box {
    text-align: center;
}

.rating-box .user-rating {
    font-size: 20px;
}

.stars {
    color: gold;
    font-size: 40px;
}

.rating-details {
    width: 40%;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.bar {
    height: 20px;
    background: #E9ECEF;
    flex: 1;
    margin-left: 10px;
    position: relative;
}

.bar-fill {
    height: 100%;
    background: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
}

.satisfaction-container {
    background: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    gap: 20px;
}

.satisfaction-item {
    text-align: center;
    margin: 15px 0;
}

.circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-color) calc(var(--percent) * 1%), #E9ECEF 0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
}

.circle::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
}

.circle span {
    position: relative;
    z-index: 1;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.horizontal-line {
    width: 1px;
    height: 80px;
    background-color: #060606;
}

.customer-reviews-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 20px;
}

.customer-review-card {
    border-radius: 8px;
    padding: 20px;
    display: flex;
}

.customer-review-card p {
    margin: 0;
}

.avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #eee;
    border-radius: 50%;
    font-weight: bold;
    margin: 0 auto 10px;
}

.customer-stars {
    color: gold;
    font-size: 22px;
}

.product-name {
    margin-top: 10px !important;
}

.customer-card-content {
    margin-left: 12px;
}

.client-card-container {
    padding: 10px;
}

.client-card {
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 19%;
    text-align: center;
}

.client-card-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* -----------------------------------------------
-----------Product dropdown section--------------- 
-------------------------------------------------- */
.dropdown-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.dropdown-item-text {
    display: block;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    line-height: 1.3;
    max-width: 90%;
    margin: 0 auto;
    font-weight: 500;
    margin-top: 10px;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--default-color);
}

.dropdown-item-text:hover {
    color: var(--accent-color);
}

.dropbtn {
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 100%;
    transform: translateX(-50%);
    background-color: white;
    width: 1300px;
    height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 1;
    padding: 10px;
    text-align: center;
    transition: opacity 0.3s ease-in-out;
    /* margin-top: 5px; */
}

.dropdown-content .bi-square-fill {
    color: var(--accent-color);
    font-size: 12px;
    text-align: center;
    margin-right: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
}

.dropdown-content a {
    color: black;
    padding: 10px;
    text-decoration: none;
    display: block;
    width: 24%;
    text-align: center;
}

.dropdown-content a:hover {
    color: var(--accent-color);
    font-weight: 600;
}

.dropdown-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
}

.dropdown-content .nav-tabs button {
    color: var(--default-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.dropdown-content .nav-tabs .active {
    color: var(--accent-color);
    font-weight: 600;
}

.nav-tabs button {
    display: flex;
    align-items: center;
    gap: 12px;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--contrast-color);
    background-color: var(--default-color);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer-content-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.footer .footer-about {
    margin-top: 3px;
    width: 50%;
}

.footer .footer-about p {
    font-size: 16px;
    font-weight: 500;
    text-align: justify;
    margin-top: 20px;
}

.footer .footer-content-container .footer-about .logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin: 0 20px 20px 0;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: white;
    border-color: white;
}

.footer .social-links img {
    width: 30px;
    height: 30px;
}

.footer h4 {
    font-size: 21px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-content-container .footer-address {
    width: 50%;
}

.footer .footer-content-container .footer-address .contact-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.footer .footer-content-container .footer-address .footer-contact .sitename {
    font-size: 20px;
    font-weight: 600;
}

.footer .footer-address .footer-contact p {
    margin-bottom: 5px;
    font-weight: 500;
}

.copyright {
    padding-top: 25px;
    color: black;
    padding-bottom: 25px;
    background-color: var(--contrast-color);
    border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

.credits a {
    color: var(--default-color);
}

/*=========================================
          Media Queries
============================================*/
@media (min-width: 1200px) and (max-width: 1400px) {
    .dropdown-container {
        width: 100%;
    }

    .dropdown-container a {
        width: 30%;
    }

    .dropdown-content {
        width: 1100px;
        left: 100%
    }
}

@media (max-width: 1200px) {
    .header .logo img {
        width: 100%;
        height: 90px;
        object-fit: contain;
    }

    .header .navmenu {
        width: 100%;
    }

    .navmenu li {
        width: 100%;
        padding: 10px 20px 10px 0;
        margin-bottom: 5px;
    }

    .mobile-nav-toggle {
        float: right;
    }

    .header .navmenu .btn-getstarted,
    .header .navmenu .btn-getstarted:focus {
        margin-left: 20px;
    }

    /* dropdown section */
    .dropdown-content {
        width: 90%;
        left: 50%;
    }

}

@media (min-width: 993px) and (max-width: 1200px) {

    /* Mobile Navigation */
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        /* display: flex; */
        /* align-items: center; */
        /* justify-content: center; */
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--main-background-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: white;
        color: var(--accent-color);
    }

    /* .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-dropdown-hover-color);
    } */
    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: white;
        color: var(--accent-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: block;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        transition: all 0.5s ease-in-out;
        box-shadow: none;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }

    /* logo css */
    .header .logo {
        order: 1;
    }

    .header .navmenu .btn-getstarted {
        order: 2;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }

    /* section */
    section,
    .section {
        scroll-margin-top: 66px;
    }

    /* dropdown section */
    .dropdown-container {
        width: 100%;
    }

    .dropdown-container a {
        width: 30%;
    }

    .dropdown-content {
        width: 900px;
        left: 50%
    }

    /* Carousel section */
    .text-section {
        padding-top: 15px;
    }

    .text-section .sub-text {
        font-size: 1.4rem;
    }

    .text-section .main-text {
        font-size: 1.4rem;
    }

    .text-section .sub-text-2 {
        font-size: 1.4rem;
        margin-left: 0;
    }

    .text-section .sub-text-3 {
        font-size: 1.4rem;
        margin-left: 0;
    }

    .image-section #carousel1-img {
        width: 100%;
        height: 100%;
        margin-top: 10px;
    }

    .image-section #carousel2-img {
        width: 100%;
        height: 100%;
        margin-top: 0;
    }


    .image-section #carousel3-img {
        width: 100%;
        height: 100%;
        margin-top: -10px;
    }

    #conveyor-img {
        width: 100%;
        height: 100%;
        margin-top: -10px;
    }

    /* ---------clients section ------- */
    .client-card {
        width: 48%;
        margin-bottom: 20px;
    }

    .client-card-main {
        justify-content: space-between;
    }

    /* ---- about section ------*/
    .about .about-images img {
        width: 48vw;
        height: 70vh;
        margin-top: 30px;
    }

    /* -------- testimonials section */
    .testimonials .review-container {
        gap: 30px;
    }

    .testimonials .rating-box .stars {
        font-size: 25px;
    }

    .testimonials .rating-details {
        width: 100%;
    }

    .testimonials .rating-details .bar {
        height: 14px;
    }

    .testimonials .rating-bar span {
        font-size: 14px;
    }

    .testimonials .satisfaction-container {
        width: 100%;
        margin-top: 10px;
    }

    .testimonials .user-satisfaction-text {
        margin-top: 30px;
        text-align: center;
        font-size: 21px;
    }

    .testimonials .satisfaction-container .circle {
        width: 58px;
        height: 58px;
    }

    .testimonials .satisfaction-container .satisfaction-item span {
        font-size: 14px;
    }
}

@media (max-width: 992px) {

    /* navbar */
    .header {
        height: 110px;
    }

    .header .logo-container {
        width: 50%;
    }

    .header .logo img {
        width: 85%;
        height: 85%;
    }

    .header .logo h1 {
        font-size: 10px;
    }

    /* Mobile Navigation */
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
        max-height: 100%;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 19px;
        font-weight: 500;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        /* display: flex; */
        /* align-items: center; */
        /* justify-content: center; */
        border-radius: 50%;
        transition: 0.3s;
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: white;
        color: var(--accent-color);
    }

    /* .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-dropdown-hover-color);
    } */
    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: white;
        color: var(--accent-color);
        transform: rotate(180deg);
    }

    /*dropdown*/
    .navmenu .dropdown ul {
        position: static;
        display: block;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        transition: all 0.5s ease-in-out;
        box-shadow: none;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }

    /* dropdown section */
    .dropdown-content {
        width: 90%;
    }

    /*carousel section*/
    .carousel-section {
        height: calc(100vh - 480px);
    }

    .carousel-section .carousel {
        width: 100%;
        height: 100%;
    }

    .carousel-item {
        padding: 30px 0 0 0;
    }

    .carousel-section .carousel-indicators {
        bottom: -30px;
    }

    .text-section {
        width: 50%;
        height: 100%;
    }

    .text-section .sub-text {
        font-size: 1rem;
    }

    .text-section .main-text {
        font-size: 1rem;
    }

    .text-section .sub-text-2 {
        font-size: 1rem;
        margin-left: 0;
    }

    .text-section .sub-text-3 {
        font-size: 1rem;
        margin-left: 0;
    }

    .image-section {
        width: 50%;
    }

    .image-section #carousel1-img {
        width: 100%;
        height: 100%;
        margin-top: -10px;
    }

    .image-section #carousel2-img {
        width: 100%;
        height: 100%;
        margin-top: -10px;
    }


    .image-section #carousel3-img {
        width: 100%;
        height: 100%;
        margin-top: -10px;
    }

    #conveyor-img {
        width: 100%;
        height: 100%;
        margin-top: -10px;
    }


    /* ---- about section ------*/
    .about .about-images img {
        width: 100%;
    }

    /* ---------clients section ------- */
    .client-card {
        width: 48%;
        margin-bottom: 20px;
    }

    .client-card-main {
        justify-content: space-between;
    }

    /* -------- testimonials section */
    .testimonials .review-container {
        flex-direction: column;
    }

    .testimonials .horizontal-line {
        display: none;
    }

    .testimonials .rating-details {
        width: 100%;
    }

    .testimonials .satisfaction-container {
        width: 100%;
        margin-top: 10px;
    }

    .testimonials .user-satisfaction-text {
        margin-top: 30px;
        text-align: center;
    }

    /* footer section */
    .footer .footer-about .logo .sitename {
        font-size: 19px;
    }

    .footer .footer-links {
        margin-top: -10px;
        margin-right: 5px;
    }

    .footer .footer-contact {
        width: 90%;
    }
}

@media (max-width: 768px) {

    /*Disable aos animation delay on mobile devices*/
    [data-aos-delay] {
        transition-delay: 0 !important;
    }

    /* dropdown section */
    .dropdown-item-text {
        max-width: 100%;
        font-size: 13px;
    }

    .dropdown-content {
        width: 90%;
        left: 50%;
    }

    .dropdown-content .bi-square-fill {
        font-size: 8px;
        text-align: center;
    }

    .dropdown-content .dropdown-container a {
        width: 50%;
    }

    .dropdown-container {
        width: 100%;
    }

    /*carousel section*/
    .carousel-section {
        height: calc(100vh - 250px);
    }

    .carousel-section .carousel {
        width: 100%;
        height: 100%;
    }

    .carousel-item {
        padding: 35px 0 0 0;
    }

    .carousel-item .row {
        text-align: center;
        justify-content: center;
        gap: 40px;
    }

    .carousel-section .carousel-indicators {
        bottom: -30px;
    }

    .carousel-section {
        padding-top: 0;
        margin-top: 94px;
    }

    .image-section {
        margin-top: 10px;
        width: 100%;
        height: 280px;
        margin: 0 auto;
    }

    .text-section {
        margin-top: 10px;
        width: 100%;
    }

    .text-section .sub-text-2 {
        margin-left: 0;
    }

    .text-section .sub-text-3 {
        margin-left: 0;
    }

    .text-section .main-text {
        line-height: 1;
        text-align: center;
        font-size: 24px;
    }

    .text-section .sub-text {
        font-size: 24px;
    }

    .image-section #carousel1-img {
        width: 100%;
        height: 100%;
        margin-top: 0;
    }

    .image-section #carousel2-img {
        width: 100%;
        height: 100%;
        margin-top: 0;
    }


    .image-section #carousel3-img {
        width: 100%;
        height: 100%;
        margin-top: 0;
    }

    #conveyor-img {
        width: 100%;
        height: 100%;
        margin-top: 0;
    }

    /* feature product section */
    .feature-container {
        width: 100%;
    }

    .feature-container .card-container {
        padding: 0 30px;
    }

    .feature-container .card {
        width: 100%;
        height: auto;
    }

    .feature-container .card img {
        width: 100%;
    }

    .feature-container .card-content .product-name {
        font-size: 16px;
    }

    /*featured services section*/
    .featured-services {
        margin: 30px 0 0 0;
    }

    .featured-services .features-container {
        padding: 0 15px;
    }

    /* testimonials section */
    .testimonials h4 {
        font-size: 20px;
        text-align: center;
        margin-top: 15px;
    }

    .review-container {
        padding: 10px;
        flex-direction: column;
    }

    .rating-box {
        width: 100%;
    }

    .testimonials .horizontal-line {
        display: none;
    }

    .stars {
        font-size: 35px;
    }

    .satisfaction-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }

    .circle {
        width: 60px;
        height: 60px;
    }

    .circle::after {
        width: 50px;
        height: 50px;
    }

    .circle span {
        font-size: 10px;
        text-align: center;
    }

    .satisfaction-item span {
        font-size: 12px;
        text-align: center;
    }

    .customer-reviews-container {
        flex-direction: column;
        align-items: start;
    }

    .customer-review-card {
        padding: 5px;
        max-width: 70%;
    }

    .avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .customer-card-content {
        font-size: 12px;
    }

    .customer-stars {
        font-size: 18px;
    }

    .rating-details {
        width: 100%;
        padding: 10px;
    }

    .bar {
        height: 12px;
    }

    .rating-bar span {
        font-size: 12px;
    }

    /* clients section */
    #clients {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .client-card-main {
        flex-direction: column;
    }

    .client-card-main .client-card {
        width: 100%;
        margin: 10px 0;
    }

    /* contact section */
    .contact .php-email-form {
        height: 100%;
        padding: 30px;
    }

    .company-map-container {
        flex-direction: column;
        height: auto;
    }

    .company-map {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .contact .php-email-form {
        position: relative;
        width: 100%;
        height: auto;
        z-index: 0;
        margin-top: 20px;
        box-shadow: none;
    }

    .contact .php-email-form input[type=text],
    .contact .php-email-form input[type=email],
    .contact .php-email-form textarea {
        font-size: 12px;
        padding: 6px 8px;
    }

    .contact .php-email-form button[type=submit] {
        padding: 8px 25px;
        font-size: 14px;
    }

    .contact .php-email-form button[type=submit]:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
    }

    /* footer */
    .footer .footer-about .logo .sitename {
        font-size: 19px;
    }

    .footer-content-container {
        flex-direction: column;
        gap: 20px;
    }

    .footer .footer-content-container .footer-about {
        width: 100%;
    }

    .footer .footer-content-container .footer-address {
        width: 100%;
    }

    .footer-content-container .social-links {
        justify-content: center;
        margin-bottom: 12px;
        gap: 15px;
    }

    .footer-links-container {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
    }
}


@media (max-width: 640px) {

    /* logo client section */
    .clients .client-logo img {
        padding: 20px;
    }

    /* contact form */
    .contact .php-email-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {

    /* navbar */
    .header {
        height: 85px;
    }

    /* feature product section */
    .feature-container .card {
        width: 100%;
        height: auto;
    }

    .feature-container .card-content .product-short-description-container {
        height: auto;
    }

    .feature-container .card-content {
        height: auto;
    }
}