:root{
    --primary-color: #063978;
    --heading-navy-blue:#1E2A38;
    --text-color-blue:#131313;
    --heading-grey:#5F6A75;
    --secondary-color: #BCD9FF;
    --light-blue:#E6F1FF;
    --bg-color: #EEF5FF;
    --text-color: #5F6A75;
    --subheading-color: #8B8B8B;
    --font-family-body: "Poppins", sans-serif;
}
/* GLOBAL CSS */
main{
    overflow: hidden;
}

.w-5  { width: 5% !important; }
.w-10 { width: 10% !important; }
.w-15 { width: 15% !important; }
.w-20 { width: 20% !important; }
.w-25 { width: 25% !important; }
.w-30 { width: 30% !important; }
.w-35 { width: 35% !important; }
.w-40 { width: 40% !important; }
.w-45 { width: 45% !important; }
.w-50 { width: 50% !important; }
.w-55 { width: 55% !important; }
.w-60 { width: 60% !important; }
.w-65 { width: 65% !important; }
.w-70 { width: 70% !important; }
.w-75 { width: 75% !important; }
.w-80 { width: 80% !important; }
.w-85 { width: 85% !important; }
.w-90 { width: 90% !important; }
.w-95 { width: 95% !important; }

/* FONT SIZE  */

.fs-15 {font-size: 15px !important;}
body {
    font-family:  var(--font-family-body);
    background-repeat: repeat;
    background-size: cover;
}
h1, h2, h3, h4, h5, h6{
    color: var(--heading-navy-blue) !important;
    font-weight: 600 !important;
}
h1, h2, h3, h4, h5, h6, p, span, button, select{
    font-family:  var(--font-family-body);
    color: var(--subheading-color);

}

a{
    font-family:  var(--font-family-body);
    text-decoration: none !important;
}

ul{
    margin: 0;
    padding: 0;
}
ul li{
    padding: 0;
    margin: 0;
}
section{
    padding: 50px 0;
}
a{
    color: var(--secondary-color);
}
a:hover{
    color: var(--primary-color);
}
.btn-primary{
    border-radius: 50px;
    padding: 14px  30px !important;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}
