@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom, #e2e8f0, #cbd5e1);
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}
.company-name{
  text-align: center;
  margin-top: 5rem;
}
.quote {
  text-align: center;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background-color: #1e293b;
  color: white;
  border-bottom: 2px solid #94a3b8;
}

.navbarleft {
  display: flex;
  gap: 2rem;
}

.navlink {
  color: white;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.navlink:hover {
  color: #38bdf8;
}

.navlink::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 100%;
  background: #38bdf8;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navlink:hover::after {
  transform: scaleX(1);
}

.navbarcenter img.headerlogo {
  height: 60px;
  object-fit: contain;
}

.services {
  padding: 4rem 2rem;
  text-align: center;
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.carousel-slide-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  position: relative;
}

.carousel-slide {
  min-width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: none;
  position: relative;
  justify-content: center;
  align-items: center;
}

.carousel-slide.active {
  display: flex;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 41, 59, 0.7);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 6px;
}

.carousel-btn:hover {
  background: rgba(56, 189, 248, 0.8);
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

.center-img-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(30, 41, 59, 0.75);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  border-radius: 8px;
  text-align: center;
}

.description {
  margin: 2rem auto;
  max-width: 800px;
  font-style: italic;
  font-size: 1.25rem;
  color: #334155;
}

.service-carousel {
  max-width: 900px;
  margin: 3rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-tabs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.tab-btn {
  padding: 0.75rem 1rem;
  font-weight: 600;
  border: none;
  background-color: #1e293b;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background-color: #38bdf8;
  color: #1e293b;
}

.brand-carousel-content {
  position: relative;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}

.brand-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  display: none;
  align-items: center;
  justify-content: center;
}

.brand-slide.active {
  display: flex;
}

.carousel-text {
  background-color: rgba(30, 41, 59, 0.75);
  color: white;
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  max-width: 90%;
  margin: auto;
}

.carousel-text h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.carousel-text p {
  font-size: 1rem;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom, #e2e8f0, #cbd5e1);
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background-color: #1e293b;
  color: white;
  border-bottom: 2px solid #94a3b8;
}

.navbarleft {
  display: flex;
  gap: 2rem;
}

.navlink {
  color: white;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.navlink:hover {
  color: #38bdf8;
}

.navlink::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 100%;
  background: #38bdf8;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navlink:hover::after {
  transform: scaleX(1);
}

.navbarcenter img.headerlogo {
  height: 60px;
  object-fit: contain;
}

.services {
  padding: 4rem 2rem;
  text-align: center;
}

.imgwrapper {
  position: relative;
  display: inline-block;
  max-width: 90%;
}

.stockconstruction {
  width: 100%;
  max-width: 800px;
  filter: blur(2px);
  border-radius: 12px;
}

.center-img-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1.5rem 2rem;
  background-color: rgba(30, 41, 59, 0.7);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid white;
}

.description {
  margin: 2rem auto;
  max-width: 800px;
  font-style: italic;
  font-size: 1.25rem;
  color: #334155;
}

.service-offer {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-offer h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.service-offer p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #475569;
}

.service-offer ul {
  list-style: none;
  padding-left: 0;
}

.service-offer li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  padding-left: 1rem;
  position: relative;
}

.service-offer li::before {
  content: "✔";
  color: #10b981;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.border {
  margin: 4rem auto;
  width: 90%;
  border-bottom: 3px solid #94a3b8;
}
.about {
  background-color: #ffffff;
  padding: 4rem 2rem;
  color: #1e293b;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.about-intro {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  color: #475569;
  line-height: 1.8;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: left;
}

.about-box {
  background: #f8fafc;
  border-left: 4px solid #38bdf8;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.about-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.about-box p {
  font-size: 1rem;
  color: #334155;
}
.contact {
  background-color: #1e293b;
  color: #f8fafc;
  padding: 4rem 2rem;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-intro {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  color: #cbd5e1;
}

.contact-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-around;
  text-align: center;
}

.contact-column {
  flex: 1;
  min-width: 250px;
}

.contact-column h3 {
  color: #38bdf8;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-column p {
  font-size: 1rem;
  color: #e2e8f0;
  line-height: 1.5;
}
.service-carousel {
  max-width: 900px;
  margin: 3rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-tabs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.tab-btn {
  padding: 0.75rem 1rem;
  font-weight: 600;
  border: none;
  background-color: #1e293b;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background-color: #38bdf8;
  color: #1e293b;
}

.carousel-content {
  position: relative;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  display: none;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  display: flex;
}

.carousel-text {
  background-color: rgba(30, 41, 59, 0.75);
  color: white;
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  max-width: 90%;
  margin: auto;
}

.carousel-text h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.carousel-text p {
  font-size: 1rem;
}
.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.carousel-slide-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  position: relative;
}

.carousel-slide {
  min-width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: none;
  position: relative;
  justify-content: center;
  align-items: center;
}

.carousel-slide.active {
  display: flex;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 41, 59, 0.7);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 6px;
}



.center-img-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(30, 41, 59, 0.75);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  border-radius: 8px;
  text-align: center;
}