/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400;
  font-size: 16px;
  background-color: #f8f9fb;
  box-sizing: border-box;
  padding-top: 119px;
}

/* Header Wrapper Styling */
header {
  background-color: #f9f9f9;
  padding: 5px 13px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0 !important;
  padding: 0 !important;
}

/* Container Setup */
.header-container {
  max-width: 1920px;
  height: 119px;
  padding: 20px 20px;
}

.second-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  height: 79px;
}

/* Logo Styling */
.logo img {
  width: auto;
  height: 48px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  transition: color 0.3s ease;
  font-family: "Poppins", sans-serif !important;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.nav-menu a:hover {
  color: #e74c3c;
}

/* Full Button */
.demo-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  width: 224px;
  height: 54px;
  background-color: #fb5343;
  border-radius: 40px;
  padding: 16px 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 0;
}

.demo-button .Book {
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif !important;
  color: white;
  white-space: nowrap;
}

.demo-button img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.demo-button:hover {
  background-color: #951204;
}
.demo-button:hover img {
  transform: translateX(4px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 2px;
}

/* Tablet Icon Button */
.demo-icon-button {
  display: none;
  margin-left: 15px;
  width: 50px;
  height: 50px;
  background-color: #fb5343;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.demo-icon-button img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
/* ============================
   Mobile Side Menu
============================ */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 250px;
  height: 100vh;
  background-color: #ffffff;
  padding: 24px 20px;
  z-index: 1100;
  transition: right 0.4s ease-in-out;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  border-left: 1px solid #eee;
}

.mobile-menu.show {
  right: 0;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: #f3f3f3;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  color: #222;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 110;
}

.close-btn:hover {
  color: white;
  transform: rotate(90deg);
}

.close-btn:hover {
  color: #fb5343;
}

/* ============================
   Menu Title Section
============================ */
.mobile-title {
  text-align: left;
  margin: 40px 0 24px;
}
.mobile-title h2 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
}
.mobile-title hr {
  width: 50px;
  border: 2px solid #fb5343;
  margin: 10px 0;
}
.mobile-title p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* ============================
   Navigation Links
============================ */
.mobile-links {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}
.mobile-links a {
  font-size: 17px;
  color: #222;
  text-decoration: none;
  padding: 12px 0;
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-links a:hover {
  color: #fb5343;
  padding-left: 6px;
}

/* ============================
   Book Demo Icon Button
============================ */
.mobile-demo {
  /* margin: 30px auto 0; */
  width: 54px;
  height: 54px;
  background-color: #fb5343;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}
.mobile-demo:hover {
  background-color: #e44636;
}
.mobile-demo img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* Ensure spacing is consistent */
.mobile-menu .demo-button {
  display: flex;
  /* margin: 20px auto 0; */
  width: 54px;
  height: 54px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  background-color: #fb5343;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.mobile-menu .demo-button:hover {
  background-color: #e44636;
}
.hamburger.hide {
  display: none !important;
}

/* ============================
   Hamburger + Header Adjustments
============================ */
.hamburger-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .demo-icon-button {
    display: flex;
  }

  .demo-button .Book {
    display: none;
  }

  .header-rightbar {
    gap: 12px;
  }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .demo-icon-button {
    display: none;
  }

  .mobile-menu .demo-button {
    display: flex;
  }
}

/* Tablet: Show text, hide image */
@media (min-width: 769px) and (max-width: 1024px) {
  .mobile-demo {
    display: flex;
    gap: 10px;
    width: 224px;
    height: 59px;
    background-color: #fb5343;
    border-radius: 40px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-family: "Poppins", sans-serif !important;
  }
  .mobile-menu .demo-button {
    width: auto;
    height: auto;
    border-radius: 10px;
  }
  .mobile-demo .Book {
    display: inline;
    font-size: 16px;
    font-weight: 500;
    font-family: "Poppins", sans-serif !important;
    color: white;
  }

  .mobile-demo img {
    display: inline;
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
  }
}

/* Mobile: Hide text, show image only */
@media (max-width: 768px) {
  .mobile-demo {
    display: flex;
    width: 54px;
    height: 54px;
    background-color: #fb5343;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .mobile-demo .Book {
    display: none;
  }

  .mobile-demo img {
    display: inline;
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
  }
}

/* ============================
   Overlay for Mobile Menu
============================ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 1090;
}
.overlay.show {
  display: block;
}
/*========================
  Hero Section Styles
=========================*/

.section-hero {
  position: relative;
  background-color: #f9f9f9;
  font-family: "Poppins", sans-serif !important;
  padding: 100px 40px 50px 40px;
  max-width: 1920px;
  min-height: 767px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
}

/* Text Side */
.text-container {
  flex: 1 1 500px;
  max-width: 627px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-container h1 {
  color: #333 !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.2;
}

.text-container h1 .hero-h1-small {
  font-size: 30px;
  display: block;
}

.text-container .highlight {
  color: #fb5343;
}

.text-container p {
  color: #555;
  font-family: "Poppins", sans-serif !important;
  font-size: 17px;
  line-height: 1.6;
}

/* CTA Button */
.cta-button-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7) !important;
  color: #fff !important;
  text-decoration: none;
  border-radius: 40px;
  height: 48px;
  padding: 0 24px;
  transition: background-color 0.3s ease;
  font-family: "Poppins", sans-serif !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  width: fit-content;
}

