@font-face {
    font-family: DMSerifDisplay-Regular;
    src: url('../font/DMSerifDisplay-Regular.ttf');
}

@font-face {
    font-family: Gilroy-Regular;
    src: url('../font/Gilroy-Regular.ttf');
}

@font-face {
    font-family: Gilroy-Medium;
    src: url('../font/Gilroy-Medium.ttf');
}

@font-face {
    font-family: Gilroy-SemiBold;
    src: url('../font/Gilroy-SemiBold.ttf');
}

@font-face {
    font-family: Gilroy-Bold;
    src: url('../font/Gilroy-Bold.ttf');
}

:root{
    --theme-color-1: #2AA7FF;
    --theme-color-2: #FF684C;
    --theme-color-3: #4CD080;
    --theme-color-4: #FFB200;
    --theme-color-5: #1B3C74;
    --body-bg: #ffffff;
    --font-color: #44474E;
    --heading-color: #1B3C74;
    --font-white: #ffffff;
}

body{
    background-color: var(--body-bg);
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 25px;
    font-family: 'Gilroy-Regular';
    font-weight: normal;
    color: var(--font-color);
}


h1, h2, h3{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'DMSerifDisplay-Regular';
    font-weight: normal;
}

h4, h5{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'DMSerifDisplay-Regular';
    font-weight: normal;
}

p{
    margin-bottom: 0;
}

a, a:hover, a:active, a:focus{
    color: inherit;
    text-decoration: none;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn{
    border-radius: 6px;
    height: 48px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding:10px 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Gilroy-Medium';
    font-weight: normal;
}

.btn-main{
    color: #fff;
    background-color: var(--theme-color-1);
    transition: all .5s ease-out;
}

.btn-main:hover{
    background-position: left bottom;
    color: #fff;
}

.btn-secondary{
    color: #fff;
    background-color: var(--theme-color-5);
    transition: all .5s ease-out;
}

.btn-secondary:hover{
    background-position: left bottom;
    color: #fff;
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    transition-duration: 0.5s;
    transition: all 0.35s ease;
} 

.navbar.fixed-top{
    position: fixed;
    background-color: var(--body-bg);
    transition-duration: 0.5s;
    transition: all 0.35s ease;
}


.navbar-dark .navbar-nav .nav-link{
    color: var(--font-color);
    font-family: 'Gilroy-Medium';
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
}


.dropdown .nav-link:after{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar-nav .nav-item{
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: var(--theme-color-1);
}

@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
  
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
  
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
  
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}


.navbar{
    background: transparent;
    box-shadow: transparent;
    transition: none !important;
}

.dropdown-menu{
    min-width: 12rem;
}


.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--font-color);
    font-size: 16px;
    font-family: 'Gilroy-Medium';
    font-weight: normal;
    transition: ease-in-out 0.3s;
}

.navbar .nav-item:hover .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
    /* position: relative; */
}

.dropdown-menu li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.dropdown-menu{
    transition: ease-in-out 0.3s;
}

.banner-section{
    background-image: url('../image/main-banner-factory-right.png');
    /* background: linear-gradient(to bottom, #370b6f, #00429b, #006dba, #0095ce, #2dbcdc), url('../images/banner-bg.png'); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 800px;
    display: inline-block;
    overflow: hidden;
}

.banner-grid{
    width: 100%;
    height: 100%;
    display: table;
    position: relative;
    z-index: 15;
}

.banner-grid-wrapper{
    vertical-align: middle;
    display: table-cell;
}

.banner-shape{
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content-wrapper{
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    width: 100%;
    /* animation: left_to_right 3s ease; */
}

.banner-main-heading{
    font-size: 55px;
    line-height: 70px;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.banner-main-heading .banner-title-line{
    display: block;
}

.banner-description{
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 23px;
}

.banner-btns{
    width: 100%;
    display: flex;
}

.banner-image-wrapper{
    height: 100%;
    display: flex;
    align-items: center;
}

#backTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--theme-color-1);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    line-height: 18px;
}
  
#backTop:hover {
    background-color: var(--theme-color-1);
}

.floating-contact-action {
    display: flex;
    position: fixed;
    right: 0;
    z-index: 9999;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    color: #fff;
    font-size: 21px;
    line-height: 18px;
    text-decoration: none;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 8px 18px rgba(27, 60, 116, 0.16);
    transition: width 0.2s ease, filter 0.2s ease;
}

.floating-contact-action:hover {
    color: #fff;
    filter: brightness(1.04);
    width: 60px;
}

.floating-contact-action--message {
    bottom: calc(61.8% - 108px);
    background: var(--theme-color-5);
}

.floating-contact-action--email {
    bottom: calc(61.8% - 54px);
    background: var(--theme-color-1);
}

.floating-contact-action--whatsapp {
    bottom: 61.8%;
    background: #25D366;
}

