*{
  font-family: "Poppins", sans-serif;
}
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:active,
:hover,
:focus {
    outline: 0 !important;
    outline-offset: 0;
}

a,
a:hover {
    text-decoration: none;
}

a:hover {
    color: var--primary-color !important;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

body {
  padding: 0 !important;
}
/*====variable define==*/
:root {
    --primary-color: #FF5757;
    --white-color : #FFFFFF ;
    --text-color: #222222 ;
    --black-color: #000000 ;
}
/* General reset and base styles */
body, html {
  padding: 0 !important;
  margin: 0 !important;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

/* Custom Navbar */
/* --- CUSTOM NAVBAR (COMPLETELY REWRITTEN) --- */
.custom-navbar {
    min-height: 70px; /* Changed from height to min-height to allow expansion */
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050; /* Higher z-index to stay above all elements */   
    font-weight: 500;
    font-size: 16px;
    background-color: transparent;
    transition: background-color 0.3s ease, padding 0.3s ease;
    overflow: visible !important; /* Critical: Allows menu to be seen when expanded */
    display: flex;
    align-items: center;
}

.section-padding-top-bottom{
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Scrolled State */
.custom-navbar.scrolled {
    background-color: #173859 !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

/* Centering and Spacing */
.custom-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px; /* Added padding to prevent edge touching */
}

/* Logo Sizing */
.custom-navbar .navbar-brand img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: none;
}

/* Desktop Links */
.custom-navbar .navbar-nav .nav-link {
    color: #ffffff !important;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}

.custom-navbar .navbar-nav .nav-link:hover,
.custom-navbar .navbar-nav .nav-link.active {
    color: #d83929 !important;
}

/* --- MOBILE SPECIFIC FIXES (≤ 991px) --- */

/* Hamburger Toggler Icon Visibility */
.custom-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5) !important;
    padding: 6px;
}

.custom-navbar .navbar-toggler-icon {
    filter: brightness(0) invert(1) !important; /* Forces black icon to white */
}

@media (max-width: 991.98px) {
    /* Prevent options from going outside the background */
    .navbar-collapse {
        background-color: #173859; /* Brand Navy Blue */
        width: 100%;
        position: absolute;
        top: 100%; /* Sits exactly below the navbar header */
        left: 0;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        max-height: 80vh; /* Prevents menu from exceeding screen height */
        overflow-y: auto; /* Allows scrolling inside menu if options are many */
        border-bottom: 3px solid #d83929; /* Brand Red accent */
    }

    .custom-navbar .navbar-nav {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .custom-navbar .navbar-nav .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }

    .custom-navbar .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    /* Adjust logo for mobile */
    .custom-navbar .navbar-brand img {
        height: 40px;
    }
}

/* --- DROPDOWNS --- */
.custom-navbar .dropdown-menu {
    background-color: #173859;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.custom-navbar .dropdown-item {
    color: #fff !important;
    padding: 10px 20px;
}

.custom-navbar .dropdown-item:hover {
    background-color: #d83929;
}

/* Hero Carousel */

.hero-carousel {
  position: relative;
  height: 110vh !important; /* increased height */
  min-height: 850px ;
  color: #fff;
  padding-left: 0 !important;
  padding-right: 0 !important;
  filter: brightness(2); 
}

.carousel-item img,
.carousel-item video {
  height: 110vh !important;
  min-height: 850px;
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Smooth fade effect */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.7s;
  transition-timing-function: ease;
}

.carousel-fade .carousel-item.active {
  opacity: 1 !important;
}

.carousel-indicators{
    bottom: 140px;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 800px;
  width: 90%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.explore-btn {
  background-color: #d83929;
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  border: none;
  font-size: 1.15rem;
  display: inline-flex;F
  align-items: center;
  box-shadow: 0 2px 10px rgba(216, 57, 41, 0.1);
  transition: background 0.2s;
  text-decoration: none !important;
}

.explore-btn:hover {
  background-color: #b22c1b;
  color: #fff;
}

.carousel-indicators button {
  background-color: #d83929;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
}
.carousel-control-prev,
.carousel-control-next {
  display: none !important;
}

.carousel-indicators .active {
  background-color: #b22c1b;
}
.hero-content h1 {
 font-size: 2.5rem; /* or 32px */
font-weight: 500; /* medium */
margin-bottom: 1rem;
}

.hero-content p {
font-size: 1.25rem; /* or 18px */
 font-weight: 500; /* medium */
 margin-bottom: 2rem;
}
/* This removes the ghost indicators created by Bootstrap 5 pseudo-elements */
.carousel-indicators [data-bs-target]::before,
.carousel-indicators [data-bs-target]::after {
    content: none !important;
    display: none !important;
}

.carousel-indicators button {
    background-color: #b9b9b9 !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    border: none !important; /* Removes default hit-area borders */
    margin: 0 5px !important;
    opacity: 0.5;
}

.carousel-indicators .active {
    background-color: #b22c1b !important;
    opacity: 1 !important;
}


    /* --- ABOUT US SECTION (SCOPED) --- */
/* --- ABOUT US SECTION (SCOPED) --- */
.about-us-outer {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    /* Decreased top padding from 80px to 30px */
    padding: 10px 0 80px 0; 
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.about-section {
    position: relative;
    width: 100%;
}

/* Background Art */
.about-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35%;
    max-width: 760px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

.about-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 30px;
    gap: 60px;
}

/* --- Left Side: Experience Block --- */
.experience-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: 320px;
}

.exp-top-row {
    display: flex;
    align-items: center;
    margin-bottom: -30px; /* Overlap effect */
    z-index: 2;
}

.exp-img-small {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(216, 57, 41, 0.1);
}

.exp-text {
    margin-left: 15px;
}

.exp-number {
    font-size: 32px;
    font-weight: 700;
    color: #d83929;
    display: block;
    line-height: 1;
}

.exp-label {
    font-size: 15px;
    font-weight: 400;
    color: #333;
    line-height: 1.2;
}

.exp-img-main {
    width: 85%;
    max-width: 320px;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-left: 50px;
    z-index: 1;
}

/* --- Right Side: Content Block --- */
.about-content {
    flex: 1.2;
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.section-title span {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #d83929;
}

.about-heading {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-desc {
    font-size: 16px;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.about-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #222;
    margin-bottom: 14px;
}

.list-icon {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    flex-shrink: 0;
}

.learn-btn {
    background-color: #d83929;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.learn-btn:hover {
    background-color: #b22c1b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(216, 57, 41, 0.2);
}

/* --- MEDIA QUERIES --- */
@media (max-width: 1100px) {
    .about-container { gap: 30px; }
    .about-heading { font-size: 28px; }
}

@media (max-width: 992px) {
    /* Decreased top padding for mobile/tablets as well */
    .about-us-outer { padding: 10px 0 60px 0; }
    .about-container { flex-direction: column; text-align: center; }
    .about-bg { display: none; }
    .experience-block { align-items: center; margin-bottom: 40px; }
    .exp-top-row { justify-content: center; }
    .exp-img-main { margin-left: 0; }
    .section-title { justify-content: center; }
    .about-list li { justify-content: center; }
}

@media (max-width: 576px) {
    .exp-img-small { width: 160px; height: 110px; }
    .exp-number { font-size: 24px; }
    .about-heading { font-size: 24px; }
    .about-desc { font-size: 15px; }
    .learn-btn { width: 100%; justify-content: center; }
}

 /*our expertise*/
.custom-what-we-offer {
  width: 100%;
  min-height: 710px;
  position: relative;
  background: #fff;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}
.custom-what-we-offer .offer-hero-bg {
  width: 100%;
  height: 460px;
  object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 0; left: 0;
}
.custom-what-we-offer .offer-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 60px;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.custom-what-we-offer .expertise-group {
  max-width: 48%;
  min-width: 320px;
}
.custom-what-we-offer .expertise-row {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 2px;
}
.custom-what-we-offer .expertise-row img {
  width: 16px; height: 16px; margin-right: 8px;
}
.custom-what-we-offer .offer-title {
  font-size: 28px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  margin-bottom: 18px;
}
.custom-what-we-offer .paragraph-group {
  max-width: 46%;
  min-width: 260px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.custom-what-we-offer .offer-paragraph {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  font-family: 'Poppins', regular;
  margin-bottom: 0;
  margin-left: 36px;
  max-width: 500px;
}
.custom-what-we-offer .boxes-row {
  position: absolute;
  left: 50%;
  top: 310px;
  transform: translateX(-50%);
  z-index: 3;
  width: 1162px;
  max-width: 98vw;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  background: none;
  padding: 0;
  margin-bottom: 25px; /* Decreased space below boxes */
}
.custom-what-we-offer .offer-box {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(60,72,88,0.10);
  transition: box-shadow 0.3s cubic-bezier(.25,.8,.25,1), transform 0.3s cubic-bezier(.25,.8,.25,1);
  cursor: pointer;
  position: relative;
  height: 300px; /* Box height set */
  border: 1px solid rgb(209, 209, 209);
}
.custom-what-we-offer .offer-box:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(60,72,88,0.20);
  z-index: 2;
}
.custom-what-we-offer .offer-icon {
  width: 48px; height: 48px; margin-bottom: 12px;
  color: #d83929;
}
.custom-what-we-offer .box-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}
.custom-what-we-offer .offer-arrow {
  margin-top: 18px;
  background: #f4f7fa;
  color: #222;
  border: none;
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background 0.2s, color 0.2s;
}
.custom-what-we-offer .offer-arrow:hover {
  background: #eee; color: #ed6c02;
}

    /*industry*/
  :root {
  --primary-color: #d83929; /* Professional Blue */
  --secondary-color: #6c757d; /* Gray for text */
  --heading-color: #212529;
  --accent-color: #f8f9fa;
  --transition-speed: 0.3s;
}

/* Section Spacing */
.industry-section {
  padding: 80px 0;
  background-color: #ffffff;
  overflow-x: hidden; /* Prevents AOS horizontal scroll issues */
}

/* Typography Refinement */
.industry-section__main-heading {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--heading-color);
  border-left: 5px solid var(--primary-color);
  padding-left: 20px;
}

/* The "Vertical Heading" Label */
.industry-section__vertical-heading {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--primary-color);
  background: var(--accent-color);
  padding: 10px 25px;
  border-radius: 50px;
  display: inline-block;
  border: 1px solid rgba(0, 86, 179, 0.1);
}

/* Paragraph Styling */
.industry-section__paragraph p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

/* Image Interaction */
.industry-section__image-wrapper {
  position: relative;
  transition: transform var(--transition-speed) ease;
}

.industry-section__image {
  max-width: 100%;
  height: auto;
  /* Soft shadow to make the "Wheel" pop */
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.industry-section__image-wrapper:hover {
  transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .industry-section {
    padding: 60px 0;
  }
  
  .industry-section__main-heading {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .industry-section__vertical-heading {
    margin-bottom: 30px;
  }
}

    /*Numbers*/
  .custom-stats-section {
      background-color: #f8fafc;
      padding-top: 3rem;
      padding-bottom: 3rem;
    }
    .custom-stats-card-wrapper {
      position: relative;
      max-width: 400px;
      margin: 1.5rem auto 0;
      padding-top: 2.5rem;
    }
    .icon-circle {
      position: absolute;
      top: -5px;
      left: 50%;
      transform: translateX(-50%);
      width: 70px;
      height: 70px;
      background-color: #fff;
      border-radius: 50%;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      border: 1px solid #f8e5e5;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      overflow: hidden;
    }
    .custom-stats-section .icon-circle img {
      
  width: 100%;
  height: 100%;
  object-fit: cover; /* or contain, depending on how you want the image to fit */
  display: block;
  border-radius: 50%;
}
    .custom-stats-card {
      background: #fff;
      box-shadow: 0 16px 48px rgba(60,72,120,0.18);
      border-radius: 8px;
      height: 12rem;
      padding: 1.5rem 1.5rem 1.3rem 1.5rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
      border: 1px solid rgb(209, 209, 209);
    }
    .stat-number {
      font-family: 'Raleway', sans-serif;
      font-size: 30px;
      font-weight: 800;
      color:#d83929;
      margin-bottom: 0.2rem;
      letter-spacing: 0.02em;

      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }
    .stat-number .number-value {
      line-height: 1;
    }
    .stat-number .plus-sign {
      font-size: 10px;
      line-height: 1;
     
      user-select: none;
    }
   .plus-sign {
  font-size: 2rem !important;
  color: #d83929!important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

    .stat-label {
      font-family: 'Poppins', sans-serif;
      font-size: 1.125rem;
      font-weight: 400;
      color: #363636;
      margin-bottom: 0;
      letter-spacing: 0.02em;
    }
    
    .custom-stats-section .icon-circle img {
  width: 48px;   /* desired width */
  height: 48px;  /* desired height */
  object-fit: contain; /* ensures image scales nicely */
}
  /* --- WHY CHOOSE US SECTION (SCOPED) --- */
.full-width-background {
    background: #0D1C39;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.why-section {
    width: 100%;
    display: flex;
    flex-wrap: wrap; /* Allows stacking on mobile */
    align-items: stretch;
    background: #0D1C39 !important;
    color: #fff;
    padding: 0;
}

/* --- Left Side: Content --- */
.why-left {
    flex: 1 1 500px; /* Minimum width of 500px on desktop */
    padding: 60px 5% 60px 6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-tag {
    color: #d83929;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-tag img {
    width: 20px;
    height: 20px;
}

.why-heading {
    font-size: clamp(26px, 3.5vw, 34px); /* Scales font based on screen size */
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #e67852;
    transform: translateY(-5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.feature-desc {
    color: #c9d5e1;
    font-size: 14px;
    line-height: 1.5;
}

/* CTA Styles */
.why-cta {
    margin-top: 20px;
    font-size: 17px;
}

.why-cta a {
    color: #d83929;
    font-weight: 700;
    margin-left: 8px;
    text-decoration: none !important;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.why-cta a:hover {
    border-bottom: 2px solid #d83929;
    text-decoration: none !important;
}

/* --- Right Side: Image (Fixed for Small Devices) --- */
.why-right {
    flex: 1 1 500px;
    min-height: 600px; /* Strong height on desktop */
    overflow: hidden;
}

.why-img {
    width:auto;
    height: 100%;
    object-fit: cover; /* Prevents stretching */
    display: block;
}

/* --- MEDIA QUERIES (MOBILE FIXES) --- */

@media (max-width: 992px) {
    .why-section {
        flex-direction: column; /* Stacks image above text */
    }

    .why-right {
        order: -1; /* Image appears first on mobile */
        flex: 1 1 100%;
        min-height: 450px; /* Large image visibility */
        width: 100%;
    }

    .why-left {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .why-heading {
        font-size: 24px;
    }
    
    .why-right {
        min-height: 400px; /* Maintains large image size on tablets */
    }
}

@media (max-width: 576px) {
    .why-right {
        min-height: 350px; /* Final size for small phones */
    }

    .features-grid {
        grid-template-columns: 1fr; /* Single column for features */
    }

    .why-left {
        padding: 40px 20px;
    }

    .why-cta {
        font-size: 15px;
        text-align: center;
    }
}



    /*products*/
     /* --- Products Section Container --- */
.products-section {
  background: linear-gradient(105deg, #fefefe 50%, #f7f7f7 50%);
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* Header Responsiveness */
.products-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  gap: 20px;
}

.products-title-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.products-header-tag {
  font-size: 16px;
  font-weight: 600;
  color: #d83929;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.products-title {
  font-size: 30px;
  font-weight: 700;
  color: #222;
  margin-top: 6px;
}

/* Carousel Structural Fixes */
.carousel-v12 {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.carousel-v12-slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-v12-slide {
  min-width: 100%;
  display: flex;
  gap: 20px;
  padding: 10px;
}

/* Product Card Styling */
.product-card {
  flex: 1; /* Ensures equal width */
  background: white;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

/* Navigation Dots */
.carousel-v12-nav {
  text-align: center;
  margin-top: 30px;
}

.carousel-v12-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-v12-dot.active {
  background-color: #EB6753;
  width: 24px; /* Pill effect for active dot */
  border-radius: 10px;
}

/* --- Responsive Breakpoints --- */

@media (max-width: 992px) {
  .products-title { font-size: 26px; }
  .product-image { height: 180px; }
}

@media (max-width: 768px) {
  .products-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .learn-btn { width: 100%; justify-content: center; }

  /* Show 2 cards instead of 3 on tablets */
  .carousel-v12-slide .product-card:nth-child(3) {
    display: none;
  }
}

@media (max-width: 576px) {
  .products-title { font-size: 22px; }
  
  /* Show only 1 card on mobile */
  .carousel-v12-slide .product-card:nth-child(2) {
    display: none;
  }
  
  .product-card { padding: 15px; }
  .product-image { height: 200px; }
}



      /*Manufacturing*/
      .manufacturing-section {
  width: 100%;
  height: 420px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.manufacturing-section__image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.72);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.manufacturing-section__gradient {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.13) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.manufacturing-section__content {
  position: relative;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  z-index: 3;
}

.manufacturing-section__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px !important;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.manufacturing-section__subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px !important;
  color: #e6e6e6;
  margin-bottom: 1.5rem;
}

.manufacturing-section__explore-btn {
  background-color: #eb6753;
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  border: none;
  font-size: 1.15rem;
  box-shadow: 0 2px 10px rgba(235, 103, 83, 0.1);
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.manufacturing-section__explore-btn:hover {
  background-color: #c65343;
  color: #fff;
  text-decoration: none;
}

.manufacturing-section__explore-text {
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

.manufacturing-section__explore-arrow {
  display: inline-flex;
}


/* --- TESTIMONIAL SECTION (SCOPED) --- */
/* --- TESTIMONIAL SECTION (FIXED 1200px WIDTH) --- */
.testimonial-slider {
    font-family: 'Poppins', sans-serif;
    
    /* WIDTH CONSTRAINT: Limits background and content to 1200px */
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;    /* Centers the 1200px block on the page */
    
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;  /* Essential: Makes sliding contained to 1200px */
    box-sizing: border-box;
    border-radius: 20px; /* Optional: adds a nice curve to the 1200px box */
}

.testimonial-slider h2 {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.testimonial-slider .subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

/* Hidden Radio Logic for Pure CSS Sliding */
.testimonial-slider input[type="radio"] {
    display: none;
}

/* --- Slides Container --- */
.testimonial-slider__slides {
    display: flex;
    width: 300%; /* Represents 3 slide groups */
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-slider__slide {
    width: 33.333%; /* 100% of the 1200px parent */
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between the cards */
    padding: 10px 15px; /* Creates gaps between the slide groups */
    box-sizing: border-box;
}

/* --- Testimonial Card Styling --- */
.testimonial-slider__box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 40px 30px;
    flex: 1; /* Boxes share the 1200px space equally */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.testimonial-slider__box:hover {
    transform: translateY(-5px);
}

.testimonial-slider__box .quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    color: #EB6753;
    opacity: 0.15;
}

.testimonial-slider__pic {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f4ebea;
    margin-bottom: 15px;
}

.testimonial-slider__text {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-slider__meta {
    font-weight: 700;
    color: #0D1C39;
    font-size: 16px;
}

.testimonial-slider__meta span {
    font-weight: 400;
    color: #EB6753;
    font-size: 13px;
    text-transform: uppercase;
}

/* --- CSS Slide Logic --- */
#tslide1:checked ~ .testimonial-slider__slides { transform: translateX(0%); }
#tslide2:checked ~ .testimonial-slider__slides { transform: translateX(-33.333%); }
#tslide3:checked ~ .testimonial-slider__slides { transform: translateX(-66.666%); }

/* --- Navigation Dots --- */
.testimonial-slider__nav {
    margin-top: 40px;
}

.testimonial-slider__nav label {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 8px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Active Pill Dot */
#tslide1:checked ~ .testimonial-slider__nav label[for="tslide1"],
#tslide2:checked ~ .testimonial-slider__nav label[for="tslide2"],
#tslide3:checked ~ .testimonial-slider__nav label[for="tslide3"] {
    background: #EB6753;
    width: 35px;
    border-radius: 10px;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 991px) {
    .testimonial-slider__box:nth-child(3) { display: none; }
}

@media (max-width: 767px) {
    .testimonial-slider__box:nth-child(2) { display: none; }
    .testimonial-slider { padding: 50px 0; }
}




/*client*/
/* Client Section General Styles */
.client-section {
  width: 100%;
  background: #fff;
  padding: 60px 0;
  text-align: center;
}
/* Centering the content and limiting width to 1200px */
.client-section .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Side padding for mobile responsiveness */
}
.client-title {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.client-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px; /* Constrain text width for better readability */
  margin-left: auto;
  margin-right: auto;
  color: #666;
}

/* Ticker Core Logic */
.ticker-wrapper {
  overflow: hidden;
  width: 100%;
  background: #ffffff;
  padding: 20px 0;
  position: relative;
}

.ticker-move {
  display: flex;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
}

.ticker-move:hover {
  animation-play-state: paused; /* Optional: pauses on hover */
}

.client-logo-box {
    background: #fff;
  border: none; /* Optional: adds subtle definition */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  width: 250px; /* Slightly adjusted to fit better in 1200px */
  margin-right: 40px;
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.client-logo-box img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  display: block;
}
.client-logo-box:hover {
  transform: translateY(-5px); /* Adds a nice interactive lift effect */
}
/* Seamless Loop Animation */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


  /*whatsapp*/

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: background-color 0.3s ease;
  }
  .whatsapp-float:hover {
    background-color: #1ebe57;
  }
  .whatsapp-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

 /* --- FOOTER COLUMN STYLING --- */
.footer {
    color: rgba(255, 255, 255, 0.6);
}

/* Increases spacing between Quick Link items */
.footer .btn-link.footer-link {
    text-align: left !important;
    display: flex;
    align-items: center;
    padding: 0;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
}

.footer .btn-link.footer-link:hover {
    color: #EB6753 !important;
    
}

/* Ensure the Map/Phone icons align nicely with text */
.footer i.fa {
    color: #EB6753;
    flex-shrink: 0; /* Makes icons match your accent color */
}

/* Adjustments for Column Spacing on Large Screens */
@media (min-width: 992px) {
    .footer .row.gx-lg-5 {
        --bs-gutter-x: 5rem; /* Forces a very wide gap between columns */
    }
}


/*About page css*/
/* Custom CSS for the Hero Section */
/* --- Hero Section & Background --- */
.hero-wrap {
  width: 100%;
  height: 500px; /* Base desktop height */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-wrap .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Important: Fills container height */
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 48, 0.55);
  z-index: 2;
}

.hero-wrap .container {
  position: relative;
  z-index: 3;
  text-align: center;
}

/* --- Typography & Colors --- */
.hero-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 38px; /* Large desktop font */
  color: #EB6753 !important; /* Specific requested color */
  line-height: 1.1;
}

/* --- Breadcrumb Customization --- */
.breadcrumb {
  display: flex;
  justify-content: left; /* Center items horizontally */
  background: transparent;
  padding: 0;
  margin: 0;
}

/* Custom Divider styling */
.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: white; /* White divider color */
  padding: 0 10px; /* Space around divider */
}

/* --- Media Queries for All Devices --- */

/* Tablets & Medium Screens */
@media (max-width: 991.98px) {
  .hero-wrap {
    height: 400px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
}

/* Mobile Devices */
@media (max-width: 575.98px) {
  .hero-wrap {
    height: 320px; /* Shorter height for mobile */
  }
  .hero-title {
    font-size: 2.2rem; /* Scaled font size */
  }
  .breadcrumb-item, .breadcrumb-item a {
    font-size: 0.9rem;
  }
}





/*About us section*/
/* Typography */
.about-building-section {
  font-family: 'Poppins', sans-serif;
  padding-top: 40px !important;
  padding-bottom: 10px !important;
  background-color: transparent;
  max-width: 1140px;
  margin: 0 auto;
  box-sizing: border-box;
}

.about-building-section .about-label {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #d83929;
  text-transform: uppercase;
}

.about-building-section .display-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 12px;
}

.about-building-section .about-copy {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #2a2b2c;
  padding-top: 12px;
  margin-bottom: 16px;
}

.rounded-40 {
  border-radius: 40px !important;
}

/* CEO Speech Styling */
.ceo-speech-section {
  background-color: #eeeefe;
}

.ceo-speech-section .section-title {
  color: #222;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.ceo-description {
  color: #222;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

/* Image Stack Handling */
.image-stack-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  left: 3rem;    
}

.building-image {
  border-radius: 0.25rem;
  width: 100%;
  display: block;
}

.overlay-image {
  position: absolute;
  width: 200px; /* Reduced slightly for better overlap */
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 0.5rem;
  border: 1px solid #ebebeb;
  z-index: 5;
}

/* --- Responsive Adjustments --- */
/* Custom Desktop Padding for Text Column */
@media (min-width: 992px) {
  .ps-lg-custom {
    padding-left: 70px !important; /* Adjust this value (e.g., 80px to 120px) as needed */
  }
}

/* Maintain Section Styling */
.ceo-speech-section {
  background-color: #eeeefe;
}

.ceo-description {
  color: #222;
  font-family: 'Poppins', sans-serif; /* Per your preferred typography [memory:4] */
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

/* Tablets & Mobile Screens */
@media (max-width: 991px) {
  .image-stack-wrapper {
    margin-top: 40px;
    margin-left: 40px; /* Offset to make room for absolute overlay */
  }
  
  .overlay-image {
    width: 160px;
    left: -40px; /* Bring it closer on small screens */
  }
}

/* Very Small Mobile */
@media (max-width: 575px) {
  .ceo-speech-section .section-title {
    font-size: 22px;
  }
  
  .image-stack-wrapper {
    max-width: 100%;
    margin-left: 0;
  }

  .overlay-image {
    position: relative; /* Remove overlap on tiny screens if it blocks content */
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    margin-top: 20px;
  }
}





.bg-main {
  background: #104260;
}
/*What Sets Us Apart*/
.set-apart-section {
  font-family: 'Poppins', sans-serif;
  padding: 80px 20px;
  background: transparent;
  max-width: 1140px;
  margin: 0 auto;
  box-sizing: border-box;
}

.set-apart-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
  margin-bottom: 40px;
  text-align: center;
  padding-bottom: 50px;
}

.set-apart-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
}

.set-apart-image {
  flex-basis: 50%;
  max-width: 50%;
  text-align: center;
  padding-left: 20px;
}

.set-apart-img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 18px;
}

.set-apart-content {
  flex-basis: 50%;
  max-width: 50%;
  margin-top: 30px;
}

.set-apart-paragraph {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #000;
}
.set-apart-paragraph {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  border-radius: 12px;
  padding: 12px 16px;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  color: #000000;
  background-color: transparent !important;
  margin-bottom: 1rem;
}

.set-apart-paragraph:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}
/* Specifically targeting the bold labels in the "What Sets Us Apart" section */
.set-apart-paragraph strong {
  font-size: 19px; /* Increased from the default 16px paragraph size */
  font-weight: 700; /* Ensuring it stands out clearly */
  display: inline-block; /* Helps with spacing */
  margin-right: 2px;
  color: #000000; /* Optional: matches your brand blue for better visual hierarchy */
}

/* Optional: Adding a small space or distinct look to the colon */
.set-apart-paragraph strong::after {
  content: " ";
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #152435!important;
}



  /* our process */
  body, .process-label, .main-heading, .main-heading-bold, .main-paragraph, .section-title, .desc-paragraph {
    font-family: 'Poppins', sans-serif;
    color: #fff;
  }
  .process-label {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .main-heading {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .main-paragraph, .desc-paragraph {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #fff;
  }
  .section-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
  }
  .feature-img {
    width: 457px;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    max-width: 100%;
  }
  .vision-card {
    background: #ea684b;
    border-radius: 24px;
    color: #fff;
  }


   /* --- MANUFACTURING CAPABILITIES SECTION (SCOPED) --- */
.manufacturing-capabilities-section {
    font-family: 'Poppins', sans-serif;
    background-color: transparent !important;
    overflow: hidden;
}

/* Heading & Typography */
.manufacturing-heading {
    font-size: 32px; /* Responsive sizing */
    font-weight: 700;
    line-height: 1.25;
    color: #222;
    background-color: transparent !important;
}

.manufacturing-capability-title {
    font-size: 19px;
    font-weight: 700;
    color: #0D1C39; /* Brand Navy */
    background-color: transparent !important;
}

.manufacturing-capability-text {
    font-size: 14px;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    background-color: transparent !important;
}

/* Icons */
.number-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background-color: transparent !important;
}

/* --- Image Stack Container --- */
.manufacturing-image-stack {
    position: relative;
    width: 100%;
    margin-top: 80px; /* Space to accommodate the overlapping top image */
    background-color: transparent !important;
}

/* Large Background Image */
.manufacturing-image-large {
    width: 100%;
    height: auto;
    aspect-ratio: 535 / 430; /* Maintains original layout proportions */
    object-fit: cover;
    border-radius: 18px;
    position: relative;
    z-index: 1;
    display: block;
    background-color: transparent !important;
}

/* Small Overlapping Top Image */
.overlay-img {
    width: 55%; /* Percentage based for mobile scaling */
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    position: absolute;
    top: 0;
    right: 0;
    /* Adjusts the "Pop-out" effect based on percentage */
    transform: translate(10%, -35%); 
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 6px solid #fff; /* Separation from the large image */
    background-color: transparent !important;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

@media (max-width: 1200px) {
    .overlay-img { transform: translate(5%, -30%); }
}

@media (max-width: 991.98px) {
    .manufacturing-heading {
        text-align: center;
        margin-bottom: 30px !important;
    }
    
    .manufacturing-image-stack {
        max-width: 500px;
        margin: 80px auto 40px auto; /* Centers the image stack on tablet/mobile */
    }

    .manufacturing-capability-title {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .manufacturing-heading {
        font-size: 24px;
    }

    .manufacturing-image-stack {
        margin-top: 60px;
        max-width: 100%;
    }

    /* Reduce overlap on mobile so image doesn't go off-screen */
    .overlay-img {
        width: 50%;
        transform: translate(0, -25%);
        border-width: 4px;
    }

    .manufacturing-capability-text {
        font-size: 13px;
    }
}


    /*certification*/
   /* Keep previous styles unchanged */
  .cert-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -1px;
  }
  .cert-subheading {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
  }
  .cert-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 2px 12px rgba(23,56,89,0.07);
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  }
  .cert-card:hover {
    box-shadow: 0 8px 28px rgba(23,56,89,0.14), 0 0 0 2px #173859;
    transform: translateY(-6px) scale(1.02);
  }
  .cert-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #222;
  }
  .cert-card-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #444;
    flex-grow: 1;
  }
  .cert-card img {
  max-width: 100%;
  height: auto;
  width: auto; /* or set a fixed width like 120px if needed */
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
  .cert-btn {
    font-family: 'Poppins', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  padding: 6px 24px !important;
  background-color: #EB6753 !important;
  color: #fff !important;
  border: none !important;
  transition: box-shadow 0.2s, background-color 0.2s !important;
  text-decoration: none !important;
  display: inline-block !important;
  text-align: center !important;
  visibility: visible;
  opacity: 1;
  position: relative;
  z-index: 10;
  }
  .cert-btn:hover,
.cert-btn:focus {
  background-color: #d45545 !important;
  box-shadow: 0 1px 8px rgba(235, 103, 83, 0.7) !important;
  color: #fff !important;
  text-decoration: none !important;
}
.certifications-section,
.cert-card
 {
  background-color: transparent !important;
  /* or use background-color: #fff; if you want white */
}

/*Contact us page*/
  /* --- Base Contact Styling --- */
.contact-section {
  font-family: 'Poppins', sans-serif;
  min-height: 750px;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.contact-content-row {
  min-height: 750px;
  padding: 60px 0;
}

/* --- Typography --- */
.contact-label {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 2px;
  color: #EB6753;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.label-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.contact-head {
  font-weight: 600;
  font-size: 36px;
  color: #0e0e0e;
  line-height: 1.2;
}

.contact-desc {
  font-size: 16px;
  color: #1f1f1f;
  max-width: 480px;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* --- Info List Styling --- */
.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.bg-icon {
  background: #EB6753;
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.bg-icon img {
  width: 40px;
  height: 40px;
}

.info-title {
  font-weight: 600;
  font-size: 20px;
  color: #0e0e0e;
}

.info-text {
  font-size: 16px;
  color: #1f1f1f;
  white-space: pre-line;
}

/* --- Form Card Styling --- */
.contact-form-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 40px;
  width: 100%;
  max-width: 500px;
}

.form-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.form-input {
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 16px;
  transition: 0.3s;
}

.form-input:focus {
  border-color: #EB6753;
  outline: none;
}

.submit-btn {
  width: auto;
  background: #EB6753; /* Changed to solid for responsiveness */
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #d45644;
  transform: translateY(-2px);
}

/* --- Responsive Media Queries --- */
@media (max-width: 991px) {
  .contact-section, .contact-content-row {
    height: auto;
    min-height: auto;
  }
  .contact-head {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .contact-form-card {
    padding: 25px 20px;
  }
  .info-title {
    font-size: 18px;
  }
}

/*map*/
.location-section {
  font-family: 'Poppins', sans-serif;
  width: 100% !important;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.location-section.container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 auto; /* or margin: 0; for full edge */
}
.location-title {
  font-weight: 600;
  font-size: 28px;
  color: #0e0e0e;
}

.location-address {
  font-size: 1.1rem;
  color: #1f1f1f; /* dark color for visibility */
}

.map-container {
  width: 100% !important;
  height: 500px;
  min-height: 320px;
  margin-top: 0 !important;
  background-color: transparent !important; /* ensure no background */
}

.ratio {
  height: 500px;
  background-color: transparent !important; /* ensure transparent */
}




/*facilities page*/
/*machining setup */
 /* Scoped styles for machining setup section */
  #machiningSetupSection {
    width: 100%;
    max-width: 1187px;
    height: 670px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }

  #machiningSetupSection .setup-heading {
    font-weight: 600; /* Poppins semibold */
    font-size: 32px;
    color: #0e0e0e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  #machiningSetupSection .setup-text {
    font-weight: 400; /* Poppins regular */
    font-size: 16px;
    color: #1f1f1f;
    line-height: 1.6;
    text-align: justify;
  }

  #machiningSetupSection .setup-image {
    width: 100%; 
    width: 535px;
    height: 502px;
    object-fit: cover;
    border-radius: 8px;
    
  }


   /*category of machine*/
  body {
      background: #fff;
  
      

    }
  /*  .container {
      max-width: 90vw;
      margin: 40px auto;
    }*/
    .bg-dark-blue {
      background-color: #ffffff !important;
      color: #000000 !important;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      text-align: center;
    }
    .accordion .card {
  margin-bottom: 20px; /* Adjust gap size as needed */
  margin-bottom: 20px;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  cursor: default !important;
  transition: none !important;
}
.accordion .card:hover,
.accordion .card:focus,
.accordion .card:active {
  background: transparent !important;
  box-shadow: none !important;
}
   #accordion1 .table {
   width: 100%;
  border-collapse: separate !important;
  border-spacing: 14px 18px;
  margin: 0;
  background: transparent;
  font-family: 'Poppins', sans-serif;
}
.accordion-button {
  padding: 0 1.5rem;
  height: 56px;
  font-weight: 700;
  font-size: 20px;
  border: none;
  background-color: #173859 !important;
  color: white !important;
  text-align: left;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  cursor: default !important;
  box-shadow: none !important;
  transition: none !important;
  outline: none !important;
}
.accordion-button:hover,
.accordion-button:focus,
.accordion-button:active,
.accordion-button:not(.collapsed),
.accordion-button.collapsed {
  background-color: #173859 !important; /* No color change */
  color: white !important;               /* No color change */
  box-shadow: none !important;
  outline: none !important;
  cursor: default !important;
  transition: none !important;
}
.accordion-button:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
.accordion-button::after {
  filter: brightness(0) invert(1);
  transition: none !important;
}
#accordionMachineCategories > .card:first-of-type,
#accordionMachineCategories > .card:first-of-type:hover,
#accordionMachineCategories > .card:first-of-type:focus,
#accordionMachineCategories > .card:first-of-type:active {
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
  cursor: default !important;
  transition: none !important;
  outline: none !important;
}
.collapsed .accordion-button::after {
  transform: rotate(-90deg);
  transition: none !important;
}
#accordionMachineCategories > .card:first-of-type *,
#accordionMachineCategories > .card:first-of-type:hover *,
#accordionMachineCategories > .card:first-of-type:focus *,
#accordionMachineCategories > .card:first-of-type:active * {
  box-shadow: none !important;
  border: none !important;
}

#accordionMachineCategories > .card:first-of-type::before,
#accordionMachineCategories > .card:first-of-type::after,
#accordionMachineCategories > .card:first-of-type:hover::before,
#accordionMachineCategories > .card:first-of-type:hover::after {
  content: none !important;
  display: none !important;
}

/* Top header row (blue, all caps, white) */
#accordion1 thead tr th {
  background: #132033 !important;
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  text-align: center;
  border: none !important;
  padding: 16px 8px;
  letter-spacing: 0.02em;
}


#accordion1 tbody td:first-child {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  padding-left: 20px !important;
  white-space: nowrap;
  border: none !important;
  vertical-align: middle;
  letter-spacing: 0.01em;
}
/* Row-specific background and text colors */

