@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');



/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #462918; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #C52F37; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #C52F37; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #c42d36f2; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #3b3b3b; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #C52F37; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f8f4f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #6f6f6f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #898989;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Raleway", sans-serif;
}

a {
  color: #C52F37;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, #C52F37, transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #C42D36;
  font-family: "Raleway", sans-serif;
}

p{
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
  width: 30%;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 40px;
  margin: 0;
  font-weight: 300;
  color: var(--heading-color);
}


.search-head {
    width: 70%;
    display: flex;
    justify-content: flex-end;
    margin-right: 55px;
}


/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #abababd9;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu */
.moblogo img{
  width: 65%;
  padding: 15px;
}
.mobile-nav-toggle {
  color: var(--nav-color);
  position: fixed;
  top: 23px;
  right: 125px;
  font-size: 32px;
  line-height: 0;
  cursor: pointer;
  display: block !important;
  z-index: 998;
  transition: 0.3s;
}

.mobile-nav-toggle:hover {
  color: #ffffff;
}

.navmenu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -300px;
  z-index: 997;
  transition: 0.3s;
  width: 300px;
  overflow: hidden;
}

.navmenu ul {
  display: block;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 998;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-dropdown-color);
  padding: 10px 20px;
  font-family: var(--nav-font);
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.navmenu .menuscroolcls .innermenusect ul li a{
  font-size: 14px;
  padding: 5px 10px;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  /* background-color: color-mix(in srgb, #C52F37, transparent 90%); */
  background-color: color-mix(in srgb, #505050, #00000057 90%);
}

.navmenu a i:hover,
.navmenu a:focus i:hover {
  background-color: #C52F37;
  color: var(--contrast-color);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: #000;
}

.navmenu .active i,
.navmenu .active:focus i {
  background-color: #C52F37;
  color: var(--contrast-color);
  transform: rotate(180deg);
}

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 10px 0;
  margin: 10px 20px;
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.navmenu .dropdown>.dropdown-active {
  display: block;
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--nav-dropdown-color), transparent 90%);
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav-toggle {
  right: 15px;
  font-size: 36px;
  top: 13px;
}

.mobile-nav-active .navmenu {
  position: fixed;
  overflow: hidden;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: var(--nav-mobile-background-color);
  transition: 0.3s;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #C52F37;
  border-top-color: color-mix(in srgb, #C52F37, transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #C52F37;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #C52F37, transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 180px 0 120px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* .hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 300;
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--heading-color);
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: #C52F37;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 40px;
  margin: 30px 0 0 0;
  border-radius: 50px;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, #C52F37 90%, white 15%);
} */

/* @media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
} */



/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

/* -- Search-bar Start -- */
.search-bar {
  /* margin-left: 42%; */
}

.search-bar .input-group {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.search-bar .form-control {
    border: none;
    padding-left: 20px;
    border-right: 2px solid #d7d7d7;
}

.search-bar .btn {
    border: none;
    padding: 10px 20px;
}
.search-addonbtnn{
  background: #ffffff;
}
.search-addonbtnn:hover{
  background: #6C757D; 
}


@media(max-width: 768px) {
  .mobile-nav-toggle{
    right: 20px;
  }
  .search-head{
    display: none;
  }
  .header .logo img {
    max-height: 40px;
  }
}

@media(max-width: 480px) {
  .mobile-nav-toggle{
    right: 20px;
  }
  .search-head{
    display: none;
  }
  .header .logo img {
    max-height: 35px;
  }
  .what-we-do-heading p{
    padding: 5px !important;
  }
  .productHeadingTest p {
    text-align: center !important;
  }
  .testimonial-card{
    padding: 16px !important;
  }

}
/* -- Search btn End -- */

.contctbtncls{
  border-radius: 80px;
  background-color: #C52F37;
  color: #ffffff;
  margin-left: 10px;
  padding: 10px 20px;
  font-size: 15px;
}
.contctbtncls:hover {
  background-color: #b71c1c;
  color: white;
}  


/* ---- Counter Strt ---- */
.stats-wrapper {
  display: flex;
  overflow: hidden;
  max-width: 90%;
  margin: 0 auto;
  background: white;
  border-radius: 25px;
  margin-top: -70px;
  z-index: 1;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  flex-wrap: wrap; /* Allows wrapping for smaller screens */
}

.stats-left {
    display: flex;
    flex: 1;
    background: #fff;
    align-items: center;
    justify-content: space-around;
    padding: 20px 0;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 15px 20px;
    position: relative;
    min-width: 150px;
}

.stat-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background: #ccc;
}