@media (max-width: 575px) {
    .floating-contact-action {
        width: 48px;
        height: 48px;
        font-size: 19px;
    }

    .floating-contact-action:hover {
        width: 52px;
    }

    .floating-contact-action--message {
        bottom: calc(22% - 96px);
    }

    .floating-contact-action--email {
        bottom: calc(22% - 48px);
    }

    .floating-contact-action--whatsapp {
        bottom: 22%;
    }
}


.banner-list-info{
    position: absolute;
    bottom: 4rem;
    width: 50%;
    display: inline-block;
}

.banner-list-info ul{
    display: flex;
}

.banner-list-info ul li{
    flex: 30%;
}

.banner-list-info ul li h3{
    font-size: 28px;
}

.section-small-heading{
    color: var(--theme-color-1);
    margin-bottom: 10px;
    font-family: 'Gilroy-Medium';
    font-weight: normal;
    font-size: 16px;
}

.section-main-heading{
    color: var(--theme-color-5);
    font-size: 40px;
    line-height: 55px;
}

.section{
    padding: 60px 0px;
    position: relative;
}

.services-card-wrapper{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
}

.service-card-heading{
    font-size: 28px;
    margin: 20px 0px;
}

.service-explore-link{
    margin-top: 20px;
    color: var(--theme-color-5);
    font-family: 'Gilroy-SemiBold';
    display: inline-block;
}

.about-section-img-small img{
    width: 100%;
    height: 60%;
    object-fit: cover;
    border-radius: 30px 0px;
}