/* No. of Machines row */
#accordion1 tbody tr:nth-child(1) td {
  background-color: #fff !important;
  color: #000 !important;
}
#accordion1 tbody tr:nth-child(1) td:first-child {
  background-color: #fff !important;
  color: #000 !important;
}

/* Type of Machine row */
#accordion1 tbody tr:nth-child(2) td:first-child {
  background-color: #333d47 !important;
  color: #fff !important;
}
#accordion1 tbody tr:nth-child(2) td:not(:first-child) {
  background-color: #f1f2f6 !important;
  color: #000 !important;
}

/* Model row */
#accordion1 tbody tr:nth-child(3) td {
  background-color: #fff !important;
  color: #000 !important;
}

/* NO. OF AXES row */
#accordion1 tbody tr:nth-child(4) td:first-child {
  background-color: #333d47 !important;
  color: #fff !important;
}
#accordion1 tbody tr:nth-child(4) td:not(:first-child) {
  background-color: #f1f2f6 !important;
  color: #000 !important;
}

/* X-Axis mm row */
#accordion1 tbody tr:nth-child(5) td {
  background-color: #fff !important;
  color: #000 !important;
}

/* Y-Axis mm row */
#accordion1 tbody tr:nth-child(6) td:first-child {
  background-color: #333d47 !important;
  color: #fff !important;
}
#accordion1 tbody tr:nth-child(6) td:not(:first-child) {
  background-color: #f1f2f6 !important;
  color: #000 !important;
}

