body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
  background: #0a1026;
  color: #f4f8fb;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 64px;
}

@media (max-width: 900px) {
  body {
    padding-top: 56px;
  }
}
@media (max-width: 700px) {
  body {
    padding-top: 54px;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(120deg, rgba(0, 255, 255, 0.08) 0%, rgba(0,0,0,0.7) 100%),
    repeating-linear-gradient(135deg, rgba(0, 255, 255, 0.03) 0 2px, transparent 2px 40px);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.company-name {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 0 16px #00eaff88, 0 2px 8px #0a1026;
  margin-bottom: 0.5rem;
}

.company-name span {
  color: #00eaff;
  text-shadow: 0 0 24px #00eaffcc;
}

.tagline {
  font-size: 1.3rem;
  font-weight: 400;
  color: #b6eaff;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  text-shadow: 0 0 8px #00eaff33;
}

.cta-btn {
  display: inline-block;
  padding: 0.85em 2.2em;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #00eaff 0%, #0051ff 100%);
  border: none;
  border-radius: 32px;
  box-shadow: 0 0 24px #00eaff55, 0 2px 8px #0a1026;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  letter-spacing: 0.04em;
}

.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #0051ff 0%, #00eaff 100%);
  box-shadow: 0 0 32px #00eaff99, 0 4px 16px #0a1026;
  transform: translateY(-2px) scale(1.04);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-indicator span {
  display: block;
  width: 28px;
  height: 48px;
  border: 2px solid #00eaff;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 0 12px #00eaff55;
  background: rgba(10,16,38,0.6);
  overflow: hidden;
}

.scroll-indicator span::before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 12px;
  width: 6px;
  height: 6px;
  background: #00eaff;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll-dot 1.4s infinite cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 8px #00eaffcc;
}

@keyframes scroll-dot {
  0% { top: 12px; opacity: 1; }
  60% { top: 28px; opacity: 1; }
  100% { top: 38px; opacity: 0; }
}

.about-us {
  background: linear-gradient(120deg, #0a1026 80%, #0e1836 100%);
  padding: 64px 0 48px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.about-image {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 0 32px #00eaff33, 0 2px 16px #0a1026;
  border: 2px solid #00eaff33;
  background: #112244;
}

.about-content {
  flex: 2 1 400px;
  color: #eaf6fb;
  text-align: left;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00eaff;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
  text-shadow: 0 0 16px #00eaff44;
}

.about-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #b6eaff;
  margin: 0;
  text-shadow: 0 0 8px #00eaff11;
  letter-spacing: 0.01em;
}

.services {
  background: linear-gradient(120deg, #0e1836 80%, #0a1026 100%);
  padding: 64px 0 64px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.services-container h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #00eaff;
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
  text-shadow: 0 0 16px #00eaff44;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
}

.service-card {
  background: linear-gradient(135deg, #101a33 80%, #13204a 100%);
  border-radius: 20px;
  box-shadow: 0 0 24px #00eaff22, 0 2px 12px #0a1026;
  padding: 2.2rem 1.2rem 1.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s, background 0.22s;
  cursor: pointer;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card:hover, .service-card:focus {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 40px #00eaff55, 0 4px 24px #0a1026;
  background: linear-gradient(135deg, #13204a 80%, #101a33 100%);
  border: 1.5px solid #00eaff88;
}

.service-card dotlottie-player,
.service-card svg {
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 8px #00eaff55);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #eaf6fb;
  letter-spacing: 0.02em;
  margin: 0;
  text-align: center;
  text-shadow: 0 0 8px #00eaff22;
}

.portfolio {
  background: linear-gradient(120deg, #0a1026 80%, #0e1836 100%);
  padding: 64px 0 64px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.portfolio-container h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #00eaff;
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
  text-shadow: 0 0 16px #00eaff44;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}

.portfolio-card {
  background: linear-gradient(135deg, #101a33 80%, #13204a 100%);
  border-radius: 20px;
  box-shadow: 0 0 24px #00eaff22, 0 2px 12px #0a1026;
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s, border 0.22s;
  cursor: pointer;
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
  min-height: unset; /* remove min-height for compactness */
  position: relative;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem; /* add padding for text */
}

.portfolio-card:hover, .portfolio-card:focus {
  transform: translateY(-8px) scale(1.03) rotate(-1deg);
  box-shadow: 0 0 40px #00eaff55, 0 4px 24px #0a1026;
  border: 1.5px solid #00eaff88;
}

/* Remove .portfolio-img and .portfolio-img img styles */
.portfolio-img {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.portfolio-info {
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.portfolio-info h3 {
  font-size: 1.18rem;
  font-weight: 600;
  color: #00eaff;
  margin: 0 0 0.7rem 0;
  letter-spacing: 0.02em;
  text-shadow: 0 0 8px #00eaff22;
}

.portfolio-info p {
  font-size: 1.05rem;
  color: #b6eaff;
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-shadow: 0 0 8px #00eaff11;
}

.why-choose-us {
  background: linear-gradient(120deg, #0e1836 80%, #0a1026 100%);
  padding: 64px 0 64px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.why-container h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #00eaff;
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
  text-shadow: 0 0 16px #00eaff44;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 32px;
  justify-items: center;
}

.why-card {
  background: linear-gradient(135deg, #101a33 80%, #13204a 100%);
  border-radius: 18px;
  box-shadow: 0 0 24px #00eaff22, 0 2px 12px #0a1026;
  padding: 2.2rem 1.2rem 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s, border 0.22s;
  border: 1.5px solid transparent;
  position: relative;
  cursor: pointer;
  animation: why-fadein 0.7s cubic-bezier(.4,0,.2,1);
}

.why-card:hover, .why-card:focus {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 0 32px #00eaff77, 0 4px 16px #0a1026;
  border: 1.5px solid #00eaff88;
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  animation: why-glow 2.2s infinite alternate cubic-bezier(.4,0,.2,1);
}

.why-icon svg {
  filter: drop-shadow(0 0 10px #00eaff88);
  transition: filter 0.3s;
}

.why-card:hover .why-icon svg,
.why-card:focus .why-icon svg {
  filter: drop-shadow(0 0 18px #00eaffcc);
}

.why-card h3 {
  font-size: 1.13rem;
  font-weight: 600;
  color: #eaf6fb;
  letter-spacing: 0.02em;
  margin: 0;
  text-align: center;
  text-shadow: 0 0 8px #00eaff22;
}

@keyframes why-glow {
  0% { filter: drop-shadow(0 0 10px #00eaff88); }
  100% { filter: drop-shadow(0 0 18px #00eaffcc); }
}

@keyframes why-fadein {
  from { opacity: 0; transform: translateY(24px) scale(0.98);}
  to { opacity: 1; transform: translateY(0) scale(1);}
}

.technologies {
  background: linear-gradient(120deg, #0a1026 80%, #0e1836 100%);
  padding: 64px 0 64px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.tech-container h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #00eaff;
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
  text-shadow: 0 0 16px #00eaff44;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 32px;
  justify-items: center;
  align-items: center;
}

.tech-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s;
  cursor: pointer;
  border-radius: 16px;
  padding: 18px 0 8px 0;
}

.tech-item svg {
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), filter 0.22s;
  filter: drop-shadow(0 0 8px #00eaff55);
}

.tech-item:hover svg,
.tech-item:focus svg {
  transform: scale(1.18) rotate(-3deg);
  filter: drop-shadow(0 0 18px #00eaffcc);
}

.tech-item::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 120%);
  background: #101a33;
  color: #00eaff;
  font-size: 0.98rem;
  padding: 4px 14px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 0 12px #00eaff33;
  transition: opacity 0.18s cubic-bezier(.4,0,.2,1), transform 0.18s;
  z-index: 10;
}

.tech-item:hover::after,
.tech-item:focus::after {
  opacity: 1;
  transform: translate(-50%, 140%);
}

/* Remove testimonials section styles */

.careers {
  background: linear-gradient(120deg, #0e1836 80%, #0a1026 100%);
  padding: 64px 0 64px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.careers-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.careers-container h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00eaff;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
  text-shadow: 0 0 16px #00eaff44;
}

.careers-intro {
  color: #b6eaff;
  font-size: 1.13rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-shadow: 0 0 8px #00eaff11;
}

.careers-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  justify-items: center;
}

.career-card {
  background: linear-gradient(135deg, #101a33 80%, #13204a 100%);
  border-radius: 18px;
  box-shadow: 0 0 24px #00eaff22, 0 2px 12px #0a1026;
  padding: 2.2rem 1.2rem 1.7rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid transparent;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s, border 0.22s;
}

.career-card:hover, .career-card:focus-within {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 40px #00eaff55, 0 4px 24px #0a1026;
  border: 1.5px solid #00eaff88;
}

.career-card h3 {
  font-size: 1.18rem;
  font-weight: 600;
  color: #00eaff;
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
  text-shadow: 0 0 8px #00eaff22;
}

.career-card p {
  color: #eaf6fb;
  font-size: 1.05rem;
  margin-bottom: 1.3rem;
  line-height: 1.5;
  text-shadow: 0 0 8px #00eaff11;
}

.apply-btn {
  display: inline-block;
  padding: 0.7em 2em;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #00eaff 0%, #0051ff 100%);
  border: none;
  border-radius: 28px;
  box-shadow: 0 0 16px #00eaff55, 0 2px 8px #0a1026;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}

.apply-btn:hover, .apply-btn:focus {
  background: linear-gradient(90deg, #0051ff 0%, #00eaff 100%);
  box-shadow: 0 0 24px #00eaff99, 0 4px 16px #0a1026;
  transform: translateY(-2px) scale(1.04);
}

.contact {
  background: linear-gradient(120deg, #0a1026 80%, #0e1836 100%);
  padding: 64px 0 64px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 56px;
  align-items: flex-start;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.contact-info {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 380px;
  box-sizing: border-box;
}

.contact-info h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00eaff;
  margin-bottom: 0.7rem;
  letter-spacing: 0.03em;
  text-shadow: 0 0 16px #00eaff44;
}

.contact-subheading {
  color: #b6eaff;
  font-size: 1.13rem;
  margin-bottom: 2.2rem;
  line-height: 1.6;
  text-shadow: 0 0 8px #00eaff11;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #eaf6fb;
  font-size: 1.05rem;
}

.contact-details li {
  margin-bottom: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
}

.contact-details a {
  color: #00eaff;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-all;
}

.contact-details a:hover,
.contact-details a:focus {
  color: #fff;
  text-decoration: underline;
}

.contact-form {
  flex: 2 1 400px;
  background: linear-gradient(135deg, #101a33 80%, #13204a 100%);
  border-radius: 18px;
  box-shadow: 0 0 24px #00eaff22, 0 2px 12px #0a1026;
  padding: 2.2rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  min-width: 0;
  max-width: 520px;
  width: 100%;
  box-sizing: border-box;
}

.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  box-sizing: border-box;
}

.contact-form label {
  color: #00eaff;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0.85em 1em;
  border-radius: 8px;
  border: 1.5px solid #00eaff44;
  background: #0a1026;
  color: #eaf6fb;
  font-size: 1.05rem;
  font-family: inherit;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 8px #00eaff11;
  outline: none;
  resize: none;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #00eaff;
  box-shadow: 0 0 12px #00eaff55;
}

.contact-submit-btn {
  align-self: flex-end;
  padding: 0.8em 2.2em;
  font-size: 1.08rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #00eaff 0%, #0051ff 100%);
  border: none;
  border-radius: 28px;
  box-shadow: 0 0 16px #00eaff55, 0 2px 8px #0a1026;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}

.contact-submit-btn:hover,
.contact-submit-btn:focus {
  background: linear-gradient(90deg, #0051ff 0%, #00eaff 100%);
  box-shadow: 0 0 24px #00eaff99, 0 4px 16px #0a1026;
  transform: translateY(-2px) scale(1.04);
}

/* Footer styles */
.footer {
  background: linear-gradient(120deg, #0e1836 80%, #0a1026 100%);
  padding: 38px 0 18px 0;
  color: #b6eaff;
  font-size: 1.05rem;
  margin-top: 0;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #00eaff;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-company {
  color: #00eaff;
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.03em;
  text-shadow: 0 0 8px #00eaff44;
}

.footer-social {
  display: flex;
  gap: 22px;
  margin-bottom: 0.5rem;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 50%;
  transition: background 0.2s, box-shadow 0.2s;
  padding: 6px;
}

.footer-social-icon:hover,
.footer-social-icon:focus {
  background: #00eaff22;
  box-shadow: 0 0 12px #00eaff55;
}

.footer-social-icon svg {
  display: block;
}

.footer-copy {
  color: #b6eaff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: 0.01em;
}

.footer-top {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-top:hover,
.footer-top:focus {
  background: #00eaff22;
  box-shadow: 0 0 12px #00eaff55;
  transform: translateY(-2px) scale(1.08);
}

.footer-top svg {
  display: block;
}

.footer-nav {
  display: flex;
  gap: 28px;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: #b6eaff;
  text-decoration: none;
  font-size: 1.04rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
  padding: 2px 0;
}

.footer-link:hover,
.footer-link:focus {
  color: #00eaff;
}

.footer-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #00eaff;
  transition: width 0.2s;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.footer-link:hover::after,
.footer-link:focus::after {
  width: 100%;
}

@media (max-width: 600px) {
  .footer-container {
    padding: 0 8px;
    gap: 10px;
  }
  .footer-brand {
    font-size: 1rem;
  }
  .footer-company {
    font-size: 1rem;
  }
  .footer-copy {
    font-size: 0.92rem;
  }
  .footer-top {
    right: 8px;
    top: 8px;
  }
  .footer-nav {
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.98rem;
  }
}

/* Responsive styles */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .contact-info, .contact-form {
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .contact-form {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    border-radius: 10px;
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .contact-info h2 {
    font-size: 1.3rem;
  }
  .contact-subheading {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 0 6px;
    gap: 18px;
  }
  .contact-form {
    padding: 0.7rem 0.3rem 0.7rem 0.3rem;
  }
  .form-group label {
    font-size: 0.98rem;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.98rem;
    padding: 0.7em 0.7em;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  background: rgba(10, 16, 38, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 18px #00eaff22;
  transition: background 0.25s, box-shadow 0.25s;
}

.navbar.scrolled {
  background: rgba(10, 16, 38, 0.98);
  box-shadow: 0 4px 24px #00eaff44;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-company {
  color: #00eaff;
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.03em;
  text-shadow: 0 0 8px #00eaff44;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: right 0.3s;
}

.navbar-links li {
  display: flex;
}

.navbar-links a {
  color: #eaf6fb;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}

.navbar-links a:hover,
.navbar-links a:focus,
.navbar-links a.active {
  color: #00eaff;
}

.navbar-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #00eaff;
  transition: width 0.2s;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.navbar-links a:hover::after,
.navbar-links a:focus::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  z-index: 110;
}

.navbar-toggle-bar {
  width: 26px;
  height: 3px;
  background: #00eaff;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .navbar-container {
    padding: 0 12px;
    height: 56px;
  }
  .navbar-links {
    gap: 18px;
  }
  .navbar-company {
    font-size: 1rem;
  }
}

@media (max-width: 700px) {
  .navbar-container {
    height: 54px;
  }
  .navbar-toggle {
    display: flex;
  }
  .navbar-links {
    position: fixed;
    top: 54px;
    right: -100vw;
    width: 220px;
    height: calc(100vh - 54px);
    background: rgba(10, 16, 38, 0.98);
    box-shadow: -2px 0 18px #00eaff22;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 18px 18px 18px;
    gap: 18px;
    transition: right 0.3s;
    z-index: 105;
  }
  .navbar-links.open {
    right: 0;
  }
  .navbar-links li {
    width: 100%;
  }
  .navbar-links a {
    width: 100%;
    font-size: 1.08rem;
    padding: 10px 0;
  }
  body.nav-open {
    overflow: hidden;
  }
}
