body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
  display: flex;
  align-items: center;
  background-color: #fff;
  overflow: hidden;
  margin-top: 50px;
  width: 100%;
  position: relative;
}
.hero-image {
  width: 60%;
}
.hero-image img {
  width: 100%;
  object-fit: cover;
}

.hero-text {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 50px;
  width: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 0;
}

.hero-text h1 {
  color: #2e0b3f;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-text p {
  color: #000;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #800000;
  color: #fff;
  padding: 13px 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #a00000;
}

/* About-us */

.about-us {
  padding: 70px 0 0;
  text-align: center;
  width: 70%;
  margin: auto;
}

.stats-number,
.stats-text {
  font-size: 1.1rem;
  color: #000;
}

/* who we are section */

.who-v-r {
  display: flex;
  align-items: center;
  background-color: #fff;
  overflow: hidden;
  margin-top: 50px;
  width: 100%;
  position: relative;
}
.wvr-text {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 70px;
  width: 45%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  text-align: center;
}
.wvr-image {
  margin-left: auto;
  width: 70%;
}
.wvr-image img{
  width: 100%;
}
.wvr img {
  width: 100%;
  object-fit: cover;
  max-width: 100%;
}
.wvr-blocks {
  padding-top: 20px;
}
.wvr-title {
  color: #a00000;
  font-size: 1.8rem;
  font-weight: 700;
}
.wvr-para {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 0;
}

/* What we do section */

.what-we-do {
  padding: 80px 0;
  text-align: center;
}
.block-cont{
  max-width: 800px;
  margin: auto;
}
.blocks{
 margin: 0 20px;
}
.blocks img{
  width: 100%;
}
.img-name {
  color: #a00000;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 30px 0;
}
.what-v-do-desc {
  font-size: 1.1rem;
  color: #000;
}

/* sara-fabrication */

.since-section {
  display: flex;
  align-items: center;
}
.image-collection {
  display: flex;
  gap: 30px;
  width: 50%;
}

.column-left,
.column-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.column-left {
  max-width: 400px;
}

.column-right {
  max-width: 400px;
}

.image-large,
.image-half {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: none;
}

.since-box {
  background-color: #800000;
  color: #fff;
  text-align: center;
  padding: 32px 20px;
}

.since-box h2 {
  font-size: 1.8rem;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.since-box p {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 500;
}

.desc-part {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 70px;
  width: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 5%;
  text-align: center;
}
.desc-para {
  color: #000;
  font-size: 1.1rem;
  padding-top: 45px;
  text-align: center;
}

/* carousel-section */

.carousel-container {
  position: relative;
  padding: 70px 0 20px 100px;
}

.gallery {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 55px;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.gallery::-webkit-scrollbar {
  display: none;
}

.slide .content {
  font-size: 19px;
  color: #000;
  text-align: left;
  padding: 15px 30px 15px 2px;
}
.slide .content .title {
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.slide .content .desc {
  font-size: 1.1rem;
  color: #000;
}

.carousel-btn {
  position: absolute;
  top: 40%;
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px;
  font-size: 30px;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 30px;
}

.carousel-btn:disabled {
  opacity: 0;
  pointer-events: none;
}

.prev {
  left: 0px;
}

.next {
  right: 0px;
}

/* Gallery section */

.fab-gallery {
  column-count: 4;
  column-gap: 15px;
  padding: 10px;
}

.fab-gallery img {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
  display: block;
}

.gallery-desc {
  font-size: 1.1rem;
  color: #000;
  text-align: center;
}

/* Customer Section */
.customer-section {
  padding: 50px 0;
}
.client-desc {
  font-size: 1.1rem;
  color: #000;
  text-align: center;
}
.carousel-section {
  max-width: 1400px;
  margin: 10px auto;
  padding: 0 20px;
  overflow: hidden;
}

.swiper {
  padding: 60px 0;
}

.swiper-slide {
  width: 50%;
  box-sizing: border-box;
}

.background-box {
  /* position: relative; */
  overflow: hidden;
  height: 400px;
  display: flex;
  align-items: end;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.testimonial-card {
  background: white;
  width: 50%;
  padding: 40px 30px 30px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: absolute;
  z-index: 2;
  bottom: -10%;
}

.testimonial-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
  margin-top: 10px;
  font-size: 1rempx;
  line-height: 1.6;
  color: #333;
}

.testimonial-name {
  margin-top: 20px;
  font-weight: 700;
  font-size: 18px;
  color: #000;
}

.swiper-pagination {
  margin-top: 20px;
}

/*.client-carousal*/

.client-section {
  padding: 60px 0;
  background: #f7f7f7;
  text-align: center;
}
.client-carousal {
  display: flex;
  overflow: clip;
  position: relative;
  gap: 10rem;
  width: 100%;
}

.client-carousal::before,
.client-carousal::after {
  content: "";
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  height: 100%;
  width: 10rem;
  z-index: 2;
}

.client-carousal::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.client-carousal::before {
  left: 0;
  top: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-10rem * 8));
  }
}

.client-carousal .logo {
  object-fit: contain;
  cursor: pointer;
  border-radius: 0.25rem;
  animation: scroll 10s linear infinite;
}

/* Form Section */

.form-container {
  padding: 70px 0;
}
.form-text {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #000;
  white-space: nowrap;
  margin-bottom: 30px;
}
form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
input[type='text'] {
  border: none;
  border-bottom: 1px solid #bbb;
  outline: none;
  padding: 6px 8px;
  font-size: 16px;
  color: #666;
  width: 350px;
}
input[type='email'],
input[type='tel'] {
  border: none;
  border-bottom: 1px solid #bbb;
  outline: none;
  padding: 6px 8px;
  font-size: 16px;
  color: #666;
  width: 400px;
}
input::placeholder {
  color: #bbb;
}
button {
  background-color: #800000; /* dark red */
  color: white;
  font-weight: 700;
  font-size: 18px;
  padding: 12px 36px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  width: 200px;
}
button:hover {
  background-color: #a00000;
}