/* Z-Axis mm row */
#accordion1 tbody tr:nth-child(7) td {
  background-color: #fff !important;
  color: #000 !important;
}

/* Other Specification row */
#accordion1 tbody tr:nth-child(8) td:first-child {
  background-color: #333d47 !important;
  color: #fff !important;
}
#accordion1 tbody tr:nth-child(8) td:not(:first-child) {
  background-color: #f1f2f6 !important;
  color: #000 !important;
}

/* Controller row */
#accordion1 tbody tr:nth-child(9) td {
  background-color: #fff !important;
  color: #000 !important;
}

/* Purchase Date row */
#accordion1 tbody tr:nth-child(10) td:first-child {
  background-color: #333d47 !important;
  color: #fff !important;
}
#accordion1 tbody tr:nth-child(10) td:not(:first-child) {
  background-color: #f1f2f6 !important;
  color: #000 !important;
}

/* Type New/Old row */
#accordion1 tbody tr:nth-child(11) td {
  background-color: #fff !important;
  color: #000 !important;
}

/* MFG YEAR row */
#accordion1 tbody tr:nth-child(12) td:first-child {
  background-color: #333d47 !important;
  color: #fff !important;
}
#accordion1 tbody tr:nth-child(12) td:not(:first-child) {
  background-color: #f1f2f6 !important;
  color: #000 !important;
}

