 :root {
     --primary-color: #0aa7a0;
     --dark-color: #166763;
     --grey-color: #a8a8a8;
     --text-color: #121212;
     --desc-color: #282828;
 }

 body {
     font-family: "Montserrat", sans-serif;
     color: var(--text-color);
     font-weight: 500;
 }

 ::selection {
     background-color: var(--primary-color);
     color: #fff;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 .h1,
 .h2,
 .h3,
 .h4,
 .h5,
 .h6 {
     color: var(--text-color);
     line-height: 1.4;
 }

 a {
     transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
     -ms-transition: all 0.5s ease;
     -o-transition: all 0.5s ease;
     -webkit-transition: all 0.5s ease;
     outline: 0;
     text-decoration: none;
     color: var(--text-color);
 }

 a:hover {
     outline: none;
     color: #1d1d1d;
     text-decoration: none;
 }

 .wow {
     visibility: hidden;
 }

 .clear {
     clear: both;
 }

 img:not(table img) {
     max-width: 100%;
 }


 p {
     font-size: 16px;
     color: var(--desc-color);
 }

 .navbar {
     background: #ffffff !important;
     padding: 0;
     height: 75px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .navbar-brand {
     font-size: 1.8rem;
     font-weight: bold;
     color: var(--text-color) !important;
 }

 .navbar-brand img {
     max-height: 65px;
 }

 .paddTopHead {
     padding-top: 75px;
 }

 .navbar-nav .nav-link {
     color: var(--text-color) !important;
     margin: 0 15px;
     font-weight: 500;
     padding-block: 22px;
     font-size: 1.1rem;
 }

 .navbar-nav .nav-link:hover,
 .navbar-nav .nav-link.active {
     color: var(--primary-color) !important;
 }

 /* Updated button styling for contact button */

 .cms-section {
     padding: 70px 0;
 }

 .cms-title {
     font-size: 42px;
     margin: 0 0 20px;
     font-weight: 600;
     line-height: normal;
 }

 .cms-title2 {
     font-size: 26px;
     margin: 0 0 20px;
     font-weight: 600;
     line-height: normal;
 }

 .contact-description {
     font-size: 15px;
     margin-bottom: 24px;
     color: var(--grey-color);
 }

 /* contact css start */
 .contactForm-items {
     background: rgb(10 167 160 / 7%);
     padding: 28px 22px;
     display: flex;
     align-items: center;
     gap: 22px;
     margin-bottom: 16px;
 }

 /* .contactForm-items:last-child {
    margin-bottom: 0;
} */


 .contactButton {
     position: relative;
     transition: all 0.3s ease-in-out;
     box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
     padding-block: 9px;
     padding-inline: 22px;
     background-color: rgb(10 167 160);
     border-radius: 9999px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     color: #ffff;
     gap: 10px;
     font-weight: bold;
     border: 3px solid #ffffff4d;
     outline: none;
     overflow: hidden;
     font-size: 15px;
     margin-left: 20px;
 }

 .contactButton .icon {
     width: 24px;
     height: 24px;
     transition: all 0.3s ease-in-out;
 }

 .contactButton:hover {
     transform: scale(1.05);
     border-color: #fff9;
     color: #fff;
 }

 .contactButton:hover .icon {
     transform: translate(4px);
 }

 .contactButton:hover::before {
     animation: shine 1.5s ease-out infinite;
 }

 .contactButton::before {
     content: "";
     position: absolute;
     width: 100px;
     height: 100%;
     background-image: linear-gradient(120deg,
             rgba(255, 255, 255, 0) 30%,
             rgba(255, 255, 255, 0.8),
             rgba(255, 255, 255, 0) 70%);
     top: 0;
     left: -100px;
     opacity: 0.6;
 }

 @keyframes shine {
     0% {
         left: -100px;
     }

     60% {
         left: 100%;
     }

     to {
         left: 100%;
     }
 }


 .btn-primary {
     background: var(--primary-color);
     color: #fff;
     border: none;
     padding: 12px 35px;
     border-radius: 25px;
     font-weight: 600;
     text-decoration: none;
 }

 .btn-primary:hover {
     background: var(--dark-color);
     color: #fff;
 }

 label {
     display: inline-block;
     color: var(--th-label-color);
     font-size: 14px;
     font-weight: 500;
     margin: 0 0 7px;
 }

 .icon-track {
     width: 60px;
     min-width: 60px;
     height: 60px;
     background-color: var(--primary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .form-label {
     color: var(--text-color);
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 5px;
     line-height: normal;
 }


 .formDetal_track a,
 .formDetal_track p {
     margin-bottom: 0;
     word-break: break-all;
 }

 .formDetal_track a:hover {
     color: var(--dark-color);
 }

 .contact-form {
     background: #FFF;
     box-shadow: 0px 0px 46px 0px rgba(38, 45, 118, 0.08);
     padding: 22px 26px;
     height: 100%;
 }

 .textareaTrack {
     min-height: 142px !important;
     resize: none;
 }

 .form-heading {
     margin-bottom: 26px;
 }

 .contact-description {
     font-size: 15px;
     margin-bottom: 24px;
 }

 .form-control {
     display: block;
     width: 100%;
     height: auto;
     padding: 8px 19px;
     border-radius: 4px;
     min-height: 50px;
     font-size: 15px;
     color: var(--grey-color);
     background-color: #FFF;
     border: 1px solid var(--grey-color);
     -webkit-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
     transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
 }

 .form-group {
     margin-bottom: 22px;
 }

 /* hero-banner */
 .herobg_wrapper {
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .herobg_wrapper img {
     width: 100%;
     height: 100%;
 }


.heroswiper .swiper-pagination {
    position: relative;
    margin-top: 15px;
}

 .heroswiper .swiper-pagination-bullet {
     background: #0aa7a091;
     opacity: 1;
     width: 10px;
     height: 10px;
     border-radius: 41px;
 }

 .heroswiper .swiper-pagination-bullet-active {
     background: var(--primary-color) !important;
     width: 30px;
     height: 10px;
 }

 .nav-link.productsMegaMenu::after {
     content: "\f107";
     font-family: "Font Awesome 6 Free";
     font-weight: 600;
     transform: scaleX(0.9);
     margin-left: 7px;
     display: inline-block;
     position: relative;
     top: 2px;
     font-size: 17px;
 }


 .hero-banner {
     height: 581px;
     position: relative;

 }

 .hero-banner img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .hero-overlay {
     border: 1px solid rgba(15, 68, 89, 0.10);
     background: rgba(15, 68, 89, 0.77);
     backdrop-filter: blur(16.200000762939453px);
     padding: 40px 40px 54px;
 }

 .hero-offer {
     color: #EA6E0D;
     font-size: 40px;
     font-weight: 600;
     line-height: 48px;
     margin-bottom: 0;
 }

 .hero-text {
     color: #FFF;
     font-size: 80px;
     font-weight: 700;
     line-height: 88px;
     margin-bottom: 10px;
     position: relative;
 }

 .hero-para {
     color: #FFF;
     font-size: 14px;
     font-weight: 400;
     margin-bottom: 26px;
 }

 .shop-btn {
     padding: 10px 30px;
     font-size: 20px;
     color: #FFF;
     background: #EA6E0D;
     display: inline-block;
 }

 .theme-btn.shop-btn:hover {
     background: #FFF;
     color: #EA6E0D;
 }


 .service-card {
     background: white;
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     margin-bottom: 2rem;
     border-left: 4px solid var(--primary-color);
 }

 .service-icon {
     width: 60px;
     height: 60px;
     background: var(--light-bg);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1rem;
 }

 .about-section {
     padding: 80px 0;
 }

 .about-sub-title {
     font-size: 17px;
     color: var(--dark-color);
 }

 .about-list {
     padding: 0;
     list-style: none;
     margin: 0;
 }

 .about-title {
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 20px;
     color: var(--text-color);
 }

 .about-list li {
     display: flex;
     align-items: center;
     font-size: 16px;
     color: #555;
     gap: 10px;
     margin-bottom: 10px;
 }

 .about-list li i {
     color: var(--primary-color);
 }

 .experience-counter img {
     width: 100%;
     height: 100%;
 }

 .experience-counter {
     padding-right: 20px;
 }


 .footer-section {
     background: var(--dark-color);
     color: white;
     padding: 60px 0 20px;
 }

 .footer-links {
     margin: 0 0 41px;
     padding: 0;
     list-style: none;
     display: flex;
     gap: 2px 40px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .footer-links li {
     margin: 3px 0;
     padding: 0;
     list-style: none;
     margin-bottom: 10px;
     position: relative;
 }

 .footer-links li a {
     text-decoration: none;
 }

 .footer-links li::before {
     content: '/';
     position: absolute;
     right: -22px;
     top: -4px;
     color: #959595;
     font-size: 21px;
     pointer-events: none;
 }

 .footer-block figure img {
     max-height: 90px;
 }

 .footer-links li:last-child:before {
     display: none;
 }

 .footer-links li a {
     font-size: 16px;
     text-transform: uppercase;
     font-weight: 400;
     color: #fff;
 }

 .footer-links li a:hover {
     color: #fff;
     text-decoration: underline;
 }



 .social_links {
     margin: 0;
     padding: 0;
     list-style: none;
     display: flex;
     gap: 15px;
     justify-content: center;
 }

 .social_links a {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 1px solid rgba(255, 255, 255, 0.15);
     text-align: center;
 }

 .copyright {
     font-size: 14px;
     color: #ffffffd3;
 }

 .social_links a:hover {
     border: 1px solid var(--primary-color);

 }

 /*     Applications card */
 .applications_wrapper {
     padding: 70px 0;
     background: var(--primary-color);
     color: white;
 }

 .applications_card_box {
     text-align: center;
     border: 1px solid #ddd;
     padding: 20px;
     height: 100%;
     border-radius: 10px;
 }

 .applications_card_box h3 {
     font-size: 24px;
     color: #fff;
     font-weight: 600;
 }

 .applications_card_box p {
     font-size: 16px;
     color: #fff;
     margin: 0;
 }

 .applications_card_box i {
     font-size: 36px;
 }

 .whatsapp-float {
     position: fixed;
     width: 70px;
     height: 70px;
     bottom: 40px;
     right: 40px;
     background-color: #25d366;
     color: #FFF;
     border-radius: 50px;
     text-align: center;
     font-size: 30px;
     box-shadow: 2px 2px 3px #999;
     z-index: 100;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
 }

 .whatsapp-float:hover {
     color: white;
     background-color: #128c7e;
 }


 .section-heading {
     margin-bottom: 35px;
 }

 .section-heading h2 {
     font-size: 26px;
     font-weight: 700;
     text-align: center;
     margin-bottom: 12px;
     color: white;
 }

 .section-heading p {
     font-size: 18px;
     text-align: center;
     margin-bottom: 15px;
     color: white;
 }

 .text-black-head.section-heading h2,
 .text-black-head.section-heading p {
     color: black;
 }


 /*  */
 .pro_card_box {
     background: #fff;
     border-radius: 10px;
     padding: 15px;
     transition: all 0.3s ease-in-out;
     cursor: pointer;
     height: 100%;
 }

 .pro_card_box:hover {
     background: #fff;
     transform: translateY(-5px);
     box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.083);
 }

 .pro_card_box:hover .pro_card_img img {
     transform: scale(1.05);
 }

 .pro_card_img img {
     max-height: 210px;
     width: 100%;
     height: 100%;
     object-fit: contain;
     transition: transform 0.3s ease-in-out;
     margin-block: -10px;
 }


 .pro_card_content {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 10px;
     padding-top: 20px;
 }

 .pro_price_title {
     font-size: 15px;
     font-weight: 600;
     background: var(--primary-color);
     padding: 5px 8px;
     color: #fff;
     margin: 0;
     white-space: nowrap;
 }

 .pro_card_title {
     color: var(--text-color);
     font-size: 15px;
     text-decoration: none;
     font-weight: 600;
     margin: 0;
 }

 .product-wrapper {
     padding: 55px 0;
     background-color: #f0f0f0;
 }

 /*  */

 /* Dropdown Menu */
 .megaMenuDrop .dropdown-menu {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     min-width: 220px;
     background: #fff;
     border: 0;
     box-shadow: 0 0px 10px rgb(0 0 0 / 10%);
     z-index: 99;
 }

 .megaMenuDrop .dropdown-item {
     display: block;
     padding: 10px 15px;
     font-weight: 500;
     font-size: 15px;
     color: var(--desc-color);
     text-decoration: none;
 }

 .megaMenuDrop .dropdown-item:hover {
     background: #eef9f8;
     color: var(--dark-color);
 }


 /* SWR */
 .swr-card {
     display: flex;
     background: #54c2bd;
     border-radius: 10px;
 }

 .swr-image-box {
     flex: 0 0 44%;
     text-align: center;
 }

 .swr-image-box img {
     max-width: 160px;
     text-align: center;
     margin: 0 auto;
 }

 .swr-pro-name {
     background: var(--primary-color);
     color: #fff;
     border-radius: 10px 0 0 0;
     padding: 7px;
     margin: 0;
     font-size: 14px;
     font-weight: 600;
 }

 .swr_wrapper {
     padding: 50px 0;
 }

 .ser-table.table {
     background: #fff;
     border-radius: 0px 6px 6px 0px;
     overflow: hidden;
 }

 .ser-table {
     margin: 0;
 }

 .ser-table.table th {
     background: var(--primary-color);
     color: #fff;
     font-size: 15px;
     font-weight: 500;
     line-height: 25px;
 }

 .table th,
 .table td {
     text-align: center;
 }

 .swr-full .swr-image-box img {
     max-width: 250px;
 }