/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  background: #ffffff;
  color: #1f1f1f;
}

html {
  scroll-behavior: smooth;
}

/* ===== Header / Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: rgba(0, 71, 171, 0.05);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease;
}

.navbar:hover,
.navbar:active {
  background: #ffffff;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  background: linear-gradient(45deg, #007bff, #0047ab);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  font-family: "Montserrat", sans-serif;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #007bff;
  bottom: -3px;
  left: 0;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 20px;
  background: linear-gradient(135deg, #e9f3ff, #f4f9ff);
  text-align: center;
  overflow: hidden;
}

/* Robot Heads */
.robot {
  position: absolute;
  animation: float 6s ease-in-out infinite alternate;
  opacity: 0.25;
  filter: drop-shadow(0 0 10px rgba(0, 123, 255, 0.6));
  pointer-events: none;
}

.robot:hover {
  filter: drop-shadow(0 0 20px rgba(0, 123, 255, 0.9));
}

.robot1 {
  top: -50px;
  left: -60px;
  animation-duration: 6s;
}
.robot2 {
  bottom: 20px;
  right: 40px;
  animation-duration: 8s;
}
.robot3 {
  top: 100px;
  right: -70px;
  animation-duration: 7s;
}
.robot4 {
  bottom: -30px;
  left: 80px;
  animation-duration: 9s;
}
.robot5 {
  top: 50px;
  left: 150px;
  animation-duration: 6.5s;
}
.robot6 {
  bottom: 60px;
  right: 150px;
  animation-duration: 8.5s;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-25px) translateX(20px) rotate(10deg) scale(1.05);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0deg) scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  color: #0047ab;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
}

/* Get in Touch Button */
.hero-btn {
  display: inline-block;
  background-color: #0047ab;
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.4);
}

.hero-btn:hover {
  background-color: #007bff;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.8);
  transform: translateY(-3px);
}

/* ===== Sections ===== */
.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.section:nth-of-type(odd) {
  background: #ffffff;
}

.section:nth-of-type(even) {
  background: #f4f9ff;
}

.section h2 {
  font-family: "Roboto", sans-serif;
  font-size: 2.2rem;
  color: #0047ab;
  margin-bottom: 25px;
}

.section p {
  color: #555;
  margin-bottom: 20px;
}

/* ===== Services Grid ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* ===== Technologies Grid ===== */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.tech-item {
  background: #007bff;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
}

/* ===== Brand Guide ===== */
.section-alt {
  border-top: 1px solid rgba(0, 71, 171, 0.1);
  border-bottom: 1px solid rgba(0, 71, 171, 0.1);
}

.brand-block {
  margin-top: 35px;
  text-align: left;
}

.brand-block h3 {
  font-size: 1.6rem;
  color: #0047ab;
  margin-bottom: 15px;
}

.brand-block h4 {
  font-size: 1.1rem;
  color: #005fcc;
  margin-bottom: 10px;
}

.brand-block p {
  margin-bottom: 12px;
}

.brand-subgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 10px;
}

.brand-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.tagline-list,
.quote-list,
.avoid-list,
.pillars-list,
.principles-list {
  list-style: none;
  padding-left: 0;
}

.tagline-list li,
.quote-list li,
.avoid-list li,
.pillars-list li,
.principles-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.tagline-list li::before,
.quote-list li::before,
.avoid-list li::before,
.pillars-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #007bff;
}

.principles-list {
  counter-reset: principle-counter;
}

.principles-list li {
  counter-increment: principle-counter;
  margin-bottom: 14px;
}

.principles-list li::before {
  content: counter(principle-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #007bff;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.value-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.value-card h4 {
  margin-bottom: 8px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 15px;
}

.pillar-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
  font-style: italic;
}

.highlight-text {
  margin-top: 15px;
  padding: 12px 16px;
  border-left: 4px solid #007bff;
  background: #e9f3ff;
  border-radius: 8px;
}

.trigger-text {
  font-size: 0.9rem;
  color: #666;
  margin-top: 6px;
}

.tone-personality {
  margin-bottom: 15px;
}

.inline-heading {
  margin-top: 15px;
  margin-bottom: 8px;
}
/* ===== Footer ===== */
footer {
  background: radial-gradient(circle at top left, #1c6fe6 0%, #0047ab 40%, #002a66 100%);
  color: #f4f9ff;
  padding: 50px 20px 30px 20px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  margin-bottom: 25px;
}

/* Typography */
.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 8px;
}

/* Links */
footer a {
  color: #f4f9ff;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #aee0ff;
  transition: width 0.2s ease;
}

footer a:hover {
  color: #aee0ff;
  opacity: 0.95;
}

footer a:hover::after {
  width: 100%;
}

/* Bottom line */
.footer-bottom {
  font-size: 0.85rem;
  opacity: 0.85;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 12px;
  text-align: center;
}

/* ===== Mobile Menu Toggle Styles (your nav) ===== */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #0047ab;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 5px 10px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 12px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 999;
  }

  .nav-links li {
    text-align: center;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

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

  .hero {
    padding: 110px 16px 90px 16px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .section {
    padding: 45px 18px;
  }

  .footer-grid {
    text-align: left;
  }

  footer {
    text-align: left;
  }
}
/*  */