.btn-secondary{
    width: 100%;
    padding:16px 24px;
    color: var(--heading-navy-blue);
    background: var(--light-blue);
    display: inline-block;

    border-radius: 12px;
}
/*Universal Heading css  */
.heading-btn{
    display: flex;
    align-items: center;
    justify-content: center;
}
.heading-btn span{
    padding: 7px 14px;
    color: var(--bs-black);
    background:var(--light-blue) ;
    display: inline-block;
    margin: 0 0 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.heading-btn i{
    font-size: 8px;
}
.main-heading h2{
    font-weight: 700 !important;
    font-size: 30px;
    color: var(--heading-navy-blue);
    line-height: 45px;
}
/* Navigation css START  */
.dropdown-item.active, .dropdown-item:active{
    background-color: var(--primary-color) !important;
}
.nav-link:focus, .nav-link:hover{
    color:var(--primary-color);
}
.navbar-toggler{
    border: none !important;
}
.navbar-toggler-icon{
    filter: brightness(0) !important;
}
.navbar-toggler:focus{
    box-shadow: unset !important;
}
.navbar-brand img{
    width: 150px;
}
.navbar>.container{
    padding: 1rem 2rem;
    background: #ffffff;
    margin: 0 10px;
    border-radius: 75px;
}
.navbar .navbar-collapse {
    position: absolute;
    border-radius: 16px;
    top: 98px;
    left: 15px;
    right: 15px;
    background: #fdfdfd;
    z-index: 3;
    box-shadow: 0px 1px 5px 1px #dbdbdba1;
    padding: 20px 0px 0 0;
    border-top: 1px solid #ddd;
}
.nav-link {
    line-height: 20px;
    text-align: left;
    color: var(--text-color-blue);
    font-weight: 400;
    padding: 10px 15px;
}
ul.dropdown-menu.show {
    border: none;
    padding: 0 20px 12px;
    margin-top: 0;
}

a.dropdown-item {
    padding: 8px 20px;
    font-size: 15px;
    transition: 0.3s ease-in-out;
}
.dropdown-item:focus, .dropdown-item:hover{
    background: var(--primary-color);
    color: #fff;
}
.dropdown-toggle::after{
    font-family: 'Font Awesome 6 Free';
    content: "\f107" !important;
    position: absolute;
    right: 12px;
    top: 19.25px;
    border: none !important;
    font-size: 14px;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
}
.dropdown-toggle.active::after {
  transform: translateY(-50%) rotate(180deg);
}
.dropdown-menu {
  display: block;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  visibility: hidden;
  height: 0;
  padding: 0;
  margin: 0;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.dropdown-menu.show {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  height: 100%;
}
/* Position the second-level dropdown */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin: 0;
}
.navbar{
    position: fixed;
    top: 0;
    width: 100%;
    padding-top: 20px;
    z-index: 2;
}
.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.bookappointment-btn{
    margin: 0 10px 20px;
}
/* NAVIGATION CSS END  */

/* Banner css Start  */
.banner_main{
    background: linear-gradient(161.78deg, #376BAE 0.46%, #315886 122.36%);
    padding-top: 118px;
    z-index: -1;
    position: relative;
}
.banner_main:before{
    position: absolute;
    content: '';
    bottom: 0;
    background: #fff;
    left: 0;
    width: 100%;
    height: 150px;
}
.banner-img{
    position: relative;
    padding-top: 50px;
}
.banner-img picture{
    z-index: 1;
    position: relative;
}
.banner-img:before{
    position:absolute;
    left: -12px;
    content:'';
    border-top: 50px solid transparent;
    border-left: 100px solid #6592C9;
    border-bottom: 50px solid transparent;
    bottom: 50px;
}
.banner-img:after{
    position:absolute;
    right: -12px;
    content:'';
    top: 34px;
    border-bottom: 120px solid #6592C9;
    border-left: 120px solid transparent;
    bottom: 100px;
}
.banner-title p{
    color: #FFFFFFCC;
}
/* Banner css END  */
/* Marquee Strips below banner START */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.marquee-container {
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
    font-size: 30px;
  color: #5a78a5;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 60px;
  font-weight: 700;
  padding: 0;
}

.marquee-item i {
  font-size: 8px;
  margin-right: 12px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-item span{
    color: #6d8eb6;
}
.marquee-item:nth-child(even)  {
    padding: 0;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: transparent; /* make fill transparent */
    -webkit-text-stroke: 2px #6d8eb6; /* outline color and thickness */
     display: inline-flex;
  align-items: center;
    letter-spacing: 5px; 
}
.marquee-item:nth-child(even)   span{
    color: transparent;
}

.marquee-main{
    padding: 20px 0;
    margin-top: -123px;
    transform: rotate(
-10deg);
    overflow: hidden;
}
/* Marquee Strips below banner  END*/
/* About us css Home START*/
.about_us{
    padding-top: 100px;
}
.about_us .heading-btn span{
    margin-top: 20px;
}
.about_us_img img{
    border-radius: 12px;
}
.aboutus-content p{
    line-height: 28px;
    color: var(--text-color);
}
.aboutus-content span{
    background: #EFEFEF;
    color: var(--bs-black);
    padding: 10px 20px 10px 10px;
    display: block;
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 6px;
}
/* About us css Home END*/

/* Achievements - Counter css START  */
.achievements{
    background:#EEF6FF ;
}
.gallery_home .heading-btn span, .achievements .heading-btn span{
    background: #BCD9FF;
}

#awardIcon {
  width: 80px;
  height: 80px;
  transform-origin: center;
}
.machine-icon {
  width: 80px;
  height: auto;
  display: block;

}
.chat-icon {
  width: 80px;
  height: auto;
  display: block;
}

.counter-box{
    padding: 30px;
    background: #fff;
    margin: 10px 30px;

    border-radius: 6px;
}
.counter-box span{
    color: var(--heading-navy-blue);
}
.counter-box h3{
    font-size: 45px;
    margin: 10px 0;
    font-weight: 700;
    color: var(--heading-navy-blue);
}
.counter-box p{
    color: var(--heading-navy-blue);
}
/* Achievements - Counter css END */

/* PRODUCT HOME PAGE CSS START  */
.product-box{
    border: 1px solid #D7D7D7;
    padding: 20px;
    margin: 20px 30px;
    border-radius: 24px;
    height: 240px;
    position: relative;
    overflow: hidden;
}
.productbox-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.product-box:hover{
    box-shadow: 1px 2px 19px 3px #d0cece9e;
    border: 1px solid #0c6ffffa;
}
.product-box:hover img{
   transform: scale(1.1); /* 1.2 = 20% bigger */
  transition: transform 0.4s ease; /* smooth zoom */
}
.productbox_img img {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 75%;
} 

.productbox-title h2 {
   font-size:23px;
   font-weight: 600;
   line-height:33px;
   color:var(--heading-navy-blue);
}
.product-box.productbox-title img{
display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-box:hover .productbox-title img {
    transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* From Uiverse.io by Creatlydev */ 
.button {
  cursor: pointer;
  border: none;
  overflow: hidden;
  position: relative;
  outline: none;
  background: transparent;
  transition:
    background 300ms,
    transform 200ms;
}

.button__circle {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background: #fff;
  color: #5F6A75;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button__icon--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

/* --- Replace .button:hover with .product-box:hover --- */

.product-box:hover .button {
  background: transparent;
  transform: scale(1.05);
}

.product-box:hover .button__icon {
  color: #000;
}

.product-box:hover .button__icon:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.product-box:hover .button__icon--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}
/* PRODUCT HOME PAGE CSS END  */
/* Home Logo Scroller START  */

.smooth-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%
}

.smooth-scroll .item {
    flex-shrink: 0;
    width: 200px;
    margin: 0 10px;
    text-align: center
}
.smooth-scroll {
	display: flex;
	animation: 10s linear infinite scroll
}

@keyframes scroll {
	from {
		transform: translateX(0)
	}

	to {
		transform: translateX(-100%)
	}
}
/* Home Logo Scroller END  */

/* FAQS css Start  */
/* FAQs Css Home  */
.home-faq .accordion-button:not(.collapsed){
    background: transparent !important;
    box-shadow: none !important;
    padding-bottom: 0px !important;
    color: #000000CC;
    font-weight: 500;
}
.home-faq .accordion-button{
    color: #000000CC !important;
    font-weight: 500 !important;
    background:#F4F2F2;
    font-size: 15px !important;
    line-height: 22px;
    border-radius: 10px ;
}
.home-faq .accordion-item{
    margin-bottom: 10px;
    background: #F4F2F2 !important;
    border: 2px solid #fff;
    border-radius: 10px;
}
.home-faq .accordion-body{
    color: #484848 !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    line-height: 25px;
    padding-right: 40px;
    padding-bottom: 25px;
    padding-top: 5px;   
}
.home-faq .accordion-item:not(:first-of-type){
    border-top: 2px solid #fff !important;
}
.home-faq .accordion-button:not(.collapsed)::after{
    background: none !important;
    content: '\f068' !important;
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
    background: #1E2A38 !important;
    width: 30px !important;
    height: 30px !important;
    text-align: center;
    line-height: 30px;
    color: #fff !important;
    border-radius: 50%;
}
.home-faq .accordion-button:not(.collapsed)::after{
    transform: translateY(-40%) !important;
}
.accordion-button:not(.collapsed){
    color: var(--primary-color)  !important;
}
.home-faq .accordion-button::after{
     content: "\2b" !important;
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 10px;
    top: 50%;
    transition: 0.3s ease-in;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 700;
    color: #000000CC;
    background: #1E2A38 !important;
    width: 30px !important;
    height: 30px !important;
    text-align: center;
    line-height: 30px;
    color: #fff !important;
    border-radius: 50%;
    transition: transform .3s, content .3s, color .3s;
    background-image: none !important;
}
.home-faq .accordion-button:focus{
    box-shadow: none !important;
}
.read-more-btn {
    outline: none !important;
    border: none;
    font-size: 18px;
    background: transparent;
    color: var(--primary-color);
    font-weight: 500;
}
.more-accordion {
    overflow: hidden;
    transition: max-height 0.4s ease;
    display: none;
}
/* Faqs Css End  */
/* Gallery css Start  */
.gallery_home{
    background: var(--bg-color);
}
.gallery-home-swiper {
  position: relative;
  padding-top: 30px;
}
.gallery-img img{
    width: 100%;
    border-radius: 20px;
}

.gallery-home-swiper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(270deg, rgba(245, 245, 245, 0) 0%, #eef5ff 71.59%);
}

.gallery-home-swiper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 20%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg, rgba(245, 245, 245, 0) 0%, #eef5ff 71.59%);
}

/* Gallery Css ENd  */
/* Quility Css START  */
.quality{
    background: var(--bg-color);
    position: relative;
}
.quality:before{
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    background: url(../images/home-page/quality_svg.svg) no-repeat bottom;
    width: 100%;
    height: 100%;
}
.iso_box, .gst_box{
    background: #FFF4D5;
    border: 1px solid#C8B788;
    border-radius: 10px;
    padding: 30px;
    margin: 30px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}
.gst_box{
    background: #CDE3FF !important;
    border: 1px solid#719ED7;
}
.iso_box h3, .gst_box h3, .iso_box p, .gst_box p{
    margin: 0;
    color: var(--heading-navy-blue);
}
.iso_box a, .gst_box a{
    color: #ED322D;
}
/* Quality CSS END  */
/* Home CTA css START  */
.home_cta_bg{
    padding: 30px;
    margin: 20px;
    border-radius: 24px;
    background: linear-gradient(93.05deg, #1E2A38 10.1%, #55779E 99.37%);
    position: relative;
    height: 550px;
    overflow: hidden;
}
.cta_img img{
    position: absolute;
    left: 0;
    bottom: -128px;
}
.cta_heading p{
    color: #FFFFFFCC;
}
/* Home CTA css END  */

/* Manufacturing Insight Css Start */
.process-timeline {
  list-style: none;
  margin: 30px;
  padding: 0;
  position: relative;
  border-left: 2px dashed #cfd8e3;
  text-align: left;
}

.process-timeline li {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-left: 20px;
}

.process-timeline li:last-child {
  margin-bottom: 0;
}

.process-timeline .icon {
  position: absolute;
  left: -20px;
 background: linear-gradient(165.11deg, #376BAE 4.41%, #315886 107.79%);

  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 2;
}

.process-timeline .content {
  margin-left: 20px;
}

.process-timeline h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 5px;
  color:#000;
}

.process-timeline p {
  font-size: 15px;
  color:#5F6A75;
  margin: 0;
}

/* Manufacturing Insight Css END */
/* Testimonial css Start  */
.testimonial-tooltip {
    background: url(../img/testimonial-vector.svg) no-repeat center;
    background-size: cover;
    height: 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-right: 50px;
}

.testimonial-user1,
.testimonial-user2,
.testimonial-user3,
.testimonial-user4 {
    width: 50%;
    position: relative; /* Ensure tooltips position correctly */
}

.testimonial-user1 img,
.testimonial-user2 img,
.testimonial-user3 img,
.testimonial-user4 img {
    width: 75px;
    height: auto;
    cursor: pointer;
}

/* Common style for all testimonial texts */
.testimonial-tooltip > div div[class*="testimonial-text"] {
    display: none;
    position: absolute;
    bottom: 51px;
    left: 94%;
    transform: translateX(-50%);
    background: #ffffffba;
    color: #333333B5;
    padding: 10px;
    border-radius: 5px;
    width: 500px;
    text-align: center;
    z-index: 10;
    border: 1px solid #fff;
    font-size: 14px;
}

.testimonial-tooltip > div div[class*="testimonial-text"]::after {
    content: '';
    position: absolute;
    left: 8%;
    top: -16px;
    margin-left: -20px;
    border-width: 8px;
    border-style: solid;
    border-color: #FFFFFF57 transparent transparent transparent;
    transform: rotate(180deg);
}

/* Tooltip always visible for user1 */
.testimonial-user1 > .testimonial-text-user1 {
    display: block !important;
    padding: 20px;
    background: #FFFFFF57;
}

/* Tooltip visible on hover for other users */
.testimonial-user2:hover .testimonial-text-user2,
.testimonial-user3:hover .testimonial-text-user3,
.testimonial-user4:hover .testimonial-text-user4 {
    display: block;
    padding: 20px;
    background: #FFFFFF57;
}
/* Hide first tooltip when hovering any other user */
.testimonial-user2:hover ~ .testimonial-user1 > .testimonial-text-user1,
.testimonial-user3:hover ~ .testimonial-user1 > .testimonial-text-user1,
.testimonial-user4:hover ~ .testimonial-user1 > .testimonial-text-user1 {
    display: none !important;
}

/* Paragraph text style */
.testimonial-text-user1 p,
.testimonial-text-user2 p,
.testimonial-text-user3 p,
.testimonial-text-user4 p {
    font-size: 14px;
    line-height: 20px;
}

/* Testimonial-slider home  */
    
.home-testimonial{
    background: #F4F4F4;
}
.testimonial-home-swiper{
    padding-bottom: 120px !important;
}
.custom-nav-buttons {
  position: absolute;
  bottom: 56px; /* aligns with scrollbar */
  left: 50%;
  width: 80%; /* same as scrollbar width */
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none; /* allows scrollbar dragging */
}
.custom-nav-buttons .swiper-button-next::after{
    font-family: "Font Awesome 6 Free" !important;
    content: '\f061' !important;
}
.custom-nav-buttons .swiper-button-prev::after{
    font-family: "Font Awesome 6 Free" !important;
    content: '\f060' !important;
}
.custom-nav-buttons .swiper-button-prev,
.custom-nav-buttons .swiper-button-next {
  position: relative;
  width: 30px;
  height: 30px;
  color: #000;
  pointer-events: auto; /* re-enable click */
}

.custom-nav-buttons .swiper-button-prev::after,
.custom-nav-buttons .swiper-button-next::after {
  font-size: 22px;
  color: #000;
}

.custom-nav-buttons .swiper-button-prev:hover::after,
.custom-nav-buttons .swiper-button-next:hover::after {
  color: #555; /* hover effect */
}

.testimonial-home-swiper .swiper-scrollbar {
    height: 3px !important;
    background: #AAAAAA;
    border-radius: 0px;
    margin-top: 20px;
    width: 50% !important;
    top: auto !important;
    bottom: 70px !important;
    left: calc(50% - 25%) !important;
}
.testimonial-home-swiper .swiper-scrollbar-drag {
    background: #000;
    border-radius: 0px;
    width: 20% !important;
    height: 3px;
    margin-top: 0px;
}

.testimonial-text{
    background: #FFFFFF;
    padding:30px;
    border-radius: 10px;
    position: relative;
}

.testimonial-text p{
    color: #8B8B8B;
    font-size: 16px;
    line-height: 27px;
}
.testimonial-text h3{
    font-size: 24px;
    color: #000000;
    margin-bottom: 5px;
    font-weight: 500;
}
.testimonial-text span{
    color: #015986;
    font-size: 16px;
    margin-bottom: 0;
    display: inline-block;
}
/* Testimonial CSS END  */

/* Home form css  START */
.home_form {margin: 0 30px;}
.response-form {
  margin:0;
  padding: 20px 25px;
  background: linear-gradient(165.11deg, #376BAE 4.41%, #315886 107.79%);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  font-family: "Poppins", sans-serif;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #fff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #000;
}

.submit-btn {
  display: inline-block;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #333;
}
/* Home form css  END */

/* FOOTER CSS START  */
footer{
    background: var(--heading-navy-blue);
    padding: 100px 0 0 0;
    position: relative;
}
.footer-text{
    text-align: center;
}
.footer-text h2{
    color: #FFFFFF;
    font-size: 50px;
    line-height: 60px;
}
.footer-text span{
    color: #FFFFFF6B;
}
.footer-text p{
    color: #939393;
    line-height: 30px;
    font-weight: 400 !important;
}

.footerlimg img{
    width: 180px;
    margin-bottom: 20px;
}
.footer-contact-list ul{
    padding: 0;
    margin: 0;
    position: relative;
}
.footer-contact-list ul li{
    line-height: 20px;
    list-style: none;
    padding-left: 30px;
    padding-bottom: 25px;
    padding-left: 40px;
    position: relative;
}
.footer-contact-list i{
    position: absolute;
    left: 0;
    top: 5px;
}
.footer-contact-list ul li a{
    color: #BDBDBD;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    transition: 0.5s ease-in-out;
}
.footer-contact-list ul li a:hover{
    color: #02b562;
    padding-left: 10px;
}

.footer-social-icon ul{
    padding: 0;
    margin: 0;
      display: flex;
      justify-content: center;
}
.footer-social-icon ul li{
    list-style: none;
    width: 40px;
    height: 40px;
    border: 1px solid#fff;
    background:transparent;
    margin-right: 20px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: 0.5s ease-in-out;
}
.footer-social-icon ul li:hover{

    background:var(--primary-color) ;
}
.footer-social-icon ul li a{
 color: #fff;
}

.footer-links h2{
    color: #FFFFFF !important;
    font-size: 25px;
    position: relative;
}
.footer-links h2::before{
    position: absolute;
    content: '';
    width: 10%;
    height: 3px;
    bottom: -15px;
    left: 0;
    background: #718FB5;
}
.footer-links ul{
    margin: 0;
    padding: 0;
    margin-top: 30px;
}
.footer-links ul li{
    list-style: none;
    padding: 13px 0 0 0 ;
}
.footer-links ul li a{
    color: #FFFFFFAB;
    font-size: 14px;
    transition: 0.5s ease-in-out;
}
.footer-links ul li a:hover{
    color: #02b562;
    padding-left: 10px;
}
.big-text-footer h3{
    font-size: 40px;
    color: #fff !important;
}
.copyright-text p{
    font-size: 15px;
}
/* FOOTER CSS END  */
/* ABOUT US PAGE CSS START  */
.breadcrumb-banner{
    background: linear-gradient(161.78deg, #376BAE 0.46%, #315886 122.36%);
    padding-top: 118px;
    z-index: -1;
    position: relative;
}
.breadcrumb-banner:before{
    position: absolute;
    left: -12px;
    background: transparent;
    content: '';
    border-top: 50px solid transparent;
    border-left: 100px solid #6592C9;
    border-bottom: 50px solid transparent;
    bottom: -50px;
}
.breadcrumb-banner:after{
    position: absolute;
    right: 0px;
    content: '';
    top: 21px;
    border-bottom: 80px solid #6592C9;
    border-left: 100px solid transparent;
    bottom: 0px;
}
.breadcrumb-title ul{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 10px;
}
.breadcrumb-title a{
    color: #fff;
    font-size: 12px;
}
.breadcrumb-title i{
    color: #fff;
}


/* Timeline STARTS CSS  */
.timeline-container {
    max-width: 1200PX;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 150px;
    position: relative;
    opacity: 0;
}

.timeline-item.left {
    flex-direction: row;
}

.timeline-item.right {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 1;
    font-size: 160px;
    font-weight: bold;
    line-height: 138px;
    text-align: center;
    position: relative;
    background: url('../images/about-us-page/text-bg.webp') no-repeat;
    background-size: cover  !important;
    background-position: bottom !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Makes the text show the image */
    background-clip: text;
    color: transparent;
}

.timeline-content {
    flex: 1;
    padding: 0px;
}

.timeline-item.left .timeline-content {
    text-align: left;
    margin-top: -20px;
    PADDING-LEFT: 80px;
}
.timeline-item.left .timeline-year{
    text-align: right;
     margin-top: -20px;
    padding-right: 80px;
}
.timeline-item.right .timeline-year{
    text-align: left;
     padding-left: 60px;
     margin-top: -20px;
}
.timeline-item.right .timeline-content {
    text-align: right;
    padding-right: 60px;
     margin-top: -20px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid #333;
    border-radius: 50%;
    z-index: 10;
}

.timeline-title {
    font-size: 25px;
    font-weight: bold;
    color:#000;
    margin-bottom: 10px;
}

.timeline-description {
    font-size: 14px;
    color: #5F6A75;
    font-weight: 400;
    line-height: 1.6;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #5F6A7566;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    z-index: 5;
}
.timeline-icon i{
    color: var(--heading-navy-blue);
    font-size: 16px;
}
.timeline-item:last-of-type{
    margin-bottom: 0;
}
@media (max-width: 768px){
    .timeline-item.left .timeline-content {
    text-align: left;
    margin-top: -50px;
    PADDING-LEFT: 0px;
}
.timeline-item.left .timeline-year{
    text-align: right;
     margin-top: -50px;
    padding-right: 0px;
}
.timeline-item.right .timeline-year{
    text-align: left;
     padding-left: 0px;
     margin-top: -50px;
}
.timeline-item.right .timeline-content {
    text-align: right;
    padding-right: 0px;
     margin-top: -50px;
}
.timeline-container {
    padding: 0 20px;
}

.timeline-line {
    left: 30px;
}

.timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    margin-bottom: 80px;
    padding-left: 60px;
}

.timeline-item.left,
.timeline-item.right {
    flex-direction: column !important;
}

.timeline-year {
    font-size: 50px;
    text-align: left;
    margin-bottom: 15px;
}

.timeline-content {
    padding: 0 !important;
    text-align: left !important;
}

.timeline-item.left .timeline-content,
.timeline-item.right .timeline-content {
    padding: 0 !important;
    text-align: left !important;
}

.timeline-icon {
    left: 30px;
    width: 30px;
    height: 30px;
    font-size: 16px;
}

.timeline-title {
    font-size: 16px;
}

.timeline-description {
    font-size: 13px;
}
    .timeline-line {
    left: 50px;
}
}

/* TIMELINE CSS END  */
/* Globe css  */
.globe_about-us{
    background:#EEF5FF ;
}
.flag-grid{
    padding-top: 30px;
}
.globe img {
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.globe-container {
    width: 100%;
    height: 500px;
    position: relative;
}

#globe {
    display: block;
    margin: 0;
    width: 100%;
    height: 100%;
}

.globe-container text {
    font-family: 'Graphik';
    fill: white;
    font-size: 12px;
    text-anchor: middle;
    pointer-events: none;
    text-shadow: 1px 1px 2px black;
}
.flag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.flag-box {
     flex: 0 0 45%;
}
.flag-box img{
    width:100%;
}
/* ABOUT US PAGE CSS END  */

/* Product PAGE css  START */
.service_page.about_us::before{
    background: transparent !important;
}
/* precision-turned-conponents css STARTS  */
.key-feature-main{
    background:#EEF6FF;
}
.visible_text_keyfeature h3{
    font-size: 16px;
}
.key-feature-box {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column;
    justify-content: start;
    align-items: start;

    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #E8E8E8;
}
.visible_text_keyfeature {
  display: flex;
  gap: 10px;
  flex-direction: column;  
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease-in-out;
}
.visible_text_keyfeature img{
    width: 50px;
}
.visible_text_keyfeature p{
    font-size: 15px;
    margin-bottom: 5px;
}
.key_feature_slider{
    padding-bottom: 60px !important;
}
.hoveron_key_text p{
    font-size: 15px;
}
/* APPLICATION CSS STARTS  */

.hoverbox .hovertext {
    padding: 15px;
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 55%, rgba(255, 255, 255, 0) 100%);
    bottom: 0;
    transform: translate(0, calc(100% - 60px));
    transition: all .3s ease-in-out;
    z-index: 1;
}
.hoverbox {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.hoverbox:hover .hovertext {
    transform: translate(0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 10%, rgb(24 24 24 / 58%) 65%, rgba(255, 255, 255, 0) 100%);
}
.hoverbox .hovertext p {
    opacity: 0;
    transition: all .3s ease-in-out;
}
.hoverbox:hover .hovertext p {
    opacity: 1;
}
.hoverbox .hoverimage img {
    transform: scale(1.2);
    transition: all .3s ease-in-out;
}
.hoverbox:hover .hoverimage img {
    transform: scale(1);
}
.hoverbox:before {
     content: ''; 
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgb(0 0 0 / 30%) 44%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    top: 0;
}
.hoverbox h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff !important;
    margin-bottom: 15px;
    text-shadow: 2px 4px 12px #000000;
}
.hoverbox p {
    font-size: 14px;
    font-weight: 400;
    text-align: justify;
    text-shadow: 2px 4px 12px #000000;
}
.application_main .col-md-4,
.application_main .col-md-6 {
    padding-top: calc(var(--bs-gutter-x) * .5);
    padding-bottom: calc(var(--bs-gutter-x) * .5);
}

/* OFFER CSS */
.offers_main{
    background: var(--bg-color);
}
.offer-box{
    background: var(--bs-white);
    padding: 40px;
    border: 1px solid#E8E8E8;
    border-radius: 10px;
    height: 100%;
}
.offer-box ul{
    margin: 0;
    padding: 0;
}
.offer-box img{
    position: absolute;
    left: 0;
    top: 5px;
}
.offer-box ul li{
    padding-bottom: 20px;
    list-style: none;
    color: #5F6A75;
    position: relative;
    padding-left: 25px;
}
.offer-box ul li:last-child{
    padding-bottom: 0 !important;
}
/* precision-turned-conponents css END  */
/* CNC PRODUCT  */
/* dynamic gallery - masonry grid */
.masonry-gallery {
    columns: 2;
    column-gap: 1rem;
}
.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
}
.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.masonry-item img:hover {
    transform: scale(1.05);
}
.hidden-image {
    display: none;
}
.more-accordion {
    overflow: hidden;
    transition: max-height 0.4s ease;
    display: none;
}
/* quick-release-coupling-manufacturers css  */
.detail-box{
    height: 100%;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 16px;
    border:1px solid#E8E8E8
}
.detaile-img img{
    border-radius: 16px 16px 0  0;
}
.detail-box .offer-box{
    padding: 20px ;
    height: auto;
    border: none;
}
.quality-gallery .masonry-gallery{
    columns: 3 183px;
    column-gap: 1rem;
}
/* CNC Auto Parts Product- Page  */


/* Product PAGE css  END */

/* CONTACT CSS START  */
.capcha-text {
    padding-bottom: 38px !important;
}
.capcha-label {
    position: absolute;
    top: 34px;
    left: 0;
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}
.cmn-form{
    position: relative;
}
.contactdata p {
    color: var(--subheading-color);
}
.contactdata ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}
.contactdata ul li a,
.contactdata ul li p {
    color: #5C5C5C;
    font-weight: 600;
}
.contactdata ul li a:hover {
    color:#063978;
}
.form_wrapp {
    border: 1px solid #E4E4E4;
    background: #FFFFFF7D;
    backdrop-filter: blur(3px);
    border-radius: 8px;
}
.cravingdiv {
    background-position: bottom center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: var(--bg-color);
    background-image: var(--bg-image);
}

.form-control{
    height: 50px;
}
textarea.form-control{
    height: 120px;
}
.contact-us-list.footer-contact-list  ul li a{
    font-size: 16px !important;
    line-height: 27px;
}
.content-box-white {
    border: 1px solid#376bae59;
    border-radius: 12px; /* your radius */
    background: #fff; /* background of the box */
}
.componets-box{
    background: #F6F6F6;
    padding: 40px 20px;
    border-radius: 12px;
    border: 1px solid#376bae59;
}
.cta-without-img .home_cta_bg{
    height: 100%;
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	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;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.my-float{
	margin-top:16px;
}
.thankyou-text img{
    width: 600px;
}