* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cormorant Garamond", serif;
  color: #333;
  line-height: 1.6;
}
h2,
h4 {
  text-transform: uppercase;
}
/* Header Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: white;
}

header.scrolled {
  background: #555;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-triangle {
  width: 60px;
  height: 50px;
  background: linear-gradient(135deg, #1a3a6b 0%, #2d5a9f 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5em;
  font-weight: bold;
}

.logo-text {
  font-size: 0.8em;
  color: #1a3a6b;
  font-weight: bold;
  letter-spacing: 2px;
}

header.scrolled .logo-text {
  color: #89b4d4;
}

nav {
  display: flex;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

nav a {
  text-decoration: none;
  font-size: 0.95em;
  color: #1a3a6b;
  font-weight: 500;
  transition: color 0.3s;
  letter-spacing: 0.5px;
  cursor: pointer;
}

header.scrolled nav a {
  color: #89b4d4;
}

nav a:hover {
  color: #d4a574;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5em;
  color: #1a3a6b;
  flex-direction: column;
  gap: 5px;
}

header.scrolled .menu-toggle {
  color: #89b4d4;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: currentColor;
  display: block;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("image/landing.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 2.5em;
  font-weight: bold;
  max-width: 800px;
  line-height: 1.4;
}

/* Integrated Metal Solutions */
.solutions {
  padding: 60px 20px;
  background: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.solutions-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.dd {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.solutions h2 {
  color: #000;

  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px; /* 114.286% */
  letter-spacing: 0.369px;
  text-transform: uppercase;
}
.solutions p {
  color: #727272;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
}
.solutions-icons {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.icon-box {
  text-align: center;
  flex: 1;
}

.icon {
  width: 154.672px;
  height: 162px;
  padding: 33.5px 6px 32.5px 10.672px;
  background: #e8eef5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.icon-box span {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.369px;
  text-transform: uppercase;
  color: #000;
}
.icon-box p {
  color: #727272;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.15px;
}

.solutions-image img {
  width: 100%;
  border-radius: 8px;
}

/* Vision & Mission */
.vision-mission {
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.vm-box {
  background: white;
  padding: 40px;
  border-radius: 4px;
  text-align: center;
}

.vm-box h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #1a3a6b;
  text-transform: uppercase;
}

.vm-box p {
  color: #666;
  line-height: 1.8;
}

/* Operations */
.operations {
  padding: 60px 20px;
  background: #f9f9f9;
}

.operations h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 1px;
  color: #1a3a6b;
  text-transform: uppercase;
}
.rror {
  color: #727272;
  text-align: center;
  /* BODYTEXT/B1 */
  font-family: "Cormorant Garamond";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 50px;
}
.operations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.op-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.op-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3em;
}

.op-content {
  padding: 35px 24px 30px 24px;
}
.op-image img {
  width: 100%;
}
.op-content h4 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #1a3a6b;
}

.op-content p {
  color: #666;
  font-size: 0.95em;
}

/* Key Metrics */
.metrics {
  padding: 60px 20px;
}

.metrics h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 10px;
  color: #1a3a6b;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.metric {
  text-align: center;
}

.metric-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #1a3a6b;
  margin-bottom: 10px;
}

.metric-label {
  color: #666;
  font-size: 0.95em;
}

/* Leadership */
.leadership {
  font-family: "Cormorant Garamond";
  padding: 60px 20px;
  background: #1a3a6b;
  color: white;
}

.leadership h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 15px;

  text-transform: uppercase;
}
.leadershipp {
  color: #fff;
  text-align: center;
  /* BODYTEXT/B1 */
  font-family: "Cormorant Garamond";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 30px;
}
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.leader {
  padding: 30px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.lww {
  display: flex;
  margin-bottom: 10px;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  text-align: center;
}
.l-text {
  text-align: justify;
}
.leader-text {
  text-align: center;
}
.leader-avatar {
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
}
.leader-avatar {
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  margin-bottom: 10px;
}
.leader img {
  width: 100%;
  border-radius: 20px;
}

.leader p {
  color: #fff;
  /* BODYTEXT/B4 */
  font-family: "Cormorant Garamond";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.15px;
}

/* Our Team */
.team {
  padding: 60px 20px;
  background: #fff;
}

.team h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 50px;
  color: #1a3a6b;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.team-member {
  text-align: center;
}

