* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* NAVBAR */
.uxsvc-brand {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  margin-left: 10px;
}
.namelogo{
  display: flex;
}
.uxsvc-brand span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #9cc4ff;
  letter-spacing: 2px;
}
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(6, 22, 50, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.logo span {
  color: #ffd000;
}

/* LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: #e6ecff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

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

/* CTA BUTTON */
.nav-btn {
  padding: 8px 16px;
  background: #d61f26;
  border-radius: 6px;
  color: #fff !important;
  font-weight: 600;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #071a36;
    flex-direction: column;
    gap: 20px;
    padding: 25px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 16px;
  }
}

/* LOGO CONTAINER */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* LOGO IMAGE PLACEHOLDER */
.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

/* LOGO TEXT */
.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.logo-text span {
  color: #ffd000;
}

/* RESPONSIVE LOGO */
@media (max-width: 600px) {
  .logo-img {
    width: 36px;
    height: 36px;
  }

  .logo-text {
    font-size: 18px;
  }
}

/* WHATSAPP FLOAT */
.float{
  position:fixed;
  width:60px;
  height:60px;
  bottom:40px;
  right:40px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
  margin-top:16px;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

/* Background image (add later) */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero.png"); /* ADD IMAGE HERE */
  background-size: cover;
  background-position: center;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 18, 45, 0.95) 40%,
    rgba(5, 18, 45, 0.6)
  );
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

/* LEFT TEXT */
.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #e6f0ff;
}

.hero-sub {
  margin: 18px 0;
  font-size: 16px;
  color: #cfd9ff;
}

.hero-list {
  list-style: none;
  margin: 20px 0 30px;
}

.hero-list li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
  font-size: 16px;
}

.hero-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffd000;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.btn-primary {
  background: #d61f26;
  color: #fff;
}

.btn-primary:hover {
  background: #b8191f;
}

.btn-secondary {
  background: #25d366;
  color: #fff;
}

.btn-secondary:hover {
  background: #1ebd5a;
}

/* RIGHT VISUAL */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-box {
  width: 100%;
  height: 340px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-list li {
    text-align: left;
  }
}

.specialized {
  background: linear-gradient(180deg, #081a38, #0b234a);
  padding: 60px 20px;
  color: #fff;
}

.specialized-wrapper {
  max-width: 1000px;
  margin: auto;
}

/* TITLE */
.specialized h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* LIST */
.specialized-list {
  display: grid;
  grid-template-columns: 1fr; /* MOBILE */
  gap: 22px;
}

/* ITEM */
.special-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 0;
}

/* ICON */
.special-item .icon {
  min-width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* TEXT */
.special-item span {
  font-size: 16px;
  color: #e6ecff;
  line-height: 1.4;
}

/* TABLET */
@media (min-width: 768px) {
  .specialized-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 60px;
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .specialized h2 {
    font-size: 30px;
  }

  .special-item span {
    font-size: 17px;
  }
}
/* ================= UNIQUE RESET ================= */
.uxsvc-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
}
*{
    font-family: "Segoe UI", sans-serif;
}
/* ================= THEME ================= */
.uxsvc-wrapper {
  background: linear-gradient(180deg, #f4f7ff 0%, #ffffff 100%);
  padding: 70px 20px;
}

/* ================= COMMON TITLE ================= */
.uxsvc-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #0b1c3d;
  margin-bottom: 50px;
}

/* ================= SERVICES GRID ================= */
.uxsvc-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 1024px) {
  .uxsvc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .uxsvc-grid { grid-template-columns: 1fr; }
}

/* ================= SERVICE CARD ================= */
.uxsvc-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11,28,61,0.12);
  transition: all 0.3s ease;
}

.uxsvc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(11,28,61,0.18);
}

.uxsvc-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.uxsvc-card-content {
  padding: 22px;
}

.uxsvc-card h3 {
  font-size: 20px;
  color: #0b1c3d;
  margin-bottom: 10px;
}

.uxsvc-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ================= WHY CHOOSE US ================= */
.uxsvc-why {
  max-width: 1200px;
  margin: 90px auto 0;
}

.uxsvc-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .uxsvc-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .uxsvc-why-grid { grid-template-columns: 1fr; }
}

.uxsvc-why-box {
  padding: 26px;
  border-radius: 16px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.uxsvc-fast    { background: #0b1c3d; }
.uxsvc-expert  { background: #102b6b; }
.uxsvc-quality { background: #153f91; }
.uxsvc-support { background: #a21c1c; }

.uxsvc-why-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.uxsvc-why-box p {
  font-size: 14px;
  line-height: 1.6;
}

/* ================= FOOTER ================= */
.uxsvc-footer {
  margin-top: 100px;
  background: #0b1c3d;
  color: #ffffff;
  padding: 45px 20px;
}

.uxsvc-footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 800px) {
  .uxsvc-footer-inner { grid-template-columns: 1fr; }
}

.uxsvc-footer h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.uxsvc-footer p {
  font-size: 14px;
  line-height: 1.7;
}

.uxsvc-footer a {
  text-decoration: none;
  font-weight: 600;
}

.uxsvc-call { color: #4da3ff; }
.uxsvc-wa   { color: #25d366; }

.uxsvc-footer-bottom {
  text-align: center;
  margin-top: 25px;
  font-size: 13px;
  opacity: 0.8;
}
