* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
:root {
  
  --button-background:#1265e2;
}
body,
html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}
main {
  width: 100%;
  height: max-content;
}
.new-hero {
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: start;
  flex-direction: column;
  flex-wrap: wrap;
  background-color:var(--background-color);
  position: relative;
  overflow: hidden;
}

.new-hero-container {
  width: 100%;
  display: flex;
  gap: 20px;
  
}
.new-bg-img-box {
  position: absolute;
  right: -230px;
  top: -50px;
  height: 700px;
  width: 800px;
  border-radius: 50%;
  border: 2px solid rgb(179, 202, 223);
  overflow: hidden;
  background-image: url("/images/bg4.png");
  background-size:100% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  box-shadow: 2px 2px 10px var(--text-button-color);
}
.new-left-hero {
  min-width: 350px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 40px;
  padding: 20px 20px;
  margin-top:60px;
  z-index: 99;
}
.new-hero-subHeading{
  width: 50%;
  font-size: 30px;
  font-weight: 500;
  color: var(--text-color);

}
.new-left-hero h1 {
  font-size: 50px;
  padding: 5px 5px;
  text-transform: capitalize;
  color: var(--text-color);
}
.new-left-hero-btn-box{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#request-btn,#enquiry-btn {
  width:180PX;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 20px;
  border: 1px solid white;
  cursor: pointer;
  background-color: var( --button-background);
 color: var(--text-color);
  transition: all 0.new-3s ease;
  box-shadow: 2px 2px 10px gray;
  &:active {
    transform: scale(0.9);
  }
  &:hover{
    background-color: var(--background-color);
    color: var(--text-color);
  }
}
.new-left-hero ul {
  width: 100%;
  display: flex;
  gap: 20px;
  list-style: none;
  color: var(--text-color);
}
.new-left-hero ul li {
  font-weight: 500;
}
.new-right-hero{
  width: 100%;
  height: 100%;
  z-index: 99;
  position: absolute;
  display: none;

}
.new-cross-box{
width: 100%;
text-align: end;
cursor: pointer;
}
.new-right-hero-info {
  width: 400px;
  height:100%;
  background-color: rgba(0, 0, 0, 0.945);
  padding: 20px 20px;
  
}
#heading{
  width: 100%;
  text-align: center;
  font-size: 25px;
  color: var(--text-color);
  text-decoration: underline;
}
#enquiry-subHeading{
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);

}
.new-enquiry-box form{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.new-enquiry-box input {
  height: 40px;
  outline: none;
  border: 1px solid var(--muted);
  border-radius: 8px;
  padding: 0px 15px;
}
#message{
  height: 80px;
  outline: none;
  border: 1px solid var(--muted);
  border-radius: 8px;
  padding: 0px 15px;
  
}
.new-enquiry-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-enquiry-btn button {
  width: 100%;
  padding: 12px 15px;
  border-radius: 5px;
  border: 1px solid white;
  cursor: pointer;
  background-color: var( --button-background);
  color: var(--text-color);
  transition: all 0.new-3s ease;
  &:active {
    transform: scale(0.9);
    box-shadow: 2px 2px 10px gray;
  }
}
.new-what-we-do {
  width: 100%;
  height: max-content;
  padding: 20px 40px;
  background-color:var(--background-color);
  line-height:normal;
  text-align:start;
}
.new-what-we-do-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.new-what-we-do h2 {
  font-size: 30px;
  text-align: center;
  color: var(--text-color);
}
.new-left-what-we-do h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-color);
}
.new-left-what-we-do {
  min-width: 350px;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: start;
  flex-wrap: wrap;
}
.new-left-what-we-do h2 {
  font-size: 30px;
  color: var(--text-color);
}
.new-left-what-we-do-ul {
  margin-top: 40px;
  margin-left: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: circle;
  text-transform: capitalize;
}
.new-left-what-we-do-li{
  font-weight: 500;
  color: var(--text-color);
  font-size: 18px;
}
.new-left-what-we-do button {
  margin-top: 30px;
  width:max-content;
  padding: 10px 30px;
  border-radius: 5px;
  border: 1px solid white;
  cursor: pointer;
  background-color: var( --button-background);
  color: var(--text-color);
  transition: all 0.new-3s ease;
  &:active {
    transform: scale(0.9);
    box-shadow: 2px 2px 10px gray;
  }
}
.new-left-what-we-do button a{
  color: var(--text-color);
  font-size: 18px;
  text-decoration: none;
  
}
.new-right-what-we-do {
  width: 45%;
  min-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
  height: 420px;
}
.new-right-what-we-do h2 {
  width: 100%;
  text-align: center;
  color: var(--text-color);
}
.new-product-box {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.new-product {
  width: 200px;
  height: 175px;
  border: 2px solid silver;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
  &:hover {
    transform: scale(0.9);
  }
}
.new-product img {
  width: 100%;
  height: 100%;
}
.new-product-info {
  background-color: var(--background-color);
  width: 100%;
  height: 50px;
  border-top: 1.new-5px solid black;
  height: max-content;
  display: flex;
  flex-direction: column;
  bottom: 0px;
  padding: 5px 10px;
  position: absolute;
  z-index: 33;
}
.new-product-para {
  color: var(--text-color);
  font-size:15px;
  line-height: normal;
  letter-spacing: normal;
}
.new-product-name {
  text-transform: capitalize;
  color: var(--text-color);
  font-size:16px;
}
.new-our-solution {
  padding:20px 0px;
  width: 100%;
  height: max-content;
   background-color: var(--background-color);
}
.new-solution-heading{
  font-size: 40px;
  width: 100%;
  text-align: center;

}
.new-solution-sub-heading{
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}
.new-project-container {
  width: 100%;
  height: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.new-project {
  min-width: 250px;
  width: 350px;
  min-height: 300px;
  height: max-content;
  background-color: var(--background-color);
  border-radius: 15px;
  padding-bottom:10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  &:hover {
    transform: translateY(-10px);
  }
}
.new-project img {
  width: 100%;
  height: 100%;
}
.new-project-heading{
  font-size: 30px;
  font-weight: 500;
  color: var(--text-color);
  padding: 10px 20px;
}
.new-project p {
  color: var(--text-color);
  font-weight: 500;
  padding-left: 20px;
  text-align:start;	
}
.new-project a {
  font-size: 18px;
  color: var(--text-color);
  cursor: pointer;
  text-decoration: none;
  padding-left: 20px;
  &:hover {
    text-decoration: underline;
  }
}
.new-our-solution-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.new-our-solution-btn button {
  width: max-content;
  padding: 10px 45px;
  border-radius: 5px;
  border: 1px solid white;
  cursor: pointer;
  background-color: var(--button-background);
  transition: all 0.new-3s ease;
  &:active {
    transform: scale(0.9);
    box-shadow: 2px 2px 10px gray;
  }
}
.new-our-solution-btn button a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 20px;
}
.new-we-deliver {
  width: 100%;
  height: max-content;
  padding: 20px 20px;
  color: var(--text-color);
  background-color: var(--background-color);
  text-align:none;
}

.deliver-heading {
  font-size: 30px;
  text-align: center;
  margin-bottom: 10px;
 color: var(--text-color);
}

.new-process {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 20px;
  text-align: start;
}

.new-step {
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  min-height:470px;
  margin: 0 15px 30px;
  padding: 10px 25px;
  background-color: var(--background-color);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.new-step:hover {
  transform: translateY(-5px);
}

.new-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #3498db;
  border-radius: 8px 8px 0 0;
}

.new-step:nth-child(2)::before {
  background-color: #2ecc71;
}

.new-step:nth-child(3)::before {
  background-color: #e74c3c;
}

.new-step:nth-child(4)::before {
  background-color: #f39c12;
}

.deliver-subHeading {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-color);
  position: relative;
  padding-bottom: 10px;
  line-height:normal;
  letter-spacing:normal;
}

