*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial,sans-serif;
  background:#f7fbff;
  color:#1e293b;
  line-height:1.6;
}

/* NAVBAR */

.navbar{
  max-width:1200px;
  margin:auto;

  padding:24px 20px;

  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:24px;
  font-weight:700;
  color:#0f172a;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:28px;
}

.nav-links a{
  text-decoration:none;
  color:#334155;
  font-weight:600;
}

.nav-links a:hover{
  color:#0ea5e9;
}

/* HERO */

.hero{
  overflow:hidden;

  background:
  linear-gradient(
    135deg,
    #f3f8ff,
    #e5f2ff
  );
}

.hero-container{
  max-width:1200px;
  margin:auto;

  padding:70px 20px;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

/* HERO TEXT */

.tag{
  display:inline-block;

  padding:10px 18px;

  border-radius:999px;

  background:#dbeafe;

  color:#2563eb;

  font-size:14px;
  font-weight:700;
}

.hero-text h1{
  font-size:58px;
  line-height:1.1;

  margin:24px 0;

  color:#0f172a;
}

.hero-text p{
  font-size:18px;

  color:#475569;

  margin-bottom:32px;
}

/* BUTTON */

.btn{
  display:inline-block;

  background:#0ea5e9;
  color:white;

  text-decoration:none;

  padding:14px 28px;

  border-radius:10px;

  font-weight:700;
}

.dark-btn{
  background:#0f172a;
}

/* HERO VISUALS */

.hero-visuals{
  overflow:hidden;
  width:100%;
  position:relative;
}

.scroll-track{
  display:flex;
  gap:24px;

  width:max-content;

  will-change:transform;

  animation:smoothScroll 32s linear infinite;
}

.svg-card{
  width:380px;
  min-width:380px;

  background:#f8fbff;

  border:1px solid #dce9f5;

  border-radius:24px;

  padding:12px;

  box-shadow:
  0 15px 40px rgba(148,163,184,.12);

  flex-shrink:0;
}

.svg-card svg{
  width:100%;
  display:block;
}


/* ANIMATION */

@keyframes smoothScroll{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(calc(-50% - 12px));
  }

}

.hero-visuals:hover .scroll-track{
  animation-play-state:paused;
}


/* SECTIONS */

.section{
  padding:100px 20px;
}

.container{
  max-width:1200px;
  margin:auto;
}

.light{
  background:#edf6ff;
}

h2{
  text-align:center;

  font-size:42px;

  margin-bottom:24px;

  color:#0f172a;
}

.center-text{
  max-width:800px;
  margin:auto;

  text-align:center;

  color:#475569;
}

/* CARDS */

.cards,
.products{
  margin-top:50px;

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(260px,1fr));

  gap:24px;
}

.card,
.product{
  background:#fbfdff;

  border:
  1px solid #e2edf7;

  border-radius:18px;

  padding:32px;

  box-shadow:
  0 10px 30px rgba(148,163,184,.08);
}

.icon{
  font-size:42px;
  margin-bottom:18px;
}

.card h3,
.product h3{
  margin-bottom:14px;
  color:#0f172a;
}

.card p,
.product p{
  color:#64748b;
}

/* CTA */

.cta{
  background:
  linear-gradient(
    135deg,
    #38bdf8,
    #0ea5e9
  );

  color:white;

  text-align:center;

  padding:90px 20px;
}

.cta h2{
  color:white;
}

/* CONTACT SECTION */

.contact-grid{
  margin-top:50px;

  display:grid;
  grid-template-columns:400px 1fr;

  gap:32px;
}

.contact-info{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.info-card{
  background:#fbfdff;

  border:
  1px solid #dce9f5;

  border-radius:18px;

  padding:28px;

  box-shadow:
  0 10px 30px rgba(148,163,184,.08);
}

.info-card h3{
  margin-bottom:12px;

  color:#0f172a;
}

.info-card p{
  color:#475569;
  line-height:1.8;
}

.map-container{
  min-height:420px;

  overflow:hidden;

  border-radius:20px;

  border:
  1px solid #dce9f5;

  box-shadow:
  0 10px 30px rgba(148,163,184,.08);
}

.map-container iframe{
  width:100%;
  height:100%;
}

/* MOBILE */

@media(max-width:900px){

  .contact-grid{
    grid-template-columns:1fr;
  }

  .map-container{
    min-height:320px;
  }

}
/* FOOTER */

footer{
  background:#e9f4ff;

  text-align:center;

  padding:24px;

  color:#334155;
}

/* MOBILE */

@media(max-width:900px){

  .hero-container{
    grid-template-columns:1fr;
  }

  .hero-text{
    text-align:center;
  }

  .hero-text h1{
    font-size:40px;
  }

  .navbar{
    flex-direction:column;
    gap:20px;
  }

  .svg-card{
    width:300px;
    min-width:300px;
  }

}