* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #142033;
  background: #ffffff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: auto;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 22, 40, 0.95);
  z-index: 1000;
}

.nav-wrapper {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #9fb7d4;
  margin-top: -8px;
}

.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #6db7ff;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(5, 15, 30, 0.78), rgba(5, 15, 30, 0.78)),
    url("../images/hero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding-top: 76px;
}

.hero-content {
  max-width: 780px;
}

.hero-label,
.section-label {
  color: #6db7ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-text {
  font-size: 19px;
  color: #d9e6f5;
  margin-bottom: 34px;
}

.hero-buttons,
.contact-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.btn.primary {
  background: #1b8cff;
  color: #ffffff;
}

.btn.primary:hover {
  background: #006bd6;
}

.btn.secondary {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn.secondary:hover {
  background: #ffffff;
  color: #0a1628;
}

.section {
  padding: 90px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

h2 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0a1628;
}

.center {
  text-align: center;
}

.about p {
  margin-bottom: 16px;
  color: #4a5a6d;
}

.services {
  background: #f4f8fc;
}

.cards {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #0a1628;
}

.card p {
  color: #5a6a7c;
}

.features {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.features div {
  background: #0a1628;
  color: #ffffff;
  padding: 22px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
}

.contact {
  background: #0a1628;
  color: #ffffff;
}

.contact h2 {
  color: #ffffff;
}

.contact p {
  color: #d9e6f5;
  margin-bottom: 24px;
}

.contact-box {
  max-width: 760px;
}

.footer {
  background: #06101f;
  color: #b8c7d8;
  text-align: center;
  padding: 22px 0;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: #0a1628;
    flex-direction: column;
    gap: 0;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 16px 5%;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 16px;
  }

  .grid-2,
  .cards,
  .features {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 65px 0;
  }

  h2 {
    font-size: 30px;
  }
}
.site-logo {
  display: flex;
  align-items: center;
  height: 76px;
}

.site-logo img {
  max-height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {

  .site-header {
    height: 70px;
  }

  .nav-wrapper {
    height: 70px;
  }

  .site-logo {
    height: 70px;
  }

  .site-logo img {
    max-height: 60px;
  }

}

@media (max-width: 768px) {
  .site-logo img {
    width: 125px;
  }
}

@media (max-width: 480px) {
  .site-logo img {
    width: 105px;
  }
}
.top-bar {
  background: #06101f;
  color: #b8c7d8;
  font-size: 13px;
  padding: 8px 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
}
.stats {
  background: #0a1628;
  padding: 55px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 25px 15px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
}

.stat-item h3 {
  color: #ffffff;
  font-size: 34px;
  margin-bottom: 6px;
}

.stat-item p {
  color: #9fb7d4;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item h3 {
    font-size: 26px;
  }
}

@media (max-width: 420px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
.industries {
  background: #ffffff;
}

.industries-grid {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-box {
  background: #f4f8fc;
  padding: 32px;
  border-radius: 14px;
  transition: 0.3s;
  border: 1px solid transparent;
}

.industry-box:hover {
  transform: translateY(-6px);
  border-color: #1b8cff;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.industry-box h3 {
  margin-bottom: 14px;
  color: #0a1628;
  font-size: 22px;
}

.industry-box p {
  color: #5a6a7c;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.contact-details {
  margin-top: 25px;
}

.contact-details p {
  margin-bottom: 10px;
}

.contact-form {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  margin-bottom: 14px;
  border: 1px solid #d8e2ee;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  font-family: Arial, sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1b8cff;
}

.contact-form button {
  width: 100%;
  border: none;
  background: #1b8cff;
  color: #ffffff;
  padding: 15px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #006bd6;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #25d366;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  z-index: 9999;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}
.why {
  background: #f4f8fc;
}

.why-text {
  max-width: 760px;
  margin: 18px auto 0;
  color: #5a6a7c;
  line-height: 1.8;
}

.why-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.why-card {
  background: #ffffff;
  padding: 38px;
  border-radius: 18px;
  transition: 0.35s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid transparent;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: #1b8cff;
}

.why-icon {
  width: 58px;
  height: 58px;
  background: #0a1628;
  color: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 24px;
  font-size: 20px;
}

.why-card h3 {
  margin-bottom: 14px;
  color: #0a1628;
  font-size: 24px;
}

.why-card p {
  color: #5a6a7c;
  line-height: 1.8;
}

@media (max-width: 900px) {

  .why-grid {
    grid-template-columns: 1fr;
  }

}
.components {
  background: #ffffff;
}

.components-text {
  max-width: 760px;
  margin: 18px auto 0;
  color: #5a6a7c;
  line-height: 1.8;
}

.components-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.component-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: 0.35s;
}

.component-card:hover {
  transform: translateY(-8px);
}

.component-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.component-content {
  padding: 26px;
}

.component-content h3 {
  margin-bottom: 12px;
  color: #0a1628;
  font-size: 24px;
}

.component-content p {
  color: #5a6a7c;
  line-height: 1.7;
}

@media (max-width: 900px) {

  .components-grid {
    grid-template-columns: 1fr;
  }

  .component-card img {
    height: 230px;
  }

}
.components {
  background: #ffffff;
}

.components-text {
  max-width: 780px;
  margin: 18px auto 0;
  color: #5a6a7c;
  line-height: 1.8;
}

.components-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.component-card {
  position: relative;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

.component-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.component-card:hover img {
  transform: scale(1.08);
}

.component-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,15,30,0.92),
    rgba(5,15,30,0.25)
  );
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.component-overlay h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.component-overlay p {
  color: #d9e6f5;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .components-grid {
    grid-template-columns: 1fr;
  }

  .component-card {
    height: 240px;
  }
}
.catalog-section {
  background:
    linear-gradient(rgba(5,15,30,0.88), rgba(5,15,30,0.88)),
    url("../images/catalog-bg.jpg");

  background-size: cover;
  background-position: center;
  padding: 110px 0;
  color: #ffffff;
}

.catalog-box {
  max-width: 850px;
  text-align: center;
}

.catalog-content h2 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 44px;
}

.catalog-content p {
  color: #d9e6f5;
  line-height: 1.9;
  max-width: 700px;
  margin: auto;
}

.catalog-buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.catalog-section .btn.secondary {
  border-color: #ffffff;
}

.catalog-section .btn.secondary:hover {
  background: #ffffff;
  color: #0a1628;
}

@media (max-width: 768px) {

  .catalog-content h2 {
    font-size: 32px;
  }

}