.deliver-subHeading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
 background-color: #3498db;
}

.new-step:nth-child(2) h3::after {
  background-color: #2ecc71;
}

.new-step:nth-child(3) h3::after {
  background-color: #e74c3c;
}

.new-step:nth-child(4) h3::after {
  background-color: #f39c12;
}

.deliver-para{
  margin-bottom: 20px;
  color: var(--text-color);
  font-size:1rem;
  line-height:normal;
  letter-spacing:normal;
  
}

.new-step ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.new-step ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-color);
}

.new-step ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #3498db;
  font-weight: bold;
}

.new-step:nth-child(2) ul li::before {
  color: #2ecc71;
}

.new-step:nth-child(3) ul li::before {
  color: #e74c3c;
}

.new-step:nth-child(4) ul li::before {
  color: #f39c12;
}

/* Step number indicator */
.new-step::after {
  content: attr(data-step);
  position: absolute;
  top: -15px;
  right: 20px;
  width: 30px;
  height: 30px;
 background-color:#3498db;
  color: var(--text-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.rem;
}

.new-step:nth-child(2)::after {
  background-color: #2ecc71;
}

.new-step:nth-child(3)::after {
  background-color: #e74c3c;
}

.new-step:nth-child(4)::after {
  background-color: #f39c12;
}

.new-tursted {
  padding: 20px 20px;
  text-align: center;
  background-color: var(--background-color);
}

.new-tursted h2 {
  font-size: 40px;
  color: var(--text-color);
  text-transform: capitalize;
}

.new-tursted h3 {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: var(--text-color);
  margin-bottom:10px;
}

.new-company-box {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.new-companies {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  min-width: 200px;
  padding: 20px;
  margin: 0 10px;
  background-color: var(--background-color);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  display: flex;
  animation: carousel 15s linear infinite;
}
.new-companies img {
  height: 80px;
  width: auto;
  margin-bottom: 15px;
  object-fit: contain;
  mix-blend-mode:darken;
}

.new-companies h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--text-color);
  text-transform: capitalize;
}