/* Remove borders and radius */
#accordion1 .table, #accordion1 .table th, #accordion1 .table td {
  border: none !important;
  border-radius: 0 !important;
}


    /* Reduce arrow button padding */
    .accordion-button {
      padding: 0 1.5rem;
      height: 56px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 20px;
      border: none;
      background-color: #173859;
      color: white;
      text-align: left;
      display: flex;
      width: 100%;
      justify-content: space-between;
      align-items: center;
    }
    .accordion-button:focus {
      outline: none;
      box-shadow: none;
    }
    .accordion-button svg {
      transition: transform 0.3s ease;
      stroke: #fff;
      stroke-width: 2;
      fill: none;
    }
    .collapsed .accordion-button svg {
      transform: rotate(-90deg);
    }





    /*2nd accordian*/
    #accordion2 .table {
  border-collapse: separate !important;
  border-spacing: 16px 14px;
  width: 100%;
  border: none !important;
}

#accordion2 thead th {
  background: #173859 !important;
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  padding: 18px 12px;
  border-radius: 6px;
  border: none !important;
}

#accordion2 thead tr th {
  background: #d32f2f !important; /* Red background for header row */
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  border: none !important;
  padding: 18px 12px;
  border-radius: 6px;
}

#accordion2 tbody tr.no-of-machines-row td:first-child  {
  background: #fff !important;
  color: #d32f2f !important; /* Red text for label */
  font-weight: 700 !important;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: left;
  padding-left: 16px;
}
#accordion2 tbody tr.no-of-machines-row td:not(:first-child){
  background: #fff !important;
  color: #000 !important;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: center;
}

