/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.page-wrapper {
  min-height: 100vh;
  width: 100%;
  position: relative;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
  width: 100%;
  height: 10%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo img {
  height: 130px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 35px;
}

nav ul li a {
  text-decoration: none;
  color: #cccccc;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
}

.cart-link {
  text-decoration: none;
  color: #cccccc;
  margin-right: 25px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.cart-link:hover {
  color: #ffffff;
}

.button {
  text-decoration: none;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 22px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border-radius: 5px;
}

.button:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* Hero Section */
/* START: UPDATED CSS */
main.hero-section {
  position: relative; /* Establishes a positioning context for its absolute children */
  min-height: 100vh;  /* Ensures the section takes up at least the full height of the viewport */
}
/* END: UPDATED CSS */

.hero-content {
  position: absolute;
  top: 30%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(40px, 6vw, 75px);
  font-weight: 500;
  line-height: 1.1;
}

.hero-content .innovation-text {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}

.lets-talk-button {
  margin-top: 35px;
  display: inline-block;
}

.hero-graphic-container {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  max-width: 550px;
  z-index: 1;
}

.hero-graphic-image {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.testimonial {
  position: absolute;
  bottom: 10%;
  right: 8%;
  max-width: 320px;
  text-align: left;
  z-index: 2;
}

.testimonial .name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 3px;
}

.testimonial .title {
  font-size: 13px;
  color: #bbbbbb;
  margin-bottom: 12px;
}

.testimonial .quote {
  font-size: 13px;
  color: #aaaaaa;
  line-height: 1.6;
}
/* Combined Content Section (Vision, Services, Process) */
.content-section {
  background-color: #000000;
  color: #ffffff;
  padding: 100px 50px;
  font-family: "Outfit", sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-part + .section-part {
  margin-top: 120px; /* Increased top margin for more separation */
}

.section-title {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: #cccccc;
}

.title-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 10px;
  background: conic-gradient(#ffffff 0% 50%, #555555 50% 100%);
  transform: rotate(-90deg);
}

.section-heading {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  max-width: 1100px;
  margin: 0 0 60px 0;
}

/* Vision Box Styles */
.vision-content-box {
  background-color: #1c1c1e;
  border-radius: 15px;
  padding: 35px 45px;
  max-width: 800px;
}
.vision-tabs {
  display: flex;
  margin-bottom: 25px;
}
.tab-button {
  background: none;
  border: none;
  color: #888888;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  margin-right: 30px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.tab-button.active,
.tab-button:hover {
  color: #ffffff;
}
.vision-text p {
  font-size: 15px;
  color: #bbbbbb;
  line-height: 1.7;
}

/* Services Grid Styles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.service-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.service-graphic {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  margin-bottom: 25px;
}
.service-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
.service-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 25px;
}
.service-card p {
  font-size: 14px;
  color: #aaaaaa;
  line-height: 1.7;
}

/* Process Grid Styles */
.process-grid {
  position: relative;
  width: 100%;
  min-height: 550px;
  margin-top: 40px;
}
.process-card {
  position: absolute;
  width: 380px;
  height: 300px;
  background-color: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.process-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.5);
}
.process-1 {
  top: 0;
  left: 0;
}
.process-2 {
  top: 100px;
  left: 30%;
}
.process-3 {
  top: 200px;
  left: 60%;
}
.process-title {
  font-size: 28px;
  font-weight: 500;
}
.process-number {
  font-size: 80px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* --- Responsiveness --- */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-2 {
    left: 25%;
  }
  .process-3 {
    left: 50%;
  }
}

@media (max-width: 992px) {
  .process-grid {
    position: static;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .process-card {
    position: static;
    width: 100%;
    height: auto;
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .content-section {
    padding: 80px 30px;
  }
  .section-part + .section-part {
    margin-top: 80px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}