.new-companies a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
}

/* Carousel Animation */
.new-company-box {
  display: flex;
  overflow: hidden;
}

.new-company-box::before,
.new-company-box::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}



@keyframes carousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1200px);
  }
}

.new-about-us{
  width: 100%;
  height: max-content;
  padding: 20px 40px;
  background-color: var(--background-color);
}
.about-heading{
  width: 100%;
  font-size: 40px;
  text-align: center;
  color: var(--text-color);
}
.new-about-container{
  width: 100%;
  height: 100%;
  display: flex;
  gap: 10px;
}
.new-about-left{
  width: 60%;
  height:100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-wrap: wrap;
  align-items: start;
}
.about-subHeading{
  margin-top: 20px;
  font-size: 25px;
  color: var(--text-color);
}
.about-para{
  font-size: 18px;
  color: var(--text-color);
  font-weight: 400;
}
.new-about-left ul{
  width: 100%;
  margin-left: 20px;
}
.new-about-left ul li{
  font-weight: 500;
  color: var(--text-color);
  list-style: circle;
  font-size: 18px;
}
.new-about-left a {
  width:max-content;
  padding: 12px 35px;
  border-radius: 5px;
  border: 1px solid white;
  cursor: pointer;
  background-color: var( --button-background);
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.new-3s ease;
  &:active {
    transform: scale(0.9);
    box-shadow: 2px 2px 10px gray;
  }
}
.new-about-right{
  width: 40%;
  height: 100%;
  margin-top: 40px;
}
.new-about-images{
  width: 100%;
  height: 100%;
  position: relative;
  padding-left: 20px;
  
}
.new-about-img-one{
 width: 350px;
 height: 270px;
 position:absolute;
 bottom:-70px;
 right: 20px;
 box-shadow: 2px 2px 10px gray;
 border-radius: 10px;
 cursor: pointer;
 transition: all 0.1s ease;
 &:hover{
  transform: scale(1.1);
   border: 2px solid rgb(146, 146, 146);
 }
}
.new-about-img-two{
 width:400px;
 height: 300px;
 box-shadow: 2px 2px 10px rgb(83, 83, 83);
 border-radius: 10px;
 border: 2px solid rgb(146, 146, 146);
  cursor: pointer;
 transition: all 0.2s ease;
 &:hover{
  transform: scale(1.05);
  z-index: 99;
 }
}

.new-faq-section {
  width: 100%;
  padding: 20px 20px;
  background-color: var(--background-color);
}
.new-faq-box{
  width: 100%;
  display: flex;
  gap: 20px;
  padding: 20px 40px;
}

.faq-heading{
  width: 100%;
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-color);
}
.new-faqs-info{
  width: 60%;
  display: flex;
  justify-content:center;
  align-items: start;
  flex-wrap: wrap;
  gap: 30px;
}
.new-faq {
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  cursor: pointer;
}