#accordion2 tbody tr.type-of-machine-row td:first-child {
  background: #f1f2f6 !important;
  color: #d32f2f !important; /* Red text */
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: left;
  padding-left: 16px;
}
#accordion2 tbody tr.type-of-machine-row td:not(:first-child)  {
  background: #f1f2f6 !important;
  color: #000 !important;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: center;
}

#accordion2 tbody tr.make-row td:first-child  {
  background: #fff !important;
  color: #d32f2f !important; /* Red text */
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: left;
  padding-left: 16px;
}
#accordion2 tbody tr.make-row td:not(:first-child) {
  background: #fff !important;
  color: #000 !important;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: center;
}

#accordion2 tbody tr.model-row td:first-child  {
  background: #f1f2f6 !important;
  color: #d32f2f !important;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: left;
  padding-left: 16px;
}
#accordion2 tbody tr.model-row td:not(:first-child)  {
  background: #f1f2f6 !important;
  color: #000 !important;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: center;
}

#accordion2 tbody tr.no-of-axes-row td:first-child {
  background: #fff !important;
  color: #d32f2f !important;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: left;
  padding-left: 16px;
}
#accordion2 tbody tr.no-of-axes-row td:not(:first-child) {
  background: #fff !important;
  color: #000 !important;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: center;
}

