* {
  box-sizing: border-box;
}

body {
  font-family: "Nunito", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1a1a2e;
  margin: 0;
  padding: 0;
}

.navbar {
  background: #ffffff !important;
  padding: 14px 0;
  box-shadow: 0 2px 16px rgba(10, 22, 40, 0.1);
  border-bottom: 2px solid rgba(26, 115, 232, 0.08);
}
.navbar .navbar-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a2e !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar .brand-icon {
  height: 34px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.navbar .brand-icon img {
  width: 170px;
}
.navbar .nav-link {
  color: #1a1a2e !important;
  font-weight: 700;
  font-size: 16px;
  padding: 6px 14px !important;
  transition: color 0.2s;
  position: relative;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, #1A73E8, #00C2FF);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s;
}
.navbar .nav-link.active, .navbar .nav-link:hover {
  color: #1A73E8 !important;
}
.navbar .nav-link.active::after, .navbar .nav-link:hover::after {
  transform: scaleX(1);
}
.navbar .dropdown-menu {
  border: none;
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.15);
  border-radius: 10px;
  border-top: 3px solid #1A73E8;
}
.navbar .dropdown-menu .dropdown-item {
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 18px;
  color: #1a1a2e;
  transition: background 0.2s, color 0.2s;
}
.navbar .dropdown-menu .dropdown-item:hover {
  background: rgba(26, 115, 232, 0.1);
  color: #1A73E8;
}
.navbar .btn-call-now {
  background: linear-gradient(135deg, #1A73E8, #00C2FF);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.25s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}
.navbar .btn-call-now:hover {
  background: linear-gradient(135deg, #1558b0, #1A73E8);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
}
.navbar .btn-call-now {
  padding: 10px 26px;
  border-radius: 8px;
  letter-spacing: 0.3px;
}

.hero-section {
  position: relative;
  min-height: 540px;
  background: url(/assets/images/Android-TV-1024x576-1.jpg) right center/cover no-repeat;
  display: flex;
  align-items: center;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.72) 60%, rgba(26, 115, 232, 0.3) 100%);
}
.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1A73E8, #00C2FF, #1A73E8);
}
.hero-section .hero-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  text-align: center;
}
.hero-section .hero-content h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 16px;
}
.hero-section .hero-content h1 span {
  background: linear-gradient(90deg, #1A73E8, #00C2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-section .hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.7;
}
.hero-section .hero-content .btn-hero {
  background: linear-gradient(135deg, #1A73E8, #00C2FF);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.25s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}
.hero-section .hero-content .btn-hero:hover {
  background: linear-gradient(135deg, #1558b0, #1A73E8);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
}
.hero-section .hero-content .btn-hero {
  padding: 14px 40px;
  font-size: 1rem;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

.about-section {
  padding: 90px 0;
  background: #ffffff;
}
.about-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #0A1628;
  line-height: 1.3;
  margin-bottom: 8px;
}
.about-section h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, #1A73E8, #00C2FF);
  border-radius: 4px;
  margin-top: 14px;
  margin-bottom: 20px;
}
.about-section p {
  font-size: 0.97rem;
  color: #556070;
  line-height: 1.75;
  margin-bottom: 32px;
}
.about-section .btn-get-started {
  background: linear-gradient(135deg, #1A73E8, #00C2FF);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.25s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}
.about-section .btn-get-started:hover {
  background: linear-gradient(135deg, #1558b0, #1A73E8);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
}
.about-section .btn-get-started {
  padding: 12px 30px;
}
.about-section .btn-read-more {
  background-color: transparent;
  color: #1A73E8;
  border: 2px solid #1A73E8;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
}
.about-section .btn-read-more:hover {
  background-color: #1A73E8;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.35);
}
.about-section .btn-read-more {
  padding: 12px 30px;
}
.about-section .about-img-wrapper {
  position: relative;
}
.about-section .about-img-wrapper::before {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 80%;
  height: 80%;
  background: rgba(26, 115, 232, 0.1);
  border-radius: 16px;
  z-index: 0;
  border: 2px solid rgba(26, 115, 232, 0.15);
}
.about-section .about-img-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 360px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 12px 40px rgba(26, 115, 232, 0.15);
}

.services-section {
  padding: 80px 0;
  background: #f4f7fc;
}
.services-section .section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}
.services-section .section-title .section-icon {
  font-size: 1.9rem;
}
.services-section .section-title .section-icon img {
  width: 50px;
}
.services-section .section-title h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  color: #0A1628;
  margin: 0;
}
.services-section .service-card {
  border: none;
  border-radius: 12px;
  padding: 30px 24px;
  height: 100%;
  background: #ffffff;
  transition: box-shadow 0.25s, transform 0.2s;
  border-top: 4px solid #1A73E8;
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.07);
  position: relative;
  overflow: hidden;
}
.services-section .service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1A73E8, #00C2FF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.services-section .service-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0A1628;
  margin-bottom: 14px;
}
.services-section .service-card p {
  font-size: 0.92rem;
  color: #556070;
  line-height: 1.68;
  margin: 0;
}
.services-section .service-card:hover {
  box-shadow: 0 12px 36px rgba(26, 115, 232, 0.18);
  transform: translateY(-5px);
}
.services-section .service-card:hover::after {
  transform: scaleX(1);
}
.services-section .service-card:hover h3 {
  color: #1A73E8;
}
.services-section .services-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 52px;
}
.services-section .services-cta .btn-join,
.services-section .services-cta .btn-more-info {
  background: linear-gradient(135deg, #1A73E8, #00C2FF);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.25s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}
.services-section .services-cta .btn-join:hover,
.services-section .services-cta .btn-more-info:hover {
  background: linear-gradient(135deg, #1558b0, #1A73E8);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
}
.services-section .services-cta .btn-join,
.services-section .services-cta .btn-more-info {
  padding: 13px 36px;
  border-radius: 8px;
}

.availability-section {
  position: relative;
  padding: 90px 0;
  background: url("/assets/images/stealite.webp") center center/cover no-repeat;
  background-attachment: fixed;
}
.availability-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.88);
}
.availability-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1A73E8, #00C2FF, #1A73E8);
}
.availability-section .avail-content {
  position: relative;
  z-index: 1;
}
.availability-section .avail-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
}
.availability-section .avail-content h2 span {
  background: linear-gradient(90deg, #1A73E8, #00C2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.availability-section .avail-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
  margin-bottom: 34px;
  line-height: 1.72;
}
.availability-section .avail-content .btn-get-info {
  background-color: transparent;
  color: #1A73E8;
  border: 2px solid #1A73E8;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
}
.availability-section .avail-content .btn-get-info:hover {
  background-color: #1A73E8;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.35);
}
.availability-section .avail-content .btn-get-info {
  padding: 12px 32px;
  border-color: #00C2FF;
  color: #00C2FF;
}
.availability-section .avail-content .btn-get-info:hover {
  background-color: #1A73E8;
  border-color: #1A73E8;
  color: #ffffff;
}

.footer {
  background: #0D1F3C;
  padding: 56px 0 24px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1A73E8, #00C2FF, #1A73E8);
}
.footer .footer-logo-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer .footer-logo-box .brand-icon img {
  width: 130px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer .footer-logo-box span {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
}
.footer .footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
}
.footer .footer-desc strong {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
}
.footer .footer-links {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  flex-wrap: wrap;
}
.footer .footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.footer .footer-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #00C2FF;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.footer .footer-links a:hover {
  color: #00C2FF;
}
.footer .footer-links a:hover::after {
  transform: scaleX(1);
}
.footer .footer-contact {
  margin-top: 20px;
}
.footer .footer-contact p {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}
.footer .footer-contact a {
  color: #00C2FF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer .footer-contact a:hover {
  color: #ffffff;
}
.footer .footer-contact strong {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}
.footer .footer-bottom {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-bottom strong {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
  .about-section .about-img-wrapper {
    margin-top: 44px;
  }
}
@media (max-width: 768px) {
  .services-section .services-cta {
    flex-direction: column;
    align-items: center;
  }
  .footer .footer-links {
    justify-content: flex-start;
    margin-top: 16px;
  }
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.4s ease-out, box-shadow 0.3s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 194, 255, 0.18);
  transform: rotateX(90deg);
  transform-origin: top center;
  transition: transform 0.4s ease-out;
  z-index: 1;
}

.btn:hover {
  transform: rotateX(-8deg) translateY(-4px);
}

.btn:hover::before {
  transform: rotateX(0deg);
}

.btn span {
  position: relative;
  z-index: 2;
}/*# sourceMappingURL=style.css.map */