.new-faq-question {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

.new-faq-answer {
  margin-top: 10px;
  display: none;
  font-size: 16px;
  color: var(--text-color);
}

.new-faq.new-active .new-faq-answer {
  display: block;
}
.new-faq-link{
  width: 100%;
  text-align:start;
  padding: 10px 40px;
}
.new-faq-link a{
  width: max-content;
  font-size: 20px;
  border-radius: 5px;
  padding: 10px 30px;
  background-color: var( --button-background);
  color: var(--text-color);
  text-decoration: none;
  border:1px solid white;
  transition: all 0.new-3s ease;
  &:active{
    transform: scale(0.9);
    box-shadow: 2px 2px 10px gray;
  }
}
.new-faq-img{
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    mix-blend-mode:darken;
  }
.new-contact {
  width: 100%;
  height: 100%;
  padding: 20px 20px;
  text-align: center;
  background-color: var(--background-color);
}

.new-contact h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.new-contact h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
 color: var(--text-color);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.new-contac-info {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 10px;
  text-align: left;
}

.new-contact form {
  width: 50%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 15px;
}

.new-contact input,
.new-contact textarea {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.new-contact input::placeholder,
.new-contact textarea::placeholder {
  color: gray;
}

.new-contact textarea {
  min-height: 120px;
  resize: vertical;
}

.new-contact form div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.new-contact button {
  padding: 10px 15px;
  background-color: var( --button-background);
  color: var(--text-color);
  border: none;
  border-radius: 4px;
  font-size: 1.5rem;
  cursor: pointer;
  border:1px solid white;
  transition: background-color 0.3s;
}


.new-loaction {
  width: 50%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}


.new-location-info {
  padding: 20px;
 background-color: var(--background-color);
  border-radius: 4px;
}

.new-location-info h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.new-location-info h3 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.new-location-info p {
  margin: 8px 0;
  cursor: pointer;
  color: var(--text-color);
  &:hover{
    color: #1265e2;
  }
}
footer {
  background-color: var(--background-color);
  color: var(--text-color);
  padding: 40px 20px;
  text-align: center;
}

.new-footer-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}
.new-social {
  width: 100%;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.new-social a {
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  &:hover {
    transform: scale(0.9);
    box-shadow: 2px 2px 10px gray;
  }
}
.new-social a img {
  width: 100%;
  height: 100%;
}

.new-social a:hover,
.other-web a:hover {
  background-color: var(--background-color);
}


/*OUR SOLUIONS STYLE*/

.our-solution {
  width: 100%;
  height: max-content;
  margin-top: 10px;
  padding: 0px 10px;
}
.solution-heading {
  width: 100%;
  text-align: center;
}
.our-solution h2 {
  font-size: 20px;
  text-align: center;
  font-weight: 400;
}
.project-container {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
}
.project {
  min-width: 250px;
  width: 350px;
  min-height: 300px;
  height: max-content;
  background-color: var(--background-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 2px 2px 10px rgb(0,0,0,0.5);
  transition: all 0.3s ease;
  &:hover {
    transform: translateY(-10px);
    
  }
}
.project img {
  width: 100%;
  height: 100%;
}
.project h1 {
  font-size: 30px;
  font-weight: 500;
  color: var(--text-color);
  padding: 10px 20px;
}
.project p {
  color: var(--text-color);
  font-weight: 500;
  padding-left: 20px;
}
.project a {
  font-size: 18px;
  color: var(--text-color);
  cursor: pointer;
  text-decoration: none;
  padding-left: 20px;
  &:hover {
    text-decoration: underline;
  }
}


/* FEATURES STYLE */
.feature-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* --- Section Header --- */
.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header h1 {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.process-header p {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
   color: var(--text-color);
}

/* --- Timeline Styles --- */
.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

/* The connecting line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px; /* Aligns with the center of the first step number */
    right: 50px; /* Aligns with the center of the last step number */
    height: 4px;
    background-color:var(--background-color);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    padding: 0 15px;
    border-radius: 10px;
    &:hover{
        box-shadow: 2px 2px 10px gray;
    }

}

.step-number {
    width: 60px;
    height: 60px;
    background-color:var(--background-color);
    color: var(--text-color);;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px auto;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
   background-color:var(--background-color);
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 5px 0;
}

.step-percentage {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.process-step p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.process-step ul {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 0.9rem;
}

.process-step ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.process-step ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--text-color);
    font-weight: bold;
}

/* --- Flexibility Section --- */
.flexibility-section {
    background-color:var(--background-color);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.flexibility-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}

.flexibility-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.optional-components-grid ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.optional-components-grid ul li {
    background-color:var(--background-color);
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.optional-components-grid ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* --- Footer --- */
.process-footer {
    text-align: center;
}

.process-footer p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-color);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .process-header h1 {
        font-size: 2.2rem;
    }

    /* Change timeline to vertical */
    .process-timeline {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-timeline::before {
        top: 30px;
        bottom: 30px; /* instead of right */
        left: 30px;
        right: auto;
        width: 4px;
        height: auto;
    }

    .process-step {
        width: 100%;
        text-align: left;
        padding-left: 70px; /* Space for the circle and line */
        margin-bottom: 40px;
    }

    .step-number {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
    }
    
    .flexibility-section {
        padding: 20px;
    }
}


/* ABOUT STYLE */
about-page {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}

/* ------------------------------
   CONTAINER
--------------------------------*/
.about-page .container {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}

/* ------------------------------
   SECTION CARD
--------------------------------*/
.about-page .section {
    background-color:var(--background-color);
    padding: 50px 45px;
    margin-bottom: 50px;
    border-radius: 16px;
    border: 1px solid #e5e9f2;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.about-page .section:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

/* ------------------------------
   TITLES
--------------------------------*/
.about-page h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--text-color);
    letter-spacing: -0.5px;
    position: relative;
    padding-left: 18px;
}

.about-page h2::before {
    content: "";
    width: 6px;
    height: 100%;
    background: #0051ff;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px;
}

.about-page h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 25px;
    color: var(--text-color);
}