.team-avatar {
  border-radius: 50%;
  margin: 0 auto 15px;
}

.team-member h4 {
  font-size: 0.9em;
  color: #1a3a6b;
  margin-bottom: 5px;
}

.team-member p {
  font-size: 0.8em;
  color: #666;
}

/* Products */
.products {
  padding: 60px 20px;
}

.products h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 50px;
  color: #1a3a6b;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.product {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3em;
  min-height: 300px;
}

.product:nth-child(2) .product-image {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.product-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-info h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #1a3a6b;
}

.product-info p {
  color: #666;
  line-height: 1.8;
}

/* Footer */
footer {
  background: #1a3a6b;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .solutions-content,
  .vision-mission,
  .operations-grid,
  .metrics-grid,
  .leadership-grid,
  .team-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
  .solutions-icons {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
  }
  .leadership h2 {
    text-align: center;
    font-size: 1.6em;
    margin-bottom: 15px;
  }
  .leadership p {
    /* BODYTEXT/B1 */

    font-size: 14px;
  }
  .hero {
    padding: 0 15px;
  }
  .solutions h2 {
    font-size: 29px;
  }
  .icon {
    width: 120.672px;
    height: 150px;
    gap: 5px;
  }
  .icon-box p {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 1.8em;
  }

  .product {
    grid-template-columns: 1fr;
  }
}
.future-section {
  background: linear-gradient(135deg, #1a3a6b 0%, #0f2847 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.future-section h2 {
  font-size: 2.5em;
  letter-spacing: 3px;
  font-weight: 300;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.future-section p {
  font-size: 1.1em;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
  opacity: 0.95;
}

/* Products Section */
.products-section {
  padding: 80px 20px;
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 2.2em;
  letter-spacing: 2px;
  font-weight: 300;
  text-transform: uppercase;
  color: #1a3a6b;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #999;
  font-size: 1.1em;
  letter-spacing: 1px;
  font-weight: 400;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.product-item {
  text-align: center;
}

.product-image {
  margin: 0 auto 0px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5em;
}

.product-item h3 {
  font-size: 1.4em;
  color: #1a3a6b;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-weight: 500;
}

.product-item p {
  color: #666;
  font-size: 0.95em;
  line-height: 1.8;
  max-width: 300px;
  margin: 0 auto;
}

/* Footer Section */
.footer-section {
  background: white;
  padding: 60px 20px;
  border-top: 1px solid #eee;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #1a3a6b 0%, #2d5a9f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5em;
  font-weight: bold;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: relative;
}

.logo::after {
  content: "⛏";
  position: absolute;
}

.footer-column h4 {
  color: var(--Blue, #0f2f6a);
  /* SUB/S2 */
  font-family: "Cormorant Garamond";
  font-size: 18px;
  font-style: normal;
  font-weight: bolder;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #666;
  text-decoration: none;
  font-size: 0.95em;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #1a3a6b;
}

.footer-column .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  color: #666;
  font-size: 0.95em;
}

.contact-icon {
  color: #1a3a6b;
  font-weight: bold;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid #eee;
  padding-top: 30px;
  text-align: center;

  color: var(--black, #000);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.15px;
}

@media (max-width: 768px) {
  .future-section h2 {
    font-size: 1.8em;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-column .contact-item {
    justify-content: center;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-column .contact-item {
    gap: 0px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-title h2 {
    font-size: 1.8em;
  }
}
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #555;
    flex-direction: column;
    padding: 20px;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  header.scrolled nav {
    background: #555;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
  }

  nav a {
    display: block;
    padding: 15px;
    color: #89b4d4;
    font-size: 1.1em;
  }

  header.scrolled nav a {
    color: #89b4d4;
  }

  .header-content {
    padding: 15px 15px;
  }
}

@media (max-width: 468px) {
  .icon {
    width: 100.672px;
  }
  .logo-text img {
    width: 70px;
  }
}