.cta-button-black:hover {
  background-color: #000 !important;
  color: #FFF !important;
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  line-height: 1;
}

.cta-content img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.cta-button:hover img {
  transform: translateX(4px);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 0px;
}

.trust-badges img {
  width: 60px;
  height: auto;
}

/* Image Side */
.erp-image {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.erp-image img {
  max-width: 100%;
  height: auto;
}

/* Scroll Indicator */
.scroll-indicator {
  text-align: center;
  font-size: 32px;
  color: #ccc;
  margin-top: 40px;
}

/* ========================
   Tablet (Medium Screens)
========================= */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    text-align: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    justify-content: center;
  }

  .text-container,
  .erp-image {
    align-items: center;
    max-width: 100%;
    flex: 1 1 100%;
  }

  .cta-button {
    margin: 0 auto;
  }

  .trust-badges {
    justify-content: center;
    margin-top: 32px;
  }
  .components-list {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ========================
   Mobile (Small Screens)
========================= */
@media (max-width: 768px) {
  .text-container h1 {
    font-size: 36px;
  }

  .text-container p {
    font-size: 15px;
  }

  .cta-button {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    height: 48px;
    justify-content: center;
    text-align: center;
  }
  .cta-button {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  .cta-button.cta {
    max-width: 260px;
  }

  .trust-badges img {
    width: 60px;
    height: 60px;
  }

  .trust-badges {
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
  }

  .erp-image {
    margin-top: 20px;
  }

  .section-hero {
    padding: 120px 16px 80px;
  }

  .scroll-indicator {
    font-size: 28px;
    margin-top: 30px;
  }

  .keyfeatures {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  .keyfeatures-header {
    flex: 0;
  }
}
/* ======== TRUSTED SECTION ======== */
.section-trusted {
  background-color: #ffffff;
  max-width: 1920px;
  padding: 60px 40px;
}

.trusted-container {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.trusted-heading {
  color: #222;
  font-family: "Poppins", sans-serif !important;
  font-weight: 700;
  font-size: 32px;
  text-align: start;
  margin-bottom: 24px;
}

.trusted-logos-wrapper {
  overflow: hidden;
  width: 100%;
  height: 45px;
  position: relative;
}

.trusted-logos-track {
  position: absolute;
  display: flex;
  gap: 90px;
  left: 0;
  top: 0;
  height: 100%;
  will-change: transform;
}

.trusted-logos-track .logo-item {
  width: 200px;
  height: 45px;
}

.trusted-logos-track img {
  width: auto;
  height: 45px;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.trusted-logos-track img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .trusted-heading {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .trusted-logos {
    gap: 80px;
  }
  .trusted-logos-track {
    gap: 40px;
  }
  .trusted-logos-track .logo-item {
    width: 150px;
    height: 45px;
  }
  .trusted-heading {
    font-size: 24px;
  }
  .trusted-logos-track.animate-scroll {
    animation-duration: 15s;
  }
}

@media (max-width: 480px) {
  .trusted-logos {
    align-items: center;
    gap: 40px;
  }
  .trusted-heading {
    font-size: 20px;
  }
}

/* ======== INDUSTRIES SECTION ======== */
.section-industries {
  background-color: #ffffff;
  max-width: 1920px;
  padding: 80px 40px 80px 40px;
  font-family: "Poppins", sans-serif !important;
  position: relative;
}

.industry-left-bg {
  position: absolute;
  top: 55%;
  right: 97%;
  transform: translateY(-42%);
  z-index: -1;
  pointer-events: none;
  object-fit: contain;
  width: 213px;
  height: 402px;
  opacity: 2.15;
}

.key-elements {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  /* padding: 0 20px; */
}

.industries-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  height: 200px;
  gap: 24px;
  text-align: start;
  margin-bottom: 24px;
}

.tag {
  display: inline-block;
  background-color: #fb5343;
  color: white;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 500;
  margin-bottom: 12px;
}

.industries-header h2 {
  color: #333;
  height: 63px;
  font-family: "Poppins", sans-serif !important;
  font-weight: 700;
  font-size: 42px;
}

.industries-header h2 .highlight {
  color: #fb5343;
}

.industries-header p {
  height: 52px;
  color: #555;
  line-height: 1.4;
  font-family: "Poppins", sans-serif !important;
  font-weight: 400;
  font-size: 17px;
}

.components-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.industry-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  border: 2px solid #ddd;
  padding: 16px 20px;
  background: white;
  transition: all 0.3s ease;
}

.industry-card img {
  width: 28px;
  height: 28px;
}

.industry-card span {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}

.pink {
  border: 1px solid #ff82ac;
}
.teal {
  border: 1px solid #16dbcc;
}
.yellow {
  border: 1px solid #ffbb38;
}
.blue {
  border: 1px solid #396aff;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
/* ===== Responsive Styles ===== */

/* Tablets (<= 1024px) */
@media (max-width: 1024px) {
  .section-industries {
    padding: 60px 30px;
  }

  .industries-header {
    height: auto;
    gap: 16px;
    margin-bottom: 40px;
  }

  .industries-header h2 {
    font-size: 34px;
    height: auto;
  }

  .industries-header p {
    font-size: 16px;
    height: auto;
    line-height: 1.5;
  }

  .components-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .industry-left-bg {
    width: 150px;
    height: auto;
    top: 60%;
    right: 95%;
  }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  .section-industries {
    padding: 50px 20px;
  }

  .industries-header {
    height: auto;
    gap: 14px;
    margin-bottom: 32px;
  }

  .industries-header h2 {
    font-size: 28px;
    height: auto;
  }

  .industries-header p {
    font-size: 15px;
    height: auto;
    line-height: 1.5;
  }

  .components-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .industry-card {
    flex-direction: row;
    gap: 10px;
    padding: 14px 16px;
  }

  .industry-card img {
    width: 24px;
    height: 24px;
  }

  .industry-card span {
    font-size: 15px;
  }

  .industry-left-bg {
    display: none;
  }
}

/* Small Mobile (<= 480px) */
@media (max-width: 480px) {
  .industries-header h2 {
    font-size: 24px;
  }

  .industries-header p {
    font-size: 14px;
  }

  .industries-header {
    margin-bottom: 28px;
  }

  .tag {
    font-size: 12px;
    padding: 5px 14px;
  }

  .industry-card {
    padding: 12px 14px;
  }

  .industry-card span {
    font-size: 14px;
  }
}

/* ======== KEY FEATURES SECTION ======== */
.section-keyfeatures {
  background-color: #f5f5f5;
  font-family: "Poppins", sans-serif !important;
  position: relative;
  max-width: 1920px;
  padding: 80px 40px;
}

.keyfeatures {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.keyfeatures-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  max-width: 1320px;
  height: 200px;
  gap: 24px;
}

.case-study-badge {
  background-color: #fb5343;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 7px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.keyfeatures-header h2 {
  color: #404040;
  font-weight: 700;
  font-size: 42px;
  height: 63px;
  font-family: "Poppins", sans-serif !important;
}

.keyfeatures-header h2 .highlight {
  color: #fb5343;
}

.keyfeatures-header p {
  color: #555;
  font-size: 17px;
  line-height: 100%;
  font-weight: 400;
  height: 52px;
  font-family: "Poppins", sans-serif !important;
}

.keyfeatures-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.keyfeature-component {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s ease;
  text-align: left;
  height: 100%;
}

.benefit-image img {
  width: 72px;
  height: 72px;
  display: block;
}

.keyfeature-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 16px 0 8px;
  font-family: "Poppins", sans-serif !important;
}

.keyfeature-subtitle {
  color: #404040;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Poppins", sans-serif !important;
}

.side-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.2;
}

.side-image img {
  width: 180px;
}
/* ========= Enhanced Responsive Styles ========= */

/* Small Mobile (<= 480px) */
@media (max-width: 480px) {
  .section-keyfeatures {
    padding: 50px 16px;
  }

  .keyfeatures-header {
    text-align: start;
    /* margin-bottom: 32px; */
  }

  .case-study-badge {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 12px;
  }

  .keyfeatures-header h2 {
    font-size: 24px;
    height: auto;
  }

  .keyfeatures-header p {
    font-size: 14px;
    line-height: 1.5;
    height: auto;
  }

  .keyfeatures-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-image img {
    width: 48px;
    height: 48px;
  }

  .keyfeature-title {
    font-size: 15px;
    margin: 12px 0 6px;
  }

  .keyfeature-subtitle {
    font-size: 13px;
  }

  .side-image {
    display: none;
  }
}

/* Tablets (481px - 1024px) */
@media (min-width: 481px) and (max-width: 1024px) {
  .section-keyfeatures {
    padding: 60px 24px;
  }

  .keyfeatures-header {
    text-align: start;
  }

  .keyfeatures-header h2 {
    font-size: 30px;
    height: auto;
  }

  .keyfeatures-header p {
    font-size: 15px;
    height: auto;
    line-height: 1.5;
  }

  .keyfeatures-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .benefit-image img {
    width: 60px;
    height: 60px;
  }

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

  .keyfeature-subtitle {
    font-size: 14px;
  }

  .side-image {
    display: none;
  }
}

@media (max-width: 1400px) {
  .side-image,
  .industry-left-bg {
    display: none;
  }
}
/* Large Screens (1025px and up) */
@media (min-width: 1025px) {
  .keyfeatures-header h2 {
    font-size: 42px;
    height: auto;
  }

  .keyfeatures-header p {
    font-size: 17px;
    height: auto;
    line-height: 1.6;
  }

  .keyfeatures-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .keyfeature-component {
    padding: 12px;
    border-radius: 10px;
  }
}
.section-accordion {
  background: #f5f5f5;
  max-width: 1920px;
  padding: 80px 40px;
  font-family: "Poppins", sans-serif !important;
}

.accordion-container {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  gap: 60px;
}

.accordion-left {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  width: 100%;
}

.accordion-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.accordion-right img {
  width: 100%;
  border-radius: 16px;
  max-width: 635px;
  max-height: 700px;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 24px 0;
  border-top: 2px solid;
  border-image-source: linear-gradient(
    90deg,
    #6549d5 0%,
    #e33fa1 61%,
    #fb5343 100%
  );
  border-image-slice: 1;
}

.accordion-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222 !important;
  font-family: "Poppins", sans-serif !important;
  margin: 0;
}

.section-accordion .accordion-item {
  background: transparent !important;
  border: 0px !important;
}

.toggle-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.accordion-content {
  margin-top: 12px;
  padding-left: 20px !important;
  list-style: disc !important;
  color: #555 !important;
  font-size: 16px !important;
  line-height: 1.6;
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
}

.cta-button {
  margin-top: 40px;
  padding: 12px 24px;
  font-size: 16px;
  color: white;
  background-color: #fb5343;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #e73e2e !important;
  color: #FFF !important;
}
/* Tablet & Below (<= 992px) */
@media (max-width: 992px) {
  .section-accordion {
    padding: 60px 24px;
  }

  .accordion-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0px 40px;
  }

  .accordion-right {
    order: -1; /* IMAGE goes on top */
    width: 100%;
    margin-bottom: 32px;
  }

  .accordion-right img {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
  }

  .accordion-left {
    width: 100%;
    max-width: 100%;
  }

  .cta-button {
    width: 100%;
    font-size: 15px;
    padding: 14px 16px;
    margin-top: 32px;
  }
}