/* ------------------------------
   PARAGRAPHS
--------------------------------*/
.about-page p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--text-color);
}

/* ------------------------------
   LISTS
--------------------------------*/
.about-page ul {
    margin: 18px 0;
    padding-left: 25px;
}

.about-page ul li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
    position: relative;
}

.about-page ul li::before {
    content: "•";
    color: #0051ff;
    position: absolute;
    left: -18px;
    font-size: 20px;
}

/* ------------------------------
   SECTION SPACING
--------------------------------*/
.about-page .section + .section {
    margin-top: 60px;
}

/* FAQ STYLE*/
 .faq-header {
        padding: 60px 20px;
        text-align: center;
        background-color:var(--background-color);
        color: var(--text-color);
    }
    .faq-header h1 {
        font-size: 40px;
        margin-bottom: 10px;
    }
    .faq-header p {
        font-size: 18px;
        opacity: 0.9;
    }

    .faq-container {
        max-width: 900px;
        margin: 50px auto;
        padding: 0 20px;
    }

    .faq {
       background-color:var(--background-color);
        border-radius: 10px;
        margin-bottom: 15px;
        padding: 20px;
        cursor: pointer;
        border: 1px solid #ddd;
        transition: 0.3s;
    }

    .faq:hover {
        background: #f0f5ff;
    }

    .faq h3 {
        margin: 0;
        font-size: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq p {
        margin-top: 10px;
        display: none;
        line-height: 1.7;
        font-size: 16px;
    }

    .faq.active p {
        display: block;
    }

    .icon {
        font-size: 24px;
        transition: 0.3s;
    }

    .faq.active .icon {
        transform: rotate(45deg);
    }

@media (max-width: 992px) {
    .about-page .section {
        padding: 40px 30px;
    }

    .about-page h2 {
        font-size: 30px;
    }

    .about-page h3 {
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .about-page .section {
        padding: 30px 22px;
        border-radius: 12px;
    }

    .about-page h2 {
        font-size: 26px;
        padding-left: 14px;
    }

    .about-page h2::before {
        width: 4px;
    }

    .about-page p,
    .about-page ul li {
        font-size: 16px;
    }
}


@media (max-width: 768px) {
  .new-hero-container,
  .new-what-we-do-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .new-left-hero,
  .new-left-what-we-do {
    width: 100%;
  }
  .new-right-what-we-do {
    width: 100%;
    height: max-content;
  }
  .new-bg-img-box{
    opacity: 10%;
  }
  .new-faqs-info{
    width: 100%;
  }
  .new-faq-box{
    flex-wrap: wrap;
  }
  .new-faq-img{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	mix-blend-mode:darken;
    
  }
  .new-faq-img img{
    width: 350px;
    border-radius: 10px;
  }

  .new-contact form div {
    grid-template-columns: 1fr;
  }
 
}
@media (max-width: 900px) {
  .new-contac-info{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .new-loaction,.new-contac-info form{
    width: 90%;
  }
}
@media (max-width:991px) {
  .new-product-box{
    overflow: auto;
    scrollbar-width: none;
  }
}
@media (max-width: 1020px){
.new-bg-img-box{
  opacity: 50%;
}
.new-about-container{
  flex-wrap: wrap;
}
.new-about-left{
  width: 100%;
}
.new-about-right{
  display: none;
}
}