.stat-number {
    font-size: 50px;
    font-weight: 100;
    color: #333;
    font-family: "Lexend", sans-serif;
}
.stat-number strong {
    font-weight: 600;
}
.stat-label {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #333;
    line-height: 22px;
}

.stats-right {
    background: linear-gradient(90deg, #C42D36, #C42D36);
    color: white;
    padding: 20px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 220px;
    border-radius: 22px;
}

.stats-right .top-text {
    font-size: 25px;
    font-weight: 200;
    text-transform: uppercase;
    font-family: "Lexend", sans-serif;
}
.stats-right .big-text {
    font-size: 50px;
    font-weight: 800;
    font-family: "Lexend", sans-serif;
    margin: -16px 0;
}
.stats-right .bottom-text {
    font-size: 25px;
    font-weight: 200;
    text-transform: uppercase;
    font-family: "Lexend", sans-serif;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .stat-number {
        font-size: 40px;
    }
    .stat-label {
        font-size: 16px;
    }
    .stats-right {
        min-width: 180px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .stats-wrapper {
        flex-direction: column;
        align-items: center;
        border-radius: 15px;
    }
    .stats-left {
        flex-direction: column;
        border-bottom: 1px solid #ccc;
    }
    .stat-box {
        padding: 10px 0;
    }
    .stat-box:not(:last-child)::after {
        display: none;
    }
    .stats-right {
        width: 100%;
        border-radius: 0 0 15px 15px;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 30px;
    }
    .stat-label {
        font-size: 14px;
    }
    .stats-right .top-text,
    .stats-right .bottom-text {
        font-size: 18px;
    }
    .stats-right .big-text {
        font-size: 35px;
    }
}

/* ---- Counter End ---- */

.who-we-areinner-heading h1{
    font-size: 55px;
    font-weight: 800;
    text-align: center;
    color: #C42D36;
}
.who-we-areinner-heading h6{
    word-spacing: 12px;
    text-align: center;
    color: #565656;
}
.who-we-areinner-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

/* -- Button Start -- */
  .know-more-btn {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    background-color: #C42D36;
    /* overflow: hidden; */
    position: relative;
}
  .know-more-btn:hover{
    color: #fff;
  }

  .know-more-btn .text {
    padding: 7px 25px;
  }

  .know-more-btn .arrow-box {
    background-color: #444;
    position: absolute;
    right: -16px;
    height: 26px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

  .know-more-btn:hover .arrow-box {
    transform: translateX(5px);
  }

  .know-more-btn .arrow {
    border: solid white;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
  }
/* -- Button End -- */

/* -- Button what we do Start -- */
  .whatwedobtncls {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    background-color: #C42D36;
    position: relative;
    left: 35px;
    top: -16px;
}
  .whatwedobtncls:hover{
    color: #fff;
  }

  .whatwedobtncls .text {
    padding: 7px 25px;
  }

  .whatwedobtncls .arrow-box {
    background-color: #444;
    position: absolute;
    right: -16px;
    height: 26px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

  .whatwedobtncls:hover .arrow-box {
    transform: translateX(5px);
  }

  .whatwedobtncls .arrow {
    border: solid white;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
  }
/* -- Button what we do End -- */

.what-we-do-heading h2{
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  color: #C42D36;
}
.what-we-do-heading p{
  padding: 0px 130px;
  text-align: center;
}
.what-we-do-boxes1 img{
  width: 30%;
  padding: 0 0 18px 0;
}
.what-we-do-boxes2 img{
  width: 30%;
  padding: 0 0 18px 0;
}
.what-we-do-boxes3 img{
  width: 30%;
  padding: 0 0 18px 0;
}
.what-we-do-boxes1 {
  background-image: url('../img/what_we_do/bg1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  border-radius: 25px;
}
.what-we-do-boxes2 {
  background-image: url('../img/what_we_do/bg2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  border-radius: 25px;
}
.what-we-do-boxes3 {
  background-image: url('../img/what_we_do/bg3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  border-radius: 25px;
}
.headingtextdo h5 {
  font-weight: 800;
  color: #565656;
}
.what-we-do-heading {
    margin-bottom: 50px;
}


.productHeadingTest p{
  text-align: end;
}
.productHeading h2{
  color: #565656;
}
.productHeading h3{
  color: #C42D36;
  font-weight: 700;
  font-size: 37px;
  line-height: 20px;
}

/* --- Footer Start --- */
.footer {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 40px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-nav a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  position: relative;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #C42D36;
}

.footer-nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #ccc;
}

.footer-right {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 35px;
  height: 35px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.social-icon:hover {
  background: #c42d36;
  color: #fff;
}

/* Responsive Styles */
@media(max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
  }
  .footer-left {
    flex-direction: column;
    gap: 15px;
  }
  .footer-nav {
    gap: 15px;
  }
  .footer-nav a:not(:last-child)::after {
    display: none;
  }
}

@media(max-width: 480px) {
  .footer-logo img {
    height: 30px;
  }
  .footer-nav a {
    font-size: 13px;
  }
  .social-icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}
/* --- Footer End --- */


/* --- Product Range Start --- */
.productHeading{
  margin-bottom: 50px;
}
.productRangCls {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Common card style */
.card-products {
    background: #F5F5F5;
    border-radius: 30px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(25% - 15px);
    min-width: 200px;
    position: relative;
}

.card-products img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 10px;
}

.title {
  font-size: 35px;
  font-weight: 800;
  color: #585858;
  position: absolute;
  line-height: 32px;
}

/* Special widths for desktop */
.air-coolers {
    flex: 1 1 calc(60% - 15px);
}
.fan {
    flex: 1 1 calc(40% - 15px);
}
.iron{
    flex: 1 1 calc(33.333% - 15px);
}
.mixer {
    flex: 1 1 calc(33.333% - 15px);
}
.heater {
    flex: 1 1 calc(33.333% - 15px);
}

/* Tablet view */
@media (max-width: 768px) {
    .air-coolers,
    .fan,
    .iron,
    .mixer,
    .heater {
        flex: 1 1 calc(50% - 15px);
    }
}

/* Mobile view */
@media (max-width: 480px) {
    .air-coolers,
    .fan,
    .iron,
    .mixer,
    .heater {
        flex: 1 1 100%;
    }
}
/* --- Product Range End --- */

.leadership-team-heading{
  text-align: center;
}
.leadership-team-heading h2{
  font-size: 45px;
  font-weight: 800;
}
.leadership-team-heading h3{
  font-size: 35px;
  font-weight: 400;
  color: #565656;
}

.clientname{
  text-align: center;
}
.clientimg img{
  width: 100%;
}
.clientname h4{
  font-size: 25px;
  font-weight: 700;
  line-height: 15px;
  padding: 20px 0 0;
}
.clientname h6{
  font-size: 14px;
  color: #565656;
}
.clientTestimonialsHeading{
  text-align: center;
}
.clientTestimonialsHeading h2{
  color: #979797;
  font-size: 32px;
  font-weight: 400;
}
.clientTestimonialsHeading h3{
  color: #444;
  font-size: 34px;
  font-weight: 800;
}

.clientTestimonials img{
  width: 100%;
}


/* --- Testimonial Start --- */
.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 35px;
  margin: 20px;
  /* box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05); */
  /* border-left: 4px solid #C42D36; */
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 1px solid #ebebeb;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.stars {
  color: #C42D36;
  font-size: 18px;
}

.rating {
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
}

.testimonial-text {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 35px;
  height: 35px;
  background: #ccc;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.name-texts {
  font-weight: bold;
  color: #000;
}

/* Swiper pagination styling */
.swiper-pagination-bullet {
  background: #C42D36;
}

/* Arrow color */
.swiper-button-next,
.swiper-button-prev {
  color: #C42D36;
}
.swiper-wrapper {
  transition-timing-function: ease-in-out !important;
}
.innertesticards{
  border-left: 2px solid #C42D36;
  padding: 0 20px
}
/* --- Testimonial End --- */


/* ========= */
.maininnersect {
    flex: 1;
    background: url('../img/bg-form.png');
    color: white;
    background-position: center center;
    /* padding: 75px; */
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
    background-repeat: no-repeat;
    background-size: contain;
    height: 610px;
}

.formtextform {
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 3px -18px 31px -7px #e1e1e1;
}
/* ========= */


/* -- Form Start -- */
.formlastside {
    max-width: 1000px;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    border-radius: 12px;
    overflow: hidden;
}
.leftSide h3{
    font-size: 35px;
    color: #fff;
    font-weight: 300;
}
.leftSide h2{
    font-size: 40px;
    color: #fff;
    font-weight: 700;
}
.leftSide {
    flex: 1;
    /* background: url('../img/bg-form.png') no-repeat center center/cover; */
    color: white;
    padding: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.leftSide h2 span {
    font-weight: bold;
}
.leftSide p {
    font-size: 14px;
    line-height: 1.5;
    max-width: 300px;
    margin-bottom: 30px;
}
.location {
    margin-top: 30px;
    font-size: 16px;
}
.location i {
    margin-right: 8px;
}
.rightSide {
    flex: 1;
    padding: 30px;
    background: white;
}
.rightSide h3 {
    font-size: 14px;
    margin-bottom: 15px;
    color: #666;
}
.form-group {
    margin-bottom: 15px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}
.form-group textarea {
    resize: none;
    height: 100px;
}
.checkbox {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-bottom: 15px;
    color: #222;
}
.checkbox input {
    margin-right: 8px;
    accent-color: #c42d36;
}
.formtextAdd1{
  display: flex;
  align-items: flex-end;
}

@media(max-width: 768px) {
    .formlastside {
        flex-direction: column;
    }
    .leftSide, .rightSide {
        flex: 100%;
    }
    .leftSide {
        text-align: center;
        padding: 20px;
        background: #C42D36;
    }
    .formtextAdd1{
      display: block;
    }
    .maininnersect{
      background: none;
    }
}


@media (max-width: 480px) {
  .maininnersect{
    height: 811px;
  }
}
/* -- Form End -- */


/* -------- Contact Us Start ----------- */
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}
/* -------- Contact Us End ----------- */


/* -------- About Us Start ----------- */
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 40%);
}

.about .content .section-heading {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .about .content .section-heading {
    font-size: 2rem;
  }
}

.about .content .lead-text {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--default-color);
}

.about .content .description-text {
  font-size: 1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 576px) {
  .about .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
}

.about .stats-grid .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 200;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about .stats-grid .stat-item .stat-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--heading-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about .cta-section .cta-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 400;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about .cta-section .cta-link:hover {
  color: var(--heading-color);
  transform: translateX(5px);
}

.about .cta-section .cta-link i {
  transition: transform 0.3s ease;
}

.about .cta-section .cta-link:hover i {
  transform: translateX(5px);
}

.about .image-section {
  position: relative;
}

.about .image-section .main-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .image-section .main-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.about .image-section .main-image:hover img {
  transform: scale(1.02);
}

.about .image-section .floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 768px) {
  .about .image-section .floating-badge {
    bottom: -15px;
    right: -15px;
    padding: 1rem;
  }
}

.about .image-section .floating-badge .badge-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about .image-section .floating-badge .badge-content i {
  font-size: 2rem;
  color: var(--accent-color);
}

.about .image-section .floating-badge .badge-content .badge-text .badge-title {
  display: block;
  font-weight: 500;
  color: var(--heading-color);
  font-size: 1rem;
  line-height: 1.2;
}

.about .image-section .floating-badge .badge-content .badge-text .badge-subtitle {
  display: block;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 300;
}

@media (max-width: 992px) {
  .about .content {
    margin-bottom: 3rem;
  }

  .about .image-section .floating-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 2rem;
    display: inline-block;
  }
}