/* Mobile View (<= 576px) */
@media (max-width: 576px) {
  .section-accordion {
    padding: 50px 16px;
  }

  .accordion-header {
    padding: 20px 0;
  }

  .accordion-header h3 {
    font-size: 15px;
  }

  .toggle-icon {
    width: 20px;
    height: 20px;
  }

  .accordion-content {
    font-size: 14px;
    padding-left: 16px;
    margin-top: 10px;
  }

  .cta-button {
    font-size: 14px;
    padding: 12px 16px;
    margin-top: 24px;
  }

  .accordion-right img {
    border-radius: 12px;
  }
}

.section-cta {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  max-width: 1920px;
  padding: 80px 40px;
}

.cta-elements {
  position: relative;
  padding: 60px 40px;
  max-width: 1320px;
  width: 100%;
  text-align: center;
  overflow: hidden;
  border-radius: 40px;
  height: auto; /* Changed from fixed height */
  min-height: 300px;
}

.cta-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Covers entire area and scales */
  z-index: 0;
  transition: all 0.3s ease;
}

.cta-header,
.cta-button {
  position: relative;
  z-index: 1;
}

.cta-title h2 {
  color: #ffffff !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  text-align: center;
  padding: 0 10px;
  margin-bottom: 20px !important;
}

.cta-title span {
  color: #fb5343;
}