#accordion2 tbody tr.x-axis-row td:first-child  {
  background: #f1f2f6 !important;
  color: #d32f2f !important;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: left;
  padding-left: 16px;
}
#accordion2 tbody tr.x-axis-row td:not(:first-child){
  background: #f1f2f6 !important;
  color: #000 !important;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: center;
}

#accordion2 tbody tr.y-axis-row td:first-child {
  background: #fff !important;
  color: #d32f2f !important;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: left;
  padding-left: 16px;
}
#accordion2 tbody tr.y-axis-row td:not(:first-child){
  background: #fff !important;
  color: #000 !important;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: center;
}

#accordion2 tbody tr.z-axis-row td:first-child {
  background: #f1f2f6 !important;
  color: #d32f2f !important;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: left;
  padding-left: 16px;
}
#accordion2 tbody tr.z-axis-row td:not(:first-child) {
  background: #f1f2f6 !important;
  color: #000 !important;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: center;
}

#accordion2 tbody tr.other-spec-row td:first-child {
  background: #fff !important;
  color: #d32f2f !important;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: left;
  padding-left: 16px;
}
#accordion2 tbody tr.other-spec-row td:not(:first-child)  {
  background: #fff !important;
  color: #000 !important;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: center;
}

#accordion2 tbody tr.type-new-old-row td:first-child  {
  background: #f1f2f6 !important;
  color: #d32f2f !important;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: left;
  padding-left: 16px;
}
#accordion2 tbody tr.type-new-old-row td:not(:first-child) {
  background: #f1f2f6 !important;
  color: #000 !important;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: center;
}

#accordion2 tbody tr.mfg-year-row td:first-child {
  background: #fff !important;
  color: #d32f2f !important;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: left;
  padding-left: 16px;
}
#accordion2 tbody tr.mfg-year-row td:not(:first-child) {
  background: #f1f2f6 !important;
  color: #000 !important;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: center;
}
  #accordion2 .table,
#accordion2 .table th,
#accordion2 .table td {
  border: none !important;
  box-shadow: none !important;
}

#accordion3 .table {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 14px 18px;
  margin: 0;
  background: transparent;
  font-family: 'Poppins', sans-serif;
}
#accordion3 thead tr th {
  background: #132033 !important;
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  text-align: center;
  border: none !important;
  padding: 16px 8px;
  letter-spacing: 0.02em;
}
#accordion3 tbody td:first-child, #accordion3 thead th:first-child {
  background: #333d47 !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700;
  text-align: left;
  padding-left: 20px !important;
  white-space: nowrap;
  border: none !important;
  letter-spacing: 0.01em;
  vertical-align: middle;
}
#accordion3 tbody td {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #202226 !important;
  background: #fff !important;
  text-align: center;
  border: none !important;
  vertical-align: middle;
  padding: 18px 8px;
}
#accordion3 tbody tr.grey-row td:first-child {
  background: #333d47 !important;
  color: #fff !important;
}
#accordion3 tbody tr.grey-row td:not(:first-child) {
  background: #f1f2f6 !important;
  color: #202226 !important;
}
#accordion3 tbody tr.white-row td,
#accordion3 tbody tr.white-row td:not(:first-child) {
  background: #fff !important;
  color: #202226 !important;
}
#accordion3 .table, #accordion3 .table th, #accordion3 .table td {
  border: none !important;
  border-radius: 0 !important;
}
/* Remove hover effect on accordion button */
.accordion-button,
.accordion-button:hover,
.accordion-button:focus,
.accordion-button:active,
.accordion-button:not(.collapsed),
.accordion-button.collapsed {
  background-color: #173859 !important;
  color: white !important;
  box-shadow: none !important;
  outline: none !important;
  cursor: default !important;
  transition: none !important;
}