.about-section-img-small{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.about-section-info{
    height: 100%;
    width: 100%;
    display: inline-block;
}

.about-section-img{
    text-align: center;
}

.section.contact{
    background-image: url('../image/main-banner-1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    display: inline-block;
    padding-top: 5rem;
    padding-bottom: 25rem;
}

.contact-box{
    background: var(--theme-color-1);
    border-radius: 6px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 20px;
}

.contact-box-icon{
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    padding: 10px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-box-info h3{
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.contact-box-info a{
    color: #fff;
}

.contact-section-img{
    width: 94%;
    height: 100%;
    position: relative;
}

.contact-section-img img.contact{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.contact-award-layer{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    border-radius: 10px;
    position: absolute;
    top: -30px;
    padding: 15px;
    left: -40px;
    text-align: center;
}

.contact-skills-layer{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    border-radius: 10px;
    position: absolute;
    bottom: -45px;
    padding: 15px;
    right: -30px;
}

.contact-skills-layer h3{
    font-size: 16px;
    margin-bottom: 10px;
}

.meet-form{
    position: relative;
    margin-top: -16rem;
}

.meet-form-wrapper{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    border-radius: 10px;
    padding: 30px;
}

.form-input-wrapper{
    display: inline-block;
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.meet-form-input{
    background: #F2F6F9;
    border-radius: 10px;
    height: 51px;
    padding: 10px 30px 10px 10px;
    width: 100%;
    position: relative;
    border: none; 
    color: #9E9FA0;
}

.meet-form-input::placeholder{
    color: #9E9FA0;
}


.form-input-wrapper .theme-btn{
    width: 100%;
    max-width: 100%;
}

.form-input-wrapper i{
    position: absolute;
    top: 16px;
    right: 10px;
    color: #9E9FA0;
}

.section-choose-img-box{
    background: url('../image/main-banner-1.png');
    border-radius: 10px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    display: inline-block;
    position: relative;
    /* height: 310px; */
    padding: 40px;
    margin-top: 5rem;

}

.section-choose-img-box h3{
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 20px;
}

.section-choose-img-box a{
    color: var(--theme-color-1);
    text-decoration: underline;
    font-family: 'Gilroy-SemiBold';
    font-weight: normal;
}

.section-choose-img-box img.person{
    position: absolute;
    top: -55px;
    width: 230px;
    right: 10px;
}

.choose-inner-card{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px 10px;
}

.choose-inner-icon{
    max-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.choose-inner-icon.one{
    background: rgba(42, 167, 255, 0.2);
}

.choose-inner-icon.two{
    background: rgba(255, 104, 76, 0.2);
}

.choose-inner-icon.three{
    background: rgba(76, 208, 128, 0.2);
}

.choose-inner-icon.four{
    background: rgba(255, 178, 0, 0.2);
}

.choose-inner-info h3{
    font-size: 24px;
    line-height: 38px;
    margin: 15px 0px;
}

.section.testimonial{
    background-image: url('../image/main-banner-2.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    display: inline-block;
}

.testimonial-card{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
}

.tc-author{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tc-author-info{
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-author-info-text h3{
    font-size: 24px;
    line-height: 33px;
}

.tc-author-info img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 15px;
}

.tc-author-stars i{
    color: #FFAB07;
}

/* the slides */
.slick-slide {
    margin: 0 15px;
}

/* the parent */
.slick-list {
    margin: 0 -15px;
}

.carosel-nav-left-testi{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color-1);
    border: none;
    margin-right: 15px;
}

.carosel-nav-right-testi{
    background: var(--theme-color-1);
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
    border: none;
}

.carosel-arrow{
    display: flex;
}

.map-img{
    display: flex;
    height: 100%;
    align-items: center;
}

.team-card{
    background: url('../image/main-banner-1.png');
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    display:inline-block;
    position: relative;
    padding: 30px 10px;
    text-align: center;
    padding-bottom: 0;
    height: 100%;
}

.team-card h3{
    font-size: 20px;
    line-height: 33px;
}

.team-card p{
    color: var(--theme-color-1);
    margin-bottom: 30px;
}

.team-social-btns li{
    display: inline-block;
}

.team-social-btns li a{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin: 0px 3px;
    color: var(--theme-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-social-btns{
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: ease-in-out 0.3s;
}

.team-card:hover .team-social-btns{
    opacity: 1;
    visibility: visible;
    transition: ease-in-out 0.3s;
}

.faq-image-wrapper{
    border-radius: 10px;
    width: 320px;
    height: 100%;
    background-color: var(--theme-color-3);
    padding: 5rem;
    position: relative;
    height: 350px;
    margin: auto;
}

.faq-image-wrapper img.faq-bg{
    position: absolute;
    top: -59px;
    height: 410px;
}

.faq-content-tab .accordion-item {
    background-color: transparent;
    border: none;
}

.faq-content-tab .accordion-button{
    padding: 10px 0px;
    margin-bottom: 10px;
    background-color: transparent;
}

.faq-content-tab .accordion-body{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    border-radius: 10px;
    margin-bottom: 20px;
}

.faq-content-tab .accordion-button:not(.collapsed){
    color: var(--heading-color);
    background-color: transparent;
    box-shadow: none;
}

.faq-content-tab .accordion-button{
    font-size: 18px;
    line-height: 25px;
    color: var(--heading-color);
}

.section.faq{
    background-image: url('../image/main-banner-1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    display: inline-block;
}

.faq-content-tab .accordion-button::after{
    content: "\f067";
    font-family: FontAwesome;
    font-weight: normal;
    position: relative;
    background-image: none;
}

.faq-content-tab .accordion-button:not(.collapsed)::after{
    content: "\f068";
    font-family: FontAwesome;
    font-weight: normal;
    position: relative;
    background-image: none;
}

.faq-info-box{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    border-radius: 10px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
    bottom: -40px;
    right: -40px;
}

.faq-info-box img{
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.faq-info-box h3{
    font-size: 16px;
}

.blog-card-wrapper{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    border-radius: 10px;
    height: 100%;
}

.blog-card-image{
    position: relative;
    width: 100%;
    height: 230px;
}

.blog-card-image img{
    border-radius: 10px;
    height: 230px;
    width: 100%;
    object-fit: cover;
}

.blog-posted{
    position: absolute;
    background-color: var(--theme-color-1);
    right: 15px;
    bottom: -25px;
    width: 50px;
    text-align: center;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 18px;
    font-size: 14px;
    border-radius: 6px;
}

.blog-card-info{
    padding: 30px 20px;
    position: relative;
    height: 100%;
}

.blog-post-date{
    font-size: 24px;
    margin: 10px 0px;
}

.read-more-link{
    font-size: 16px;
    line-height: 19px;
    font-family: 'Gilroy-SemiBold';
    color: var(--heading-color);
}

.blog-postrd-by{
    font-size: 12px;
}

.subscribe-container{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    border-radius: 10px;
    padding: 30px;
}

.subscribe-input-wrapper{
    position: relative;
    height: 100%;
}

.subscribe-input-wrapper form{
    position: relative;
    height: 100%;
}

.subscribe-input{
    background: #F2F6F9;
    border-radius: 10px;
    height: 60px;
    padding: 10px 135px 10px 30px;
    width: 100%;
    position: relative;
    border: none;
}

.subscribe-input-wrapper form i{
    position: absolute;
    top: 22px;
    z-index: 10;
    left: 5px;
    color: #9E9FA0;
}

.subscribe-input-wrapper form .theme-btn{
    position: absolute;
    top: 5px;
    right: 5px;
}

.catalog-download-wrapper{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    height: 100%;
}

.catalog-download-wrapper p{
    max-width: 520px;
    margin: 0;
    color: #52635f;
    font-size: 15px;
    line-height: 1.7;
}

.catalog-download-btn{
    flex: 0 0 auto;
    min-height: 54px;
    padding-left: 24px;
    padding-right: 24px;
}

.catalog-download-btn i{
    margin-right: 8px;
}

footer{
    background-color: var(--heading-color);
    padding-top: 60px;
    display: inline-block;
    position: relative;
    width: 100%;
}

.site-footer {
    background:
        linear-gradient(135deg, #142f58 0%, #102641 58%, #0d2036 100%);
}

.footer-main-row {
    row-gap: 10px;
}

.footer-about-wrapper h3{
    color: var(--font-white);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 18px;
}

.footer-about-wrapper p{
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 20px;
    line-height: 1.72;
}

.footer-social-list li{
    display: inline-block;
    margin-right: 8px;
}

.footer-social-list li a{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgb(163 163 163 / 5%);
    width: 35px;
    height: 35px;
    color: var(--theme-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.25s ease;
}

.footer-social-list li a:hover{
    background: var(--theme-color-1);
    color: var(--font-white);
    transform: translateY(-2px);
}

.footer-block-heading{
    font-size: 20px;
    line-height: 1.35;
    color: var(--font-white);
    margin-bottom: 22px;
}

.footer-link-list{
    display: flex;
}

.footer-link-list ul{
    display: inline-block;
    flex: 50%;
}

.footer-link-list ul li{
    margin-bottom: 10px;
}

.footer-link-list ul li a{
    color: var(--font-white);
}

.footer-link-stack,
.footer-contact-list{
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-link-stack li,
.footer-contact-list li{
    margin-bottom: 11px;
}

.footer-link-stack a,
.footer-contact-list a,
.footer-contact-list span{
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.45;
}

.footer-link-stack a:hover,
.footer-contact-list a:hover,
.footer-bottom-links a:hover{
    color: var(--theme-color-1);
}

.footer-link-stack a::before{
    content: "\f105";
    font-family: FontAwesome;
    font-weight: normal;
    position: relative;
    margin-right: 10px;
    color: var(--theme-color-1);
}

.footer-contact-list {
    margin-bottom: 18px;
}

.footer-contact-list li {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.footer-contact-list i {
    color: var(--theme-color-1);
    line-height: 1.45;
    text-align: center;
}

.footer-link-list ul li a::before{
    content: "\f105";
    font-family: FontAwesome;
    font-weight: normal;
    position: relative;
    margin-right: 10px;
}

.footer-hours-list li{
    color: var(--font-white);
    display: flex;
    margin-bottom: 10px;
}

.footer-hours-list li span{
    flex: 50%;
}

.footer-bottom-wrapper{
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 30px;
    margin-top: 20px;
    padding-bottom: 30px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
}

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

.footer-bottom-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-bottom-links a,
.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.78);
}

.footer-hours-list li span.day{
    color: var(--theme-color-1);
}

.footer-message-form .form-group {
    margin-bottom: 14px;
    position: relative;
}

.footer-message-form .form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.footer-message-form .form-group:focus-within i {
    color: var(--theme-color-1);
}

.footer-message-form .form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--font-white);
    padding: 11px 16px 11px 40px;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.footer-message-form textarea.form-control {
    padding-left: 40px;
}

.footer-message-form .form-group i.textarea-icon {
    top: 14px;
    transform: none;
}

.footer-message-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.footer-message-form .form-control:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-message-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--theme-color-1);
    outline: none;
    color: var(--font-white);
    box-shadow: 0 0 0 3px rgba(42, 167, 255, 0.15);
}

.footer-message-form textarea.form-control {
    resize: vertical;
    min-height: 90px;
    font-family: inherit;
    line-height: 1.5;
}

.footer-message-btn {
    width: 100%;
    margin-top: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(42, 167, 255, 0.25);
}

.footer-message-btn:hover {
    box-shadow: 0 6px 18px rgba(42, 167, 255, 0.4);
    transform: translateY(-1px);
}

.site-footer .kongdy-form-status {
    color: #7ee2a8 !important;
    font-size: 13px;
}

.team-card img{
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.read-more-link:hover{
    color: var(--theme-color-1);
}

.page-banner-section{
    background-image: url('../image/main-banner-1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    display: inline-block;
    height: 400px;
}

.page-banner-inner{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-banner-inner ul li{
    display: inline-block;
}

.page-banner-inner ul li span.slash{
    margin: 0px 5px;
}

.page-heading{
    font-size: 40px;
    margin-bottom: 10px;
    text-align: center;
}

.btn-main:hover{
    background-color: #1171b5;
    transition: ease-in-out 0.3s;
}

.btn-secondary:hover{
    background-color: #1757c3;
}

.section.dentist-appointment{
    /* background-image: url('../image/dentist-appointment-bg.jpg'); */
    background:linear-gradient( rgba(42, 167, 255, 0.7) 100%, rgba(42, 167, 255, 0.7)100%),url("../image/dentist-appointment-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    display: inline-block;
    position: relative;
}

b{
    font-family: 'Gilroy-Bold';
    font-weight: normal;
}

.dentist-appointment-wrapper p{
    font-size: 38px;
    line-height: 1.4;
    color: var(--font-white);
}

.dentist-appointment-btns{
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

.theme-btn.btn-main.additional{
    background-color: transparent;
    border: 1px solid var(--font-white);
    color: var(--font-white);
}

.sidebar-search{
    position: relative;
    margin-bottom: 30px;
}

.search-input{
    width: 100%;
    padding: 15px;
    height: 51px;
    border-radius: 6px;
    border: 1px solid #ccc;
    position: relative;
}

.search-btn{
    position: absolute;
    border: none;
    top: 12px;
    color: var(--theme-color-1);
    right: 10px;
    background-color: transparent;
}

.widget-heading{
    font-size: 20px;
    margin-bottom: 20px;
}

.popular-service-list li{
    padding: 15px 0px;
}

.popular-service-list li a{
    font-family: 'Gilroy-Medium';
    font-weight: normal;
}

.popular-service-list li:hover{
    background-color: #efefef;
    border-left: 3px solid var(--theme-color-1);
    padding-left: 10px;
    transition: ease-in-out 0.3s;
}

.popular-service-list li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
}

.sidebar-working-hours{
    margin: 20px 0px;
    background-color: var(--theme-color-1);
    border-radius: 6px;
    padding: 20px;
}

.widget-working-hours li{
    margin: 10px 0px;
    display: flex;
    justify-content: space-between;
    color: var(--font-white);
}

.sidebar-working-hours .widget-heading{
    color: var(--font-white);
}

.sidebar-help-info{
    border: 1px solid rgba(42, 167, 255, 0.22);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(27, 60, 116, 0.08);
}

.sidebar-help-info h3{
    margin: 15px 0px;
    font-size: 20px;
}

.sidebar-help-info p{
    font-size: 20px;
    font-family: 'Gilroy-SemiBold';
    font-weight: normal;
}

.news-sidebar-card{
    margin-top: 24px;
    padding: 24px;
    border: 1px solid rgba(27, 60, 116, 0.1);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(27, 60, 116, 0.08);
}

.news-sidebar-card .widget-heading{
    position: relative;
    margin-bottom: 18px;
    padding-bottom: 14px;
    color: var(--theme-color-5);
    font-size: 22px;
}

.news-sidebar-card .widget-heading::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--theme-color-1), var(--theme-color-3));
}

.news-sidebar-social-links{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.news-sidebar-social-links a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #104e45;
    background: #edf5f2;
    border: 1px solid rgba(16, 78, 69, 0.12);
    box-shadow: 0 8px 18px rgba(27, 60, 116, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.news-sidebar-social-links a:hover{
    color: #ffffff;
    background: var(--theme-color-5);
    transform: translateY(-2px);
}

.news-sidebar-list{
    display: grid;
    gap: 16px;
}

.news-sidebar-item{
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    color: var(--heading-color);
    text-decoration: none;
}

.news-sidebar-item:hover{
    color: var(--theme-color-1);
}

.news-sidebar-thumb{
    aspect-ratio: 1 / 1;
    width: 82px;
    overflow: hidden;
    border-radius: 8px;
    background: #f4f7f6;
}

.news-sidebar-thumb img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.news-sidebar-text{
    display: grid;
    gap: 5px;
}

.news-sidebar-date{
    color: #70827f;
    font-size: 13px;
    line-height: 1.3;
}

.news-sidebar-title{
    display: -webkit-box;
    color: inherit;
    font-family: 'Gilroy-SemiBold';
    font-size: 15px;
    line-height: 1.45;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.department-content-wrapper .service-img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    /* margin-bottom: 30px; */
}

.service-main-heading{
    margin: 20px 0px;
    font-size: 24px;
}

.service-small-heading{
    margin: 20px 0px;
    font-size: 20px;
}

.department-content-wrapper p{
    margin-bottom: 20px;
}

.quote-description{
    font-family: 'Gilroy-Medium';
    font-weight: normal;
    font-style: italic;
}

.service-small-img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pricing-heading-price{
    display: flex;
    justify-content: space-between;
    margin: 15px 0px;
}

.pricing-service-image img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

.pricing-service-info{
    margin: 15px 0px;
}

.pricing-service-image{
    position: relative;
    overflow: hidden;
}

.offer-banner{
    top: 10px;
    position: absolute;
    width: 200px;
    padding: 3px;
    background-color: #4CD080;
    z-index: 10;
    right: -68px;
    color: #fff;
    text-align: center;
    transform: rotate(35deg);
}

.pricing-contact{
    width: 100%;
    max-width: 100%;
    border-radius: 0px;
}

.error-page{
    width: 100%;
    height: 100vh;
    position: relative;
}

.error-page-inner h1{
    color: var(--theme-color-1);
    font-size: 150px;
}

.text-gray-silver {
    color: #c0c0c0 !important;
}

.error-page-inner{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-info-oops{
    margin: 10px;
    font-family: 'Gilroy-SemiBold';
    font-size: 28px;
}

.comingsoon-container {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../image/medical-tool.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    display: flex;
    background-attachment: initial;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
}

.comingsoon-page-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.comingsoon-page-wrapper h2 {
    font-size: 45px;
    margin-bottom: 20px;
    color: #fff;
}

.comingsoon-page-wrapper p {
    color: #fff;
}

.soon-subscribe {
    margin: 20px 0px;
    width: 80%;
}

.soon-form-wrapper {
    width: 100%;
    position: relative;
}

.soon-input {
    width: 100%;
    height: 60px;
    background-color: #fff;
    border-radius: 30px;
    padding: 10px 15px;
    border: none;
    position: relative;
}

.soon-submit {
    position: absolute;
    padding: 10px 15px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-1);
    color: #fff;
    border-radius: 30px;
    width: 120px;
    top: 5px;
    right: 5px;
    border: none;
}

.soon-counter {
    width: 100%;
    margin-top: 40px;
}

.soon-counter-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.soon-counter-list div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100px;
    height: 100px;
    background-color: rgb(42 167 255 / 30%);
    border-radius: 20px;
    margin: 0px 10px;
    font-size: 34px;
    font-family: 'Gilroy-Regular';
    font-weight: normal;
    color: var(--theme-color-1);
    /* border: 1px solid #6b6b6b; */
}

.soon-counter-list div span {
    margin-top: 8px;
    font-size: 16px;
    color: var(--heading-color);
    font-family: 'Gilroy-Regular';
    font-weight: normal;
    color: #fff;
}

.footer-heading {
    font-size: 20px;
    line-height: 25px;
    color: #fff;
    margin-bottom: 30px;
}

.footer-social-list li {
    display: inline-block;
    margin-right: 8px;
}

.footer-social-list li a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 167, 255, 0.3);
    border-radius: 6px;
    color: var(--theme-color-1);
}

.policy-main-heading {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.policy-description {
    margin-bottom: 15px;
}

.sidebar-tags{
    margin-top: 30px;
}

.sidebar-tags ul li{
    display: inline-block;
    margin-right: 5px;
    border: 1px solid var(--theme-color-4);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
}

.post-details{
    margin-top: 15px;
}

.post-details li{
    display: inline-block;
    margin-right: 10px;
}

.post-details li i{
    color: var(--theme-color-1);
    margin-right: 5px;
}

.share-article{
    text-align: center;
    margin: 3rem 0rem;
}

.share-article li{
    display: inline-block;
    margin: 0px 3px;
}

.share-article p{
    font-style: italic;
}

.share-article li a{
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: var(--theme-color-1);
}

.comments-wrapper{
    display: flex;
    align-items: flex-start;
}

.comments-author-image{
    max-width: 70px;
    height: 70px;
    margin-right: 15px;
}

.comments-author-image img{
    border-radius: 6px;
}

.comments-author-info h3{
    font-size: 18px;
}

.comments-author-info p{
    font-size: 14px;
    margin-bottom: 10px;
}

.comment-reply-link{
    font-family: 'Gilroy-SemiBold';
    color: var(--theme-color-1);
    font-size: 14px;
}

.comments-list li{
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

.comments-list > li:last-child{
    border: none;
    margin-bottom: 0;
}

.reply-list{
    margin-left: 100px;
    margin-top: 30px;
}

.reply-input {
    height: 51px;
    width: 100%;
    display: inline-block;
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 10px 15px;
}

.reply-form-wrapper{
    margin-bottom: 20px;
}

.comment-textarea {
    width: 100%;
    display: inline-block;
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 10px 15px;
}

.contact-left-box{
    /* background-image: url('../image/main-banner-bg.png'); */
    background:linear-gradient( rgba(42, 167, 255, 0.7) 100%, rgba(42, 167, 255, 0.7)100%),url("../image/medical-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 100%;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
    padding: 50px;
}

.contact-left-box h3{
    color: #fff;
    margin-bottom: 20px;
}

.contact-left-box p{
    color: #fff;
    margin-bottom: 40px;
}

.contact-info-list li{
    margin-bottom: 20px;
    color: #fff;
    display: flex;
}

.contact-info-list li i{
    color: var(--theme-color-4);
    margin-right: 10px;
}

.contact-social{
    margin-top: 5rem;
}

.contact-social li{
    display: inline-block;
    margin-right: 5px;
}

.contact-social li a{
    background-color: var(--theme-color-5);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
}

.meet-form-textarea {
    background: #F2F6F9;
    border-radius: 10px;
    padding: 10px 30px 10px 10px;
    width: 100%;
    position: relative;
    border: none;
    color: #9E9FA0;
}

.success-msg-contact {
    display: none;
    transition: ease-out 0.3s;
}

.success-msg-contact-display {
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: var(--theme-color-1);
    font-size: 14px;
    border-radius: 6px;
    z-index: 10;
    bottom: 72px;
    left: 50%;
    padding-left: 10px;
    color: #fff;
    width: 265px;
    transform: translate(-50%, 50%);
}

.success-msg-contact-display p{
    display: flex;
    align-items: center;
}

.check-success-icon {
    background: var(--theme-color-3);
    padding: 10px;
    margin-right: 10px;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-msg-contact {
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}

.error-msg-contact-display {
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left: 0;
    margin: 0;
    line-height: 0;
    color: red;
}

.check-success-icon i{
    position: relative;
    top: 0;
    left: 0;
    color: var(--font-white);
}

/* Product detail media and conversion */
.product-detail .product-gallery{
    aspect-ratio: 1 / 1;
    width: min(100%, 520px);
    overflow: hidden;
    border-radius: 18px;
    background: #f6f8f7;
}

.product-detail .product-gallery .carousel,
.product-detail .product-gallery .carousel-inner,
.product-detail .product-gallery .carousel-item{
    width: 100%;
    height: 100%;
}

.product-detail .product-gallery .carousel{
    touch-action: pan-y;
}

.product-detail .product-gallery img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail .b2b-supplier-strip{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 14px;
}

.product-detail .b2b-supplier-strip span{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid rgba(23, 111, 102, 0.16);
    background: #e7f5f1;
    color: #176f66;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.product-detail .b2b-supplier-strip i{
    color: #168a7f;
    font-size: 13px;
}

.product-gallery-carousel .carousel-control-prev,
.product-gallery-carousel .carousel-control-next{
    width: 46px;
    height: 46px;
    top: 50%;
    margin-top: -23px;
    border-radius: 50%;
    background: rgba(16, 78, 69, 0.72);
    opacity: 1;
}

.product-gallery-carousel .carousel-control-prev{
    left: 16px;
}

.product-gallery-carousel .carousel-control-next{
    right: 16px;
}

.product-gallery-carousel .carousel-indicators{
    margin-bottom: 18px;
    gap: 8px;
}

.product-gallery-carousel .carousel-indicators button{
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.64);
    opacity: 1;
}

.product-gallery-carousel .carousel-indicators .active{
    background: #ffffff;
    transform: scale(1.18);
}

.product-detail .product-actions{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-top: 26px;
}

.product-detail .product-actions .theme-btn{
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 56px;
    justify-content: center;
    padding: 0 26px;
    font-size: 15px;
    font-weight: 700;
}

.product-social-follow{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    color: #49635f;
    font-size: 15px;
    font-weight: 700;
}

.product-social-links{
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-social-links a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #104e45;
    background: #edf5f2;
    border: 1px solid rgba(16, 78, 69, 0.12);
    transition: all 0.2s ease;
}

.product-social-links a:hover{
    color: #ffffff;
    background: #104e45;
}

.product-tabs-section{
    margin-top: 42px;
}

.product-tabs{
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(16, 78, 69, 0.16);
    padding-bottom: 16px;
    margin-bottom: 42px;
}

.product-tabs .nav-link{
    position: relative;
    border: 0;
    border-radius: 0;
    padding: 0 18px 10px;
    color: #667b76;
    background: transparent;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.product-tabs .nav-link:hover,
.product-tabs .nav-link.active{
    color: #104e45;
    background: transparent;
}

.product-tabs .nav-link.active::after{
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: -17px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2aa7ff 0%, #4cd080 100%);
}

.product-tabs-section .tab-content{
    padding-top: 0;
}

.product-tabs-section .tab-content table,
.product-tabs-section .tab-content tbody,
.product-tabs-section .tab-content tr,
.product-tabs-section .tab-content td,
.product-tabs-section .tab-content th{
    max-width: 100% !important;
}

.product-tabs-section .tab-content table{
    width: 100% !important;
    table-layout: fixed;
}

.product-tabs-section .tab-content td,
.product-tabs-section .tab-content th{
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
}

.product-tabs-section .tab-content img{
    max-width: 100%;
    height: auto;
}

.related-products-minimal .related-product-card{
    display: block;
    height: 100%;
    color: #183d38;
    background: #ffffff;
    border: 1px solid rgba(16, 78, 69, 0.1);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(16, 78, 69, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.related-products-minimal .related-product-card:hover{
    color: #104e45;
    border-color: rgba(16, 78, 69, 0.22);
    box-shadow: 0 18px 42px rgba(16, 78, 69, 0.12);
    transform: translateY(-3px);
}

.related-products-minimal .related-product-image{
    display: block;
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
    background: #f4f7f6;
}

.related-products-minimal .related-product-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.related-products-minimal .related-product-title{
    display: block;
    min-height: 58px;
    padding: 18px 20px 8px;
    color: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.related-products-minimal .related-product-desc{
    display: -webkit-box;
    min-height: 44px;
    margin: 0 20px 20px;
    color: #5b6f6b;
    font-size: 14px;
    line-height: 1.55;
    text-align: center;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.products-section .product-card .product-image{
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #f4f7f6;
}

.products-section .product-card .product-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.products-archive-page{
    background: linear-gradient(180deg, #f3faf8 0%, #ffffff 58%, #eef7f5 100%);
}

.products-archive-page .products-layout{
    align-items: start;
}

.products-archive-page .products-grid-wrap{
    min-width: 0;
}

.products-section .product-card.products-archive-card{
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(16, 78, 69, 0.14);
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcfb 100%);
    box-shadow: 0 16px 34px rgba(27, 60, 116, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.products-section .product-card.products-archive-card::after{
    content: "";
    position: absolute;
    inset: auto 18px 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, var(--theme-color-1), var(--theme-color-3));
    opacity: 0;
    transition: opacity 0.22s ease;
}

.products-section .product-card.products-archive-card:hover{
    border-color: rgba(42, 167, 255, 0.34);
    box-shadow: 0 22px 44px rgba(27, 60, 116, 0.14);
    transform: translateY(-4px);
}

.products-section .product-card.products-archive-card:hover::after{
    opacity: 1;
}

.products-section .products-archive-card .product-image{
    background: #eef7f5;
}

.products-section .product-category-card .category-image{
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #f4f7f6;
}

.products-section .product-category-card .category-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.products-section .product-card,
.products-section .product-category-card{
    height: 100%;
    display: flex;
    flex-direction: column;
}

.products-section .product-card .product-content,
.products-section .product-category-card .category-content{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.products-section .products-archive-card .product-content{
    padding: 18px 18px 22px;
    text-align: center;
}

.products-section .products-archive-card .product-content h3{
    min-height: 48px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.32;
}

.products-section .products-archive-card .product-content h3 a{
    display: -webkit-box;
    color: var(--heading-color);
    text-decoration: none;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.products-section .products-archive-card:hover .product-content h3 a{
    color: var(--theme-color-1);
}

.products-section .product-card.products-archive-card .product-content p{
    display: none;
}

.products-section .products-archive-card .theme-btn{
    align-self: center;
}

.products-section .product-card .product-content p,
.products-section .product-category-card .category-content p{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.45;
    min-height: 2.9em;
}

.products-section .product-card .theme-btn,
.products-section .product-category-card .theme-btn{
    margin-top: auto;
}

.products-pagination{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.products-pagination .page-numbers{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(16, 78, 69, 0.14);
    border-radius: 10px;
    color: #104e45;
    background: #ffffff;
    font-family: 'Gilroy-SemiBold';
    font-weight: normal;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(27, 60, 116, 0.08);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.products-pagination a.page-numbers:hover,
.products-pagination .page-numbers.current{
    color: #ffffff;
    background: var(--theme-color-5);
    border-color: var(--theme-color-5);
    transform: translateY(-2px);
}

/* Product image normalization: uploaded images adapt to their display frame. */
.product-card .product-image,
.product-card .blog-card-image,
.product-category-card .category-image,
.related-products-minimal .related-product-image,
.product-detail .product-gallery,
.product-detail .carousel-item{
    overflow: hidden;
}

.product-card .product-image,
.product-card .blog-card-image,
.product-category-card .category-image,
.related-products-minimal .related-product-image{
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto !important;
    background: #f4f7f6;
}

.product-card .product-image img,
.product-card .blog-card-image img,
.product-category-card .category-image img,
.related-products-minimal .related-product-image img,
.product-detail .product-gallery img,
.product-main-image{
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.product-card .product-image a,
.product-card .blog-card-image a,
.product-category-card .category-image a,
.related-products-minimal .related-product-image{
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 575px){
    footer {
        padding-top: 44px;
    }

    .footer-about-wrapper h3 {
        font-size: 30px;
    }

    .footer-block-heading {
        margin-bottom: 14px;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
    }

    .footer-message-btn {
        min-height: 46px;
    }

    .catalog-download-wrapper{
        display: grid;
        justify-content: stretch;
        gap: 16px;
        text-align: left;
    }

    .catalog-download-wrapper p{
        max-width: none;
    }

    .catalog-download-btn{
        width: 100%;
        justify-content: center;
    }

    .product-gallery-carousel .carousel-control-prev,
    .product-gallery-carousel .carousel-control-next{
        display: none;
    }

    .product-detail .product-actions{
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-detail .product-actions .theme-btn{
        width: 100%;
        max-width: 100%;
    }

    .products-archive-page{
        background: #f3faf8;
    }

    .products-archive-page .products-sidebar{
        display: none;
    }

    .products-archive-page .products-layout{
        display: block;
    }

    .products-section .product-card.products-archive-card{
        border-radius: 12px;
        box-shadow: 0 12px 26px rgba(27, 60, 116, 0.1);
    }

    .products-section .product-card.products-archive-card:hover{
        transform: none;
    }

    .products-section .products-archive-card .product-content{
        padding: 13px 10px 16px;
    }

    .products-section .products-archive-card .product-content h3{
        min-height: 40px;
        font-size: 15px;
        line-height: 1.3;
    }

    .products-pagination{
        gap: 8px;
        margin-top: 8px;
    }

    .products-pagination .page-numbers{
        min-width: 40px;
        height: 40px;
        border-radius: 9px;
    }

    .product-tabs{
        flex-wrap: nowrap;
        gap: 2px;
        overflow-x: auto;
        padding-bottom: 14px;
        margin-bottom: 32px;
    }

    .product-tabs .nav-link{
        white-space: nowrap;
        padding: 0 14px 10px;
        font-size: 15px;
    }

    .product-tabs .nav-link.active::after{
        left: 14px;
        right: 14px;
        bottom: -15px;
    }
}