/* =========================================== */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  /* box-shadow: 0 6px 15px rgba(0,0,0,0.1); */
  transition: transform 0.3s ease;
  background: #fff;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}

/* .team-info {
  padding: 15px;
  background: #f7f7f7;
} */

.team-info h3 {
  margin: 10px 0 5px;
  font-size: 20px;
  color: #B00020;
  font-weight: bold;
}

.team-info p {
  margin: 0;
  font-size: 14px;
  color: #444;
}

/* Hover content */
.team-hover {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(176, 0, 32, 0.95);
  color: #fff;
  padding: 25px;
  text-align: left;
  transition: top 0.4s ease;
  overflow-y: auto;
}

.team-card:hover .team-hover {
  top: 0;
}

.team-hover p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.team-hover h4 {
  margin-top: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
/* ----- */

.mainAll_heading h2{
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  padding-bottom: 30px;
}
.mainAll_heading-white h2{
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  padding-bottom: 30px;
  color: #fff;
}
.innerResarch{
  padding: 25px;
  text-align: center;
  border-radius: 10px;
}
.bgcolordev1{
  background: #f1f1f1;
  /* transition: background 0.3s ease; */
}
.bgcolordev2{
  background: #d9d9d9;
}
.bgcolordev3{
  background: #bfbfbf;
}
.bgcolordev4{
  background: #a6a6a6;
}
.innerResarch:hover{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.innerResarch img{
  width: 90px;
  padding-bottom: 18px;
}
.innerResarch h6{
  color: #444;
  font-size: 15px;
  line-height: 22px;
}

/* -- Quality Control Strat -- */
/* Hero */
.quality-hero{
  background: linear-gradient(135deg,#172f3b 0%, #8b1f25 45%, #C42D36 100%);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.quality-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient( circle at 10% 20%, rgba(255,255,255,0.03), transparent 15%),
              radial-gradient( circle at 90% 80%, rgba(255,255,255,0.02), transparent 12%);
  pointer-events: none;
}

.quality-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(2,6,23,0.35);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
}

.quality-title{
  font-weight:800;
  letter-spacing: -0.5px;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  margin-bottom: .5rem;
  color: #fff;
}

.quality-sub{
  font-weight:600;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  opacity: .95;
  margin-bottom: .75rem;
}

.quality-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.quality-list li{
  display:flex;
  gap: .75rem;
  align-items:flex-start;
  padding: .5rem 0;
  line-height:1.2;
}
.quality-list .icon-wrap{
  min-width:38px; height:38px; display:grid; place-items:center; border-radius:8px; background:rgba(255,255,255,0.08);
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.06);
  font-size:1.05rem;
}

/* small accent underline */
.accent-underline{display:inline-block; height:6px; width:100%; max-width:140px; border-radius:4px; background: linear-gradient(90deg,#f67b11, #C42D36); margin-top:.5rem}

/* animation */
.fade-up{transform:translateY(16px); opacity:0; transition: all 650ms cubic-bezier(.2,.9,.2,1);}
.fade-up.is-visible{transform:none; opacity:1}

/* responsive spacing */
@media (min-width: 992px){
  .quality-hero{padding:6rem 0}
  .quality-card{padding:3rem}
}

.imgclasaboutcss img{
  width: 100%;
  border-radius: 10px;
}
/* -- Quality Control End -- */

/* -- Our Core Values Start --  */
.core-values-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 50px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Neumorphism Effect */
.core-value-card {
  background: #f5f5f5;
  padding: 21px;
  border-radius: 20px;
  box-shadow: 8px 8px 16px #d1d9db, -8px -8px 16px #ffffff;
  transition: all 0.3s ease-in-out;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.core-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 25px #d1d9db, -8px -8px 25px #ffffff;
}

.core-value-card .core-value-icon {
  font-size: 60px;
  color: #e60012;
  margin-bottom: 20px;
  transition: transform 0.3s ease-in-out;
}

.core-value-card:hover .core-value-icon {
  transform: rotate(15deg);
}

.core-value-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.core-value-card p {
  font-size: 16px;
  color: #777;
  line-height: 1.6;
}

/* Flexbox Layout for Staggered Order */
.core-values-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.core-values-row .core-value-item {
  width: 22%;
  margin: 15px;
}

/* Media Queries for responsiveness */
@media (max-width: 767px) {
  .core-values-section {
    padding: 50px 20px;
  }

  .core-values-title {
    font-size: 32px;
  }

  .core-value-card {
    padding: 25px;
  }

  .core-value-card .core-value-icon {
    font-size: 50px;
  }

  .core-values-row .core-value-item {
    width: 45%; /* Two items per row on small screens */
    margin: 15px 0;
  }
}
/* -- Our Core Values End -- */
/* -------- About Us End ----------- */


/* ----- Product Page Start ----- */
.product-detail {
    padding: 80px 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../img/bg5.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.heading-main span {
    font-size: 18px;
    font-weight: 600;
}
.display-detail {
    display: flex;
    margin: 15px 0px;
}
.image-outer img {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: 3px solid #fcdde5bd;
}
.detail-icn {
    height: 30px;
    width: 30px;
    margin-right: 15px;
}
/* .image-outer {
    margin-top: -40px;
} */
 .productContbtn{
  padding-top: 50px;
 }
.prodtDetlscss li{
  font-weight: 700;
  display: flex;
  align-items: center;
}
.headingpadding{
  padding-left: 30px;
}
.headingpadding h2{
  font-weight: 700;
  /* text-transform: uppercase; */
}
/* ----- Product Page End ----- */

.menuscroolcls ul{
  height: 350px;
  /* overflow: scroll; */
}
.innermenusect ul{
    height: auto;
}

.whyusSectimg img{
  width: 100%;
}


.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* title upar, button niche */
}

@media only screen and (max-width: 600px) {
  .heading-main.mb-4.aos-init.aos-animate.headingpadding {
    margin-top: 35px;
}
}
@media only screen and (max-width: 1024px) {
  .search-head {
    margin-right: 128px;
}
}
@media only screen and (max-width: 1440px) {
  .search-head {
      margin-right: 110px;
}
.leftSide{
  margin-left: 85px;
}
}

/* -- Whatsapp Btn Start -- */
.float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 70px;
  right: 14px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  
  /* Animation */
  animation: pulse 1.5s infinite;
}
.floatCall{
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 70px;
  left: 20px;
  background-color: #3a72eb;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 25px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  padding-top: 9px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* .my-float{
  margin-top: 13px;
} */
/* -- Whatsapp Btn End -- */


/* -- Register Product Start -- */
.registration-wrapper {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.registration-wrapper h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.registerProduct {
  margin-bottom: 20px;
}

.registerProduct label {
  display: block;
  margin-bottom: 6px;
  color: #555;
}

.registerProduct input[type="text"],
.registerProduct input[type="email"],
.registerProduct input[type="tel"],
.registerProduct input[type="date"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.registerProduct.terms {
  display: flex;
  align-items: center;
}

.registerProduct.terms input[type="checkbox"] {
  margin-right: 8px;
}

.submitBtn {
  width: 100%;
  padding: 12px;
  background: #c52f37;
  color: white;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submitBtn:hover {
  background: #a1282e; /* darker shade */
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 480px) {
  .registration-wrapper {
    margin: 20px 10px;
    padding: 20px;
  }
}
/* -- Register Product End -- */


/* -- Raise Service Request Start -- */
.serviceRequest-wrapper {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.serviceRequest-wrapper h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.serviceRequest-block {
  margin-bottom: 20px;
}

.serviceRequest-block label {
  display: block;
  margin-bottom: 6px;
  color: #555;
}

.serviceRequest-block input[type="text"],
.serviceRequest-block input[type="email"],
.serviceRequest-block input[type="tel"],
.serviceRequest-block input[type="date"],
.serviceRequest-block select,
.serviceRequest-block textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.serviceRequest-block textarea {
  resize: vertical;
}

.serviceRequest-terms {
  display: flex;
  align-items: center;
}

.serviceRequest-terms input[type="checkbox"] {
  margin-right: 8px;
}

/* Button Styling */
.serviceRequest-btn {
  width: 100%;
  padding: 12px;
  background: #c52f37;
  color: white;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.serviceRequest-btn:hover {
  background: #a1282e;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 480px) {
  .serviceRequest-wrapper {
    margin: 20px 10px;
    padding: 20px;
  }
}

/* -- Raise Service Request End -- */

/* about manufacturer css */
.manufacturing{
  padding: 45px 0px;
}
.manufacturing-card{
  background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),url('../img/about-bg.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 10px 0px;
  height: 300px;
  border: 1px solid rgb(230, 229, 229);
}
.manufacturing-card:hover{
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.manufacturing-icn{
  height: 70px;
  width: 70px;
}
.manufacturing-card-text{
  font-weight: 500;
}
@media screen and (min-width: 625px) and (max-width: 768px) {
  .manufacturing-card{
    height: 290px;
  }
  .manufacturing-card-text{
    font-size: 15px;
  }
}
@media screen and (min-width: 1020px) and (max-width: 1024px) {
  .manufacturing-card-text{
    font-size: 15px;
  }
  .manufacturing-card{
    height: 300px;
  }
}


/* ---- Timeline Start ----- */
.main-timeline-section {
      position: relative;
      width: 100%;
      /* margin: 60px auto; */
      padding: 30px 0;
      overflow: hidden;
    }

    .conference-center-line {
      position: absolute;
      width: 100%;
      height: 5px;
      top: 50%;
      transform: translateY(-50%);
      background: #F2635F;
      left: 0;
      z-index: 1;
    }

    .timeline-track {
      display: flex;
      align-items: center;
      gap: 100px;
      animation: scrollTimeline 25s linear infinite;
      position: relative;
      z-index: 2;
    }

    @keyframes scrollTimeline {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .timeline-article {
      position: relative;
      min-width: 240px;
      flex-shrink: 0;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .content-box {
      background: #fff;
      border: 2px solid #F2635F;
      border-radius: 10px;
      box-shadow: 0 3px 6px rgba(0,0,0,0.1);
      width: 220px;
      height: 200px; /* Equal height */
      padding: 15px;
      display: flex;
      flex-direction: column;
      justify-content: center; /* Center vertically */
      align-items: center; /* Center horizontally */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .content-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }

    .content-date {
      font-weight: bold;
      color: #F2635F;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .content-box p {
      margin: 0;
      font-size: 13px;
      color: #333;
      line-height: 1.4em;
    }

    /* Hover pause effect */
    .main-timeline-section:hover .timeline-track {
      animation-play-state: paused;
    }

    @media (max-width:768px){
      .timeline-track { animation: scrollTimeline 15s linear infinite; }
      .content-box { width: 180px; height: 180px; font-size: 12px; }
    }

    .timelineSliderabtCls{
      background-color: #f1f1f1;
      padding: 40px 0;
    }
/* ---- Timeline End ---- */

.certimgcls img{
  width: 100%;
}
.uspclasimg img {
    width: 100%;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.machineimg img {
    width: 100%;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}




@media only screen and (min-width: 1517px) {
.leftSide{
      padding-left: 216px;
}
}

.bottomcontcls{
  margin-top: 40px;
}
.headH3{
  font-weight: 700;
  padding: 30px 0 10px 0;
}