/* Remove focus ring on accordion button */
.accordion-button:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* Remove hover effect on accordion card container */
.accordion .card,
.accordion .card:hover,
.accordion .card:focus,
.accordion .card:active {
  background-color: transparent !important;
  box-shadow: none !important;
  border-color: transparent !important;
  cursor: default !important;
  transition: none !important;
}

/* Remove hover effects on table rows and cells */
#accordion1 tbody tr:hover,
#accordion2 tbody tr:hover,
#accordion3 tbody tr:hover,
#accordion1 tbody td:hover,
#accordion2 tbody td:hover,
#accordion3 tbody td:hover {
  background-color: inherit !important;
  color: inherit !important;
  box-shadow: none !important;
  cursor: default !important;
  transition: none !important;
}

/* Remove pointer cursor from clickable elements */
.accordion-button,
.accordion .card,
#accordion1 tbody tr,
#accordion2 tbody tr,
#accordion3 tbody tr {
  cursor: default !important;
}


/*machine specification*/
/* Machine Specification Styling */
.machine-spec-wrapper {
  background-color: transparent;
  overflow: hidden;
}

.machine-spec-container {
  max-width: 1140px; /* Standard Bootstrap container width */
}

.machine-spec-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 20px;
  color: #0e0e0e;
}

.machine-spec-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1f1f1f;
  line-height: 1.7;
  margin: 0;
}

.machine-spec-img {
  max-width: 350px; /* Limits the size of the specific PNG image */
  height: auto;
  object-fit: contain;
}

/* --- Responsive Layout Adjustments --- */

/* Tablets (Medium devices) */
@media (max-width: 991.98px) {
  .machine-spec-heading {
    font-size: 24px;
  }
}

/* Mobile Devices (Small devices) */
@media (max-width: 767.98px) {
  .machine-spec-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .machine-spec-container {
    text-align: center; /* Center text on mobile */
  }

  .machine-spec-text {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .machine-spec-img {
    max-width: 250px; /* Smaller image for mobile screens */
  }
}



/*types of machine specification*/
.pec-section { 
  padding: 10px 10px;
  box-sizing: border-box;
  max-width: 1400px !important;/* increased from 1140px */
  margin: 0 auto;
}
.pec-section-title { 
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #0e0e0e;
  text-align: center;
  margin-bottom: 36px;
}
.pec-section .row.justify-content-center.g-4 {
  gap: 28px;
}
.pec-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(23, 56, 89, 0.08);
  width: 320px;         /* increased width */
  height: 420px;        /* increased height */
  display: flex;
  flex-direction: column;
  margin: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
  padding: 16px;
}

.pec-card-img {
  width: 100%;
  height: 400px;       /* slightly increased height */
  object-fit: cover;
  border-radius: 0px; /* keep rounded corners inside padding */
  display: block;
  margin-bottom: 12px; /* spacing below image */
}
.pec-card-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
  text-align: center;
  color: #173859;
}
.pec-card-specs {
  font-family: 'Poppins',sans-serif;
  font-size: 16px;
  color: #1f1f1f;
  text-align: left;
  margin-bottom: 6px;
}
.pec-section.pec-vertical-machining {
  margin-bottom: 60px;
  margin-top: 30px;
}
.pec-section.pec-cnc-turning {
  margin-top: 60px;
}        
/* Style nav items as rectangular boxes */
.nav-tabs .nav-item {
  margin: 0 10px; /* Creates gap between boxes horizontally */
   
}
.nav-tabs {
  border-bottom: none !important;
}
.nav-tabs .nav-link {
  width: 250px;        /* Set fixed width */
  height: 80px;        /* Set fixed height */
  line-height: 45px;   /* Center text vertically */
  border-radius: 0px;  /* Rounded corners for rectangles */
  background-color: #f0f0f0; /* Light grey background for inactive tabs */
  color: #333333;      /* Dark text for inactive tabs */
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #ccc !important;
  border-radius: 0.5rem !important;  
}

/* Active nav item style */
.nav-tabs .nav-link.active {
  background-color: #E03A3C !important; /* Orange background */
  color: #ffffff !important; /* White text */
  border-color: #E03A3C;      /* Optional: orange border for active */
   
}

/* Optional: hover effect for non-active tabs */
.nav-tabs .nav-link:not(.active):hover {
  background-color: #fbf2f0; /* lighter orange shade */
  color: #E03A3C;
}
.pec-flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 30px 15px;
  max-width: 1200px;
  margin: 0 auto;
  
}

.pec-text-side {
  flex: 1 1 45%;
  font-family: 'Poppins', sans-serif;
  color: #1f1f1f;
}

.pec-text-side h3 {
  font-weight: 600;
  font-size: 28px;
  color: #173859;
  margin-bottom: 20px;
}

.pec-text-side p {
  font-size: 16px;
  line-height: 1.5;
}

.pec-image-side {
  flex: 1 1 55%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pec-image-side img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
 object-fit: contain; /* Changed to contain to avoid cropping machinery details */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Adds depth to larger images */
}
.nav-tabs + .tab-content {
  border-top: none !important;
}

.nav-tabs .nav-link {
  border: none !important;
  border-radius: 0 !important;
}

.nav-tabs .nav-link.active {
  border: none !important;
  box-shadow: none !important;
}

hr, .tab-content:before, .tab-content:after {
  display: none !important;
  border: none !important;
}
/* Tablet & Mobile Responsiveness */
@media (max-width: 991.98px) {
  .pec-flex-container {
    flex-direction: column-reverse; /* Stacks image on top of text on mobile */
    text-align: center;
    gap: 30px;
  }
  
  .pec-image-side img {
    max-width: 100%; /* Image takes full width on mobile */
  }
}



/* Product 1*/
/* ========================================
   ONLY CARD & IMAGE TOP PADDING INCREASED
======================================== */

/* CARDS - MORE TOP INTERNAL SPACE */
.product-card-max {
  height: 400px !important;           /* TALLER CARD */
  background: #ffffff !important;
  border-radius: 20px !important;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08) !important;
  transition: all 0.4s ease !important;
  display: flex !important;
  flex-direction: column !important;
  margin-bottom: 40px !important;
  padding: 25px 0 0 0 !important;     /* TOP PADDING 25px */
  position: relative !important;
  overflow: visible !important;
}

.product-card-max:hover {
  transform: translateY(-20px) !important;
  box-shadow: 0 40px 100px rgba(0,0,0,0.15) !important;
}

/* IMAGE AREA - MUCH MORE TOP SPACE */
.product-img-area {
  height: 260px !important;           /* TALLER IMAGE AREA */
  padding: 50px 25px 20px 25px !important;  /* 50px TOP PADDING */
  display: flex !important;
  align-items: flex-start !important;  /* TOP ALIGN */
  justify-content: center !important;
  background: #f8faff !important;
  flex-shrink: 0 !important;
  border-radius: 20px 20px 0 0 !important;
  overflow: visible !important;
  margin-top: 0 !important;
}