.cta-sub-title p {
  color: #cccccc !important;
  max-width: 1240px;
  margin: 0 auto;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.4;
  text-align: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto 0;
  background-color: #fb5343;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 24px;
  border-radius: 40px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e73e2e;
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===========================
   Responsive Adjustments
=========================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .cta-elements {
    padding: 50px 30px;
  }

  .cta-title h2 {
    font-size: 32px;
  }

  .cta-sub-title p {
    font-size: 15px;
  }

  .cta-bg-image {
    object-fit: cover;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .section-cta {
    padding: 60px 20px;
  }

  .cta-elements {
    padding: 40px 20px;
    border-radius: 24px;
  }

  .cta-title h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .cta-sub-title p {
    font-size: 14px;
    max-width: 100%;
  }

  .cta-button {
    width: 100%;
    font-size: 15px;
  }

  .cta-content img {
    width: 18px;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .cta-title h2 {
    font-size: 20px;
  }

  .cta-sub-title p {
    font-size: 16px;
  }

  .cta-button {
    font-size: 16px;
    padding: 14px 20px;
  }

  .cta-content img {
    width: 16px;
  }
}

.Manufacturing {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
  max-width: 1920px;
  padding: 80px 40px;
}

.Manufacturing .container {
  max-width: 1320px;
}

.container {
  max-width: 1320px;
  margin: auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  text-align: start;
  width: 100%;
  max-width: 100%;
}

.text-content h2 {
  color: #404040 !important;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  font-family: "Poppins", sans-serif !important;
}

.text-content h2 span {
  color: #fb5343;
}

.text-content p {
  font-family: "Poppins", sans-serif !important;
  font-size: 16px !important;
  color: #666 !important;
  font-weight: 400 !important;
  line-height: 1.6;
  max-width: 1320px;
}

.content-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex: 1 1 65%;
}

.feature {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif !important;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.feature img {
  width: 40px;
  height: auto;
}

.side-image {
  position: absolute;
  right: -13%;
  top: 68%;
  transform: translateY(-90%);
  z-index: 0;
  opacity: 1.2;
}

.side-image img {
  width: 213px;
  height: 402px;
}

/* --- Responsive Layouts --- */

/* Large tablets */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .side-image {
    display: none;
  }
}

/* Tablets & below */
@media (max-width: 768px) {
  .container {
    padding: 0px !important;
  }

  .text-content h2 {
    font-size: 2rem;
  }

  .text-content p {
    font-size: 0.95rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .content-box {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .text-content h2 {
    font-size: 24px;
  }

  .features-grid {
    grid-template-columns: 2fr;
  }

  .feature {
    font-size: 16px;
    padding: 12px 16px;
  }

  .container {
    padding: 0 10px;
  }
}
.section-case-study {
  background-color: #ffffff;
  max-width: 1920px;
  padding: 80px 0px 40px;
  box-sizing: border-box;
}
.section-case-study.last {
  padding: 40px 0px 80px;
}

.case-study-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #fef4f7;
  border-radius: 16px;
  padding: 40px;
  max-width: 1320px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}
.section-case-study.last .case-study-card {
  background: #ecf2ff;
}

.case-study-image-right,
.case-study-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-study-image-right img,
.case-study-image img {
  width: 100%;
  max-width: 582px;
  height: auto;
  object-fit: contain;
}

.case-study-content {
  flex: 1 1 45%;
  max-width: 598px;
}

.badg {
  /* width: 114px; */
  height: 37px;
  gap: 10px;
  border-radius: 30px;
  /* box-shadow: 0px 0px 10px 0px #00000026; */
}

.case-study-title {
  font-family: "Poppins", sans-serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #333333 !important;
  line-height: 1.4 !important;
  margin-bottom: 20px !important;
}

.case-study-title span {
  color: #fb5343;
}

.case-study-subtitle {
  font-family: "Poppins", sans-serif !important;
  font-size: 16px !important;
  color: #666666 !important;
  margin-bottom: 20px !important;
  line-height: 1.6 !important;
}

.read-more a {
  font-family: "Poppins", sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #65676b !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}
.read-more a:hover {
  color: #F65343 !important;
}

.read-more a img {
  width: 16px;
  height: auto;
}

.read-more a:hover {
  text-decoration: underline;
}

.case-study-badge.mobile {
  display: none;
}
.case-study-badge.desktop {
  display: inline-block;
}

/* Tablet View */
@media (max-width: 1024px) {
  .case-study-card {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }

  .case-study-content,
  .case-study-image-right,
  .case-study-image {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .case-study-image {
    flex-direction: column;
  }
  .case-study-image-right {
    flex-direction: column;
  } 
  .section-case-study.last .case-study-card {
    flex-direction: column-reverse !important;
  }

  .case-study-badge.mobile {
    display: inline-block;
  }
  .case-study-badge.desktop {
    display: none;
  }

  .case-study-title,
  .case-study-subtitle {
    text-align: center;
  }
}

/* Mobile View */
@media (max-width: 576px) {
  .case-study-card {
    padding: 20px;
    gap: 30px;
  }

  .case-study-title {
    font-size: 20px;
  }

  .case-study-subtitle {
    font-size: 14px;
  }

  .read-more a {
    font-size: 15px;
  }

  .case-study-badge {
    font-size: 12px;
    padding: 4px 10px;
  }
}
/* ======================
   Our Customers Section
====================== */
/* ==============================
   Our Customers Section - Base
============================== */
.section-ourcustomers {
  background-color: #f5f5f5;
  max-width: 1920px;
  padding: 80px 40px;
  box-sizing: border-box;
}

.ourcustomers {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
}

.ourcustomers-header {
  max-width: 400px;
  /* flex: 1 1 300px; */
}

.our {
  display: block;
  color: #888888;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif !important;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2;
}

.ourcustomers-title {
  color: #404040;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.3;
  font-family: "Poppins", sans-serif !important;
}

.ourcustomers-title span {
  color: #fb5343;
}

.ourcustomers-list {
  flex: 2 1 350px;
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  align-items: center;
  justify-items: center;
  gap: 60px;
  width: 100%;
}

/* Brand logos */
.ourcustomers-list img {
  max-width: 100px;
  height: auto;
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.ourcustomers-list img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ======================
   Tablet (≤ 1024px)
====================== */
@media (max-width: 1024px) {
  .section-ourcustomers {
    padding: 80px 40px;
  }

  .ourcustomers {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 24px;
  }

  .ourcustomers-header {
    max-width: 100%;
    margin-bottom: 0;
  }

  .ourcustomers-title {
    font-size: 32px;
  }

  .our {
    font-size: 16px;
  }

  .ourcustomers-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 0;
  }

  .ourcustomers-list img {
    max-width: 90px;
  }
}

/* ======================
   Mobile (≤ 600px)
====================== */
@media (max-width: 600px) {
  .section-ourcustomers {
    padding: 60px 20px;
  }

  .ourcustomers-title {
    font-size: 26px;
  }

  .our {
    font-size: 16px;
  }

  .ourcustomers-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .ourcustomers-list img {
    max-width: 70px;
  }
}

/* ======================
   Extra Small (≤ 400px)
====================== */
@media (max-width: 400px) {
  .ourcustomers-list {
    /* grid-template-columns: 1fr; */
    gap: 16px;
  }

  .ourcustomers-list img {
    max-width: 60px;
  }

  .ourcustomers-title {
    font-size: 22px;
  }

  .our {
    font-size: 14px;
  }
}
.section-customers {
  background-color: #ffffff;
  max-width: 1920px;
  padding: 80px 40px;
  overflow-x: hidden;
}

.customers {
  max-width: 1320px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  /* gap: 40px; */
}

.customers-header {
  margin-bottom: 60px;
  text-align: start;
}

.customers-title {
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 42px;
  font-family: "Poppins", sans-serif !important;
}

.customers-title span {
  color: #fb5343;
}

.customers-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 100%;
  font-family: "Poppins", sans-serif !important;
}

.customers-elements {
  display: flex;
  gap: 30px;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonial-card {
  align-items: flex-start;
  background: #fff;
  border-radius: 8px;
  text-align: left;
  flex: 1 1 calc(33.33% - 30px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  max-width: 410px !important;
  box-sizing: border-box;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.card__content {
  display: flex;
  align-items: flex-start;
  justify-items: flex-start;
  gap: 16px;
  flex-direction: column;
}

.testimonial-card .stars {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.card__content .card-header {
  padding: 0 !important;
  margin: 0 !important;
  background-color: transparent !important;
  border: 0 !important;
}

.card-title {
  width: 100%;
}

.card-title h4 {
  font-family: "Poppins", sans-serif !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #333 !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.card__footer {
  display: flex;
  align-items: flex-start;
  justify-items: flex-start;
  gap: 0px;
  flex-direction: column;
}

.card-subtitle {
  height: auto;
}

.card-subtitle p {
  font-family: "Poppins", sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  color: #666 !important;
  margin: 0;
}


.card__footer p {
  display: block;
  font-family: "Poppins", sans-serif !important;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  color: #111 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.author span {
  font-family: "Poppins", sans-serif !important;
  font-size: 13px;
  line-height: 1.2;
  color: #888 !important;
}

/* Pagination Styles */
.testimonial-pagination {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 30px;
}

.testimonial-pagination .dot {
  width: 40px;
  height: 6px;
  background-color: #d9d9d9;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.testimonial-pagination .dot.active {
  background-color: #fb5343;
}

/* 📱 Responsive Breakpoints */

@media (max-width: 1200px) {
  .customers-title {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .testimonial-card {
    flex: 1 1 calc(50% - 20px);
  }

  .customers-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .customers-title {
    font-size: 28px;
    text-align: left;
  }

  .customers-subtitle {
    font-size: 14px;
    text-align: left;
    margin: 0 auto;
  }

  .customers-header {
    text-align: center;
  }

  .testimonial-card {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100% !important;
  }

  .testimonial-pagination {
    justify-content: center;
  }

  .section-customers {
    padding: 80px 20px;
  }
}

@media (max-width: 480px) {
  .customers-title {
    font-size: 24px;
    margin-bottom: 24px !important;
  }

  .card-title h4 {
    font-size: 20px;
  }

  .card-subtitle p {
    font-size: 14px;
  }

  .author strong {
    font-size: 16px;
  }
}

/* ========= Base Styles ========= */
.section-insights {
  background-color: #fff;
  max-width: 1920px;
  padding: 80px 40px;
  box-sizing: border-box;
}

.insights {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.insights-header {
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.insights-title {
  color: #333;
  font-family: "Poppins", sans-serif !important;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
}

.insights-title span {
  color: #fb5343;
}

.insights-subtitle {
  color: #65676b;
  font-family: "Poppins", sans-serif !important;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
}

.insights-elements {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

/* ========== Cards ========== */
.insight-card {
  flex: 1 1 calc(33.33% - 30px) !important;
  max-width: 413px !important;
  display: flex !important;
  flex-direction: column !important;
  background: #fff !important;
  border-radius: 10px !important;
  gap: 16px !important;
  box-sizing: border-box !important;
  transition: transform 0.4s ease, opacity 0.4s ease !important;
}

.insight-card a {
  width: 100%;
  display: flex !important;
  flex-direction: column !important;
  background: #fff !important;
  border-radius: 10px !important;
  gap: 16px !important;
  box-sizing: border-box !important;
  transition: transform 0.4s ease, opacity 0.4s ease !important;
}

.blog-img img {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  object-fit: cover;
}

.category {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  color: #999 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.blog-title {
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  font-size: 20px !important;
  color: #404040 !important;
  line-height: 1.4 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.blog-description {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  color: #666 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ========= Pagination ========= */
.insight-pagination {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 40px;
  padding-left: 12px;
}

.insight-pagination .insight-dot {
  width: 40px;
  height: 6px;
  background-color: #d9d9d9;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.insight-pagination .insight-dot.active {
  background-color: #fb5343;
}

/* ========= Tablet (≤ 992px) ========= */
@media (max-width: 992px) {
  .insights-header {
    text-align: center;
    align-items: start;
  }

  .insights-title {
    font-size: 32px;
  }

  .insights-subtitle {
    font-size: 16px;
  }

  .insight-card {
    flex: 1 1 calc(50% - 15px);
  }

  .insight-pagination {
    justify-content: center;
    padding-left: 0;
  }
}

/* ========= Mobile (≤ 600px) ========= */
@media (max-width: 600px) {
  .section-insights {
    padding: 60px 20px;
  }

  .insights-title {
    font-size: 24px;
  }

  .insights-subtitle {
    font-size: 14px;
    text-align: left;
  }

  .insight-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .blog-img img {
    height: 200px;
  }

  .blog-title {
    font-size: 18px;
  }

  .blog-description {
    font-size: 14px;
  }
}
/* ========== Base Section ========== */
.section-faqs {
  max-width: 1920px;
  padding: 80px 40px;
  background-color: #ffffff;
  box-sizing: border-box;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1320px;
  margin: 0 auto;
  gap: 60px;
}

.faq-left {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-title {
  font-family: "Poppins", sans-serif !important;
  font-size: 42px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #404040 !important;
}

.faq-title span {
  color: #fb5343 !important;
}

.faq-two {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-subtitle {
  color: #65676b;
  font-family: "Poppins", sans-serif !important;
  font-size: 17px;
  line-height: 1.6;
  max-width: 400px;
}

.faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #fb5343;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  padding: 12px 24px;
  font-family: "Poppins", sans-serif !important;
  font-size: 18px;
  font-weight: 500;
  transition: background 0.3s;
  width: fit-content;
  height: auto;
}

.faq-btn:hover {
  background-color: #e63c2f;
}

.faq-btn img {
  width: 16px;
}

/* ========== FAQ Right Column ========== */
.faq-right {
  flex: 1;
  min-width: 0;
}

.faq {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 2px solid;
  border-image-source: linear-gradient(
    90deg,
    #6549d5 0%,
    #e33fa1 61%,
    #fb5343 100%
  );
  border-image-slice: 1;
  padding: 0;
  transition: all 0.3s ease;
}

.faq-header {
  font-family: "Poppins", sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 24px 0 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  color: #333 !important;
}

.faq-header span img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-body {
  font-family: "Poppins", sans-serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  display: none;
  padding: 12px 0 !important;
  color: #65676b !important;
}

.faq-item.active .faq-body {
  display: block;
}

.faq-body ol li {
    color: #65676b !important;
}

.faq-item.active .faq-header span img {
  content: url("../img/arrow/minus.svg");
}

.faq-item:not(.active) .faq-header span img {
  content: url("../img/arrow/plus.svg");
} /* ========== Tablet (≤ 1024px) ========== */
@media (max-width: 1024px) {
  .faq-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .faq-left {
    max-width: 100%;
  }

  .faq-title {
    font-size: 32px;
  }

  .faq-subtitle {
    font-size: 16px;
  }

  .faq-btn {
    font-size: 16px;
  }

  .faq-right {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ========== Mobile (≤ 768px) ========== */
@media (max-width: 768px) {
  .section-faqs {
    padding: 60px 20px;
  }

  .faq-title {
    font-size: 28px !important;
  }

  .faq-subtitle {
    font-size: 16px !important;
  }

  .faq-btn {
    /* width: 100%; */
    justify-content: center;
    padding: 10px 14px;
  }

  /* .faq-btn img {
    display: none;
  } */

  .faq-header {
    font-size: 15px;
  }

  .faq-body {
    font-size: 15px;
  }

  .faq-right {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ========== Extra Small (≤ 480px) ========== */
@media (max-width: 480px) {
  .faq-title {
    font-size: 24px !important;
  }

  .faq-subtitle {
    font-size: 16px !important;
  }

  .faq-btn {
    font-size: 16px !important;
  }

  .faq-header {
    font-size: 16px !important;
  }

  .faq-body {
    font-size: 16px !important;
  }
}
.custom-footer {
  background-image: url("../img/section-footer.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  color: #333;
  font-family: "Poppins", sans-serif !important;
  max-width: 1920px;
  width: 100%;
  box-sizing: border-box;
  background-color: transparent; /* default */
}

/* Container */
.footer-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1320px;
  gap: 60px;
  padding: 80px 0px;
}

/* Middle Row */
.middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
}

/* Left Section */
.footer-left {
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  width: 191px;
  height: auto;
  margin-bottom: 12px;
}

.footer-tagline {
  color: #404040;
  font-family: "Poppins", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.footer-center .footer-address span {
  display: block;
  font-family: "Poppins", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
.footer-center .footer-address .heading {
  font-weight: 600;
  margin-bottom: 6px;
}

/* Right Section */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: right;
  min-width: 260px;
}

.footer-heading {
  font-family: "Poppins", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #ff4d4d;
}

.footer-email,
.footer-phone {
  font-family: "Poppins", sans-serif !important;
  font-size: 20px;
  font-weight: 500;
  color: #fb5343;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Bottom Row */
.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  font-family: "Poppins", sans-serif !important;
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copyright {
  font-family: "Poppins", sans-serif !important;
  font-size: 13px !important;
  color: #404040 !important;
}

/* Tablet and below (still show bg image) */
@media (max-width: 768px) {
  .custom-footer {
    background-size: 180%;
    background-position: center;
    padding: 40px 16px;
    background-color: #f5f5f5;
  }

  .middle {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    width: 100%;
    text-align: left;
  }

  .footer-email,
  .footer-phone {
    font-size: 18px;
  }

  .footer-heading {
    font-size: 15px;
  }

  .footer-center .footer-address span {
    font-size: 16px;
  }

  .bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 12px;
    margin-top: 10px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-logo {
    width: 160px;
  }

  .footer-tagline {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .custom-footer {
    background-image: none;
    background-color: #f5f5f5;
  }
  .footer-email,
  .footer-phone {
    font-size: 16px;
  }

  .footer-links a {
    font-size: 12px;
  }
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1400;
  padding: 20px;
}

.form-wrapper {
  background: #111;
  border-radius: 20px;
  max-width: 920px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.close-model-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  font-size: 20px;
  line-height: 1;
  opacity: 0.7;
  cursor: pointer;
  border: none;
  background-color: #ffffff;
  color: #333;
  border-radius: 50%;
  z-index: 1001;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s, opacity 0.25s, background-color 0.3s, color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

/* The × symbol */
.close-model-btn::before {
  content: "×";
  display: block;
  width: 36px;
  height: 36px;
  font-family: serif;
  font-size: 30px;
  line-height: 1;
}

/* Hover effects */
.close-model-btn:hover {
  opacity: 1;
  background-color: #fb5343;
  color: #fff;
  transform: rotate(90deg);
}
.modal-container {
  display: flex;
  flex-direction: row;
  height: 640px;
  border: 4px solid #e63946;
  border-radius: 25px;
  overflow: hidden;
}

.red-section {
  background-color: #e63946;
  width: 40%;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.red-section .logo {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
}

.red-section .logo img {
  width: 180px;
  height: 150px;
}

.illustration {
  width: 100%;
}

.form-section {
  background-color: #f5f5f5;
  width: 100%;
  color: #000;
  padding: 40px 50px;
}

.form-section h3 {
  font-family: "Poppins", sans-serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  margin-bottom: 10px !important;
}

.form-section .subtitle {
  font-family: "Poppins", sans-serif !important;
  font-size: 13px !important;
  color: #404040 !important;
  margin-bottom: 25px !important;
  line-height: 1.4 !important;
}

.form-control {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #DFDFDF !important;
  border-radius: 0 !important;
  color: #404040 !important;
  padding: 10px 0 !important;
  width: 100% !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  margin-bottom: 20px !important;
}

.form-control::placeholder {
  color: #aaa;
}

.form-control:focus {
  outline: none !important;
  border-bottom: 1px solid #404040 !important;
}

.phone-input {
  display: flex !important;
  align-items: center !important;
  border-bottom: 1px solid #DFDFDF !important;
  margin-bottom: 20px !important;
  padding-bottom: 5px !important;
}

.phone-input img {
  width: 20px !important;
  margin-right: 5px !important;
}

.phone-input span {
  font-family: "Poppins", sans-serif !important;
  font-size: 14px !important;
  margin-right: 5px !important;
  color: #000 !important;
}

.phone-input input {
  background: transparent !important;
  border: none !important;
  color: #404040 !important;
  flex: 1 !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 14px !important;
}

.phone-input input:focus {
  outline: none;
}

textarea.form-control {
  resize: none;
  height: 60px;
}

.submit-btn {
  background: linear-gradient(to right, #ff6f61, #d81b60);
  border: none;
  border-radius: 25px;
  padding: 12px;
  width: 100%;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
}

.privacy-text {
  font-family: "Poppins", sans-serif !important;
  font-size: 10px !important;
  color: #000 !important;
  text-align: center !important;
  margin-top: 15px !important;
}

.privacy-text a {
  color: #000 !important;
  text-decoration: underline !important;
}
/* Base adjustments */
.modal-container {
  flex-wrap: nowrap;
  height: auto;
  max-height: 90vh;
  width: 100%;
}

/* Tablet & Below */
@media (max-width: 992px) {
  .modal-container {
    flex-direction: column;
    height: auto;
    border-radius: 20px;
  }

  .red-section {
    display: none;
  }

  .red-section .logo {
    display: none;
  }

  .red-section .logo img {
    display: none;
  }

  .illustration {
    display: none;
  }

  .form-section {
    width: 100%;
    padding: 25px 20px;
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  .modal-container {
    border-width: 2px;
  }

  .form-section h3 {
    font-size: 18px;
  }

  .form-section .subtitle {
    font-size: 12px;
  }

  .form-control,
  .phone-input input {
    font-size: 13px;
  }

  .submit-btn {
    font-size: 13px;
    padding: 10px;
  }

  .privacy-text {
    font-size: 9px;
  }

  .red-section {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .illustration {
    display: none;
  }

  .close-model-btn {
    width: 26px;
    height: 26px;
    font-size: 18px;
    top: 15px;
    right: 15px;
  }
}

@media (max-width: 768px) {
  .modal-container {
    flex-direction: column;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    max-height: 100vh;
    padding: 0;
    border: none;
    background-color: #000;
  }

  .red-section {
    display: none !important;
  }

  .form-section {
    width: 100%;
    padding: 30px 20px;
    background-color: #f5f5f5;
  }
}
.mouse {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 28px;
  height: 48px;
  border: 2px solid #333;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 6px;
  box-sizing: border-box;
  overflow: hidden;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: #333;
  border-radius: 2px;
  animation: scrollDown 1.5s linear infinite;
  position: relative;
}

@keyframes scrollDown {
  0% {
    top: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    top: 20px;
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}



/*======= Mobile CSS ========*/
@media (max-width: 768px) {
  .header-container {
    height: auto;
  }
  .second-container {
    height: auto;
  }
  .logo img {
    width: auto;
    height: 40px;
  }
  .text-container h1 .hero-h1-small {
    font-size: 24px !important;
  }
  .accordion-container {
    padding: 0px;
  }
  .cta-elements {
    min-height: auto;
  }
  .cta-title h2 {
    margin-bottom: 8px !important;
  }
  .Manufacturing {
    padding: 60px 20px;
  }
  .section-case-study {
    padding: 60px 20px;
  }
  .section-case-study.last {
    padding: 0px 20px 60px;
  }
  .customers-elements {
    flex-direction: column;
    gap: 24px;
  }
  .section-insights {
      padding: 60px 20px;
  }
  .insights-elements {
    gap: 24px;
    justify-content: flex-start;
    flex-direction: column;
    align-content: flex-start;
    align-items: center;
  }

  .insight-card {
    width: 100% !important;
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }

  .footer-container {
    gap: 24px;
    padding: 40px 0px;
  }
  .footer-left {
    gap: 8px;
  }
  .middle {
    gap: 24px;
  }
  .footer-right {
    gap: 8px;
  }
  .footer-contact {
    gap: 0px;
  }
  .footer-email, .footer-phone {
    font-size: 16px;
  }
  .footer-copyright,
  .footer-links a {
    font-size: 14px;
  }

  .section-trusted {
    padding: 60px 20px;
  }
}

@media (max-width: 600px) {
    .components-list {
        grid-template-columns: 1fr !important;
    }
}

a.btn-default, button.btn-default, div.btn-default {
  background: unset !important;
  background-color: #e74c3c !important;
}


.intl-tel-input.iti-container {
  z-index: 9999 !important;
}