.product-img-area img {
  max-height: 260px !important;
  max-width: 95% !important;
  height: auto !important;
  width: auto !important;
  object-fit: contain !important;
  object-position: top center !important;  /* TOP POSITION */
  display: block !important;
}

/* NAME - REST OF SPACE */
.product-name-max {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #173859 !important;
  text-align: center !important;
  padding: 30px 20px !important;
  flex-grow: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* RESPONSIVE - MORE TOP SPACE */
@media (max-width: 991px) {
  .product-card-max { 
    height: 370px !important; 
    padding-top: 22px !important; 
  }
  .product-img-area { 
    height: 235px !important; 
    padding: 45px 20px 18px 20px !important; 
  }
}

@media (max-width: 767px) {
  .product-card-max { 
    height: 340px !important; 
    padding-top: 20px !important; 
  }
  .product-img-area { 
    height: 210px !important; 
    padding: 40px 15px 15px 15px !important; 
  }
}

@media (max-width: 576px) {
  .product-card-max { 
    height: 320px !important; 
    padding-top: 18px !important; 
  }
  .product-img-area { 
    height: 195px !important; 
    padding: 35px 12px 12px 12px !important; 
  }
}



/* Scoped styles for 404 page */
      .notfound-section { 
  font-family: 'Poppins', 'Manrope', sans-serif; 
  background: #fff; 
}
.nf-title {
  font-weight: 700;
  font-size: 120px;
  color: #192d51; /* dark blue */
  letter-spacing: 4px;
}
.nf-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #192d51;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nf-desc {
  font-size: 15px;
  color: #7c8798;
  margin-bottom: 28px;
}
.nf-home-link {
  font-size: 16px;
  font-weight: 600;
  color: #001f7f;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color .17s;
}
.nf-home-link:hover {
  color: #EB6753;
}
.notfound-section img {
  max-width: 500px; /* increased size */
  height: auto;
}

    /*coming soon*/
        
    .under-construction-section {
  font-family: 'Poppins', sans-serif;
  background: #f9fafc;
}
.oops-title {
  font-weight: 700;
  font-size: 64px;
  color: #192d51;
}
.oops-desc {
  font-size: 16px;
  color: #7c8798;
}
.btn-primary {
  background-color: #192d51;
  border: none;
  font-weight: 500;
}
.btn-primary:hover {
  background-color: #EB6753;
  color: #fff;
}
.oops-title span.text-dark {
  color: #192d51 !important; /* dark blue color */
  font-size: 44px;
}

/*cnc machining*/
#cnc-machining {
  color: #222; /* Dark text color for good readability */
  background-color: #fff; /* Optional: white background for contrast */
}

#cnc-machining h2 {
  color: #333; /* Slightly darker heading */
}

#cnc-machining p,
#cnc-machining ul {
  font-size: 1rem;
  line-height: 1.6;
}

/* Optionally add some spacing for the list */
#cnc-machining ul li {
  margin-bottom: 0.5rem;
}
.offer-arrow {
  text-decoration: none; /* Remove underline normally */
  display: inline-block; /* Keep button-like appearance */
  cursor: pointer;
  /* Add any other button styles here */
}

.offer-arrow:hover,
.offer-arrow:focus {
  text-decoration: none; /* Remove underline on hover/focus */
  /* You can add other hover styles like color change here */
}
 

/*precision*/
.precision-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-family: 'Poppins', sans-serif;
}

.precision-section h2 {
  font-weight: 700;
  color: #0D1C39; /* Dark blue */
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.precision-section h5 {
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #173859; /* Lighter dark blue */
}

.precision-section p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #212529;
  margin-bottom: 1rem;
}

.precision-section ul {
  padding-left: 1.25rem;
  margin-top: 0.5rem;
  color: #212529;
}

.precision-section ul li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}

.precision-section img {
  max-width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(13, 28, 57, 0.15);
}




/* CSS Encapsulated under products ID */
        #pg-section {
            padding: 40px 0;
            background-color: #ffffff;
            font-family: inherit; /* Uses your site's font */
            overflow: hidden;
        }

        #pg-section .pg-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        #pg-section .pg-title {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 25px;
            color: #000000;
            text-align: center;
        }

        #pg-section .pg-carousel-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        #pg-section .pg-carousel-viewport {
            width: 100%;
            overflow: hidden;
        }

        #pg-section .pg-track {
            display: flex;
            gap: 15px;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* Card Width for 4 Slides */
        #pg-section .pg-card {
            flex: 0 0 calc(25% - 11.25px); 
            background: #fff;
            text-align: center; /* Centers the product name and price */
        }

        /* --- IMAGE SIZE ADJUSTMENT --- */
        #pg-section .pg-img-box {
            aspect-ratio: 1 / 1; /* Square box */
            background-color: #f9f9f9;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px; /* Increase this to make image even smaller */
            border-radius: 8px;
            box-sizing: border-box;
        }

        #pg-section .pg-img-box img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain; /* Ensures image isn't cropped */
            transition: transform 0.4s ease;
        }

        #pg-section .pg-card:hover img {
            transform: scale(1.1);
        }

        #pg-section .pg-category {
            font-size: 11px;
            text-transform: uppercase;
            color: #999;
            margin: 0;
            letter-spacing: 0.5px;
        }

        #pg-section .pg-name {
            font-size: 15px;
            font-weight: 500;
            color: #222;
            margin: 5px 0;
        }

        #pg-section .pg-price {
            font-size: 14px;
            font-weight: 600;
            color: #444;
        }

        /* Navigation Buttons */
        #pg-section .pg-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 36px;
            height: 36px;
            background: #fff;
            border: 1px solid #eee;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: all 0.2s;
        }

        #pg-section .pg-nav-btn:hover { background: #000; color: #fff; }
        #pg-section .pg-prev { left: -18px; }
        #pg-section .pg-next { right: -18px; }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            #pg-section .pg-card { flex: 0 0 calc(33.33% - 10px); }
        }

        @media (max-width: 768px) {
            #pg-section .pg-card { flex: 0 0 calc(50% - 7.5px); }
            #pg-section .pg-prev { left: 5px; }
            #pg-section .pg-next { right: 5px; }
        }

        @media (max-width: 480px) {
            #pg-section .pg-card { flex: 0 0 75%; } /* Small peek on mobile */
            #pg-section .pg-img-box { padding: 20px; }
        }




        /* Encapsulated Styles using Class instead of ID */
        .pg-section-wrapper {
            padding: 40px 0;
            background-color: #fff;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        .pg-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }
        .pg-title {
            text-align: center;
            margin-bottom: 25px;
            font-size: 32px;
            color: #000000;
            
        }
        .pg-carousel-instance {
            position: relative;
            display: flex;
            align-items: center;
        }
        .pg-viewport {
            width: 100%;
            overflow: hidden;
        }
        .pg-track {
            display: flex;
            gap: 15px;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .pg-card {
            flex: 0 0 calc(25% - 11.25px); /* 4 items */
            text-align: center;
        }
        .pg-img-box {
            aspect-ratio: 1 / 1;
            background-color: #f4f4f4;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            border-radius: 8px;
            box-sizing: border-box;
            margin-bottom: 10px;
        }
        .pg-img-box img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        .pg-name {
            font-size: 15px;
            font-weight: 500;
            color: #444;
        }
        .pg-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 35px;
            height: 35px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 50%;
            cursor: pointer;
            z-index: 5;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .pg-prev { left: -15px; }
        .pg-next { right: -15px; }

        /* Responsive */
        @media (max-width: 1024px) { .pg-card { flex: 0 0 calc(33.33% - 10px); } }
        @media (max-width: 768px) { 
            .pg-card { flex: 0 0 calc(50% - 8px); }
            .pg-prev { left: 0; } .pg-next { right: 0; }
        }
        @media (max-width: 480px) { .pg-card { flex: 0 0 80%; } }