* {
  box-sizing: border-box;
}

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

.navbar {
  background: #ffffff !important;
  padding: 16px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.navbar .navbar-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a1a !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: 120px;
}
.navbar .nav-link {
  color: #1a1a1a !important;
  font-weight: 700;
  font-size: 16px;
  padding: 6px 14px !important;
  transition: color 0.2s;
}
.navbar .nav-link.active, .navbar .nav-link:hover {
  color: #6EC1E4 !important;
}
.navbar .dropdown-menu {
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
}
.navbar .btn-call-now {
  background-color: #6EC1E4;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.navbar .btn-call-now:hover {
  background-color: #2a9ab5;
  color: #ffffff;
  transform: translateY(-1px);
}
.navbar .btn-call-now {
  padding: 10px 24px;
}

.hero-section {
  position: relative;
  min-height: 520px;
  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(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}
.hero-section .hero-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  text-align: center;
}
.hero-section .hero-content h1 {
  font-size: clamp(1.55rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #6EC1E4;
  line-height: 1.25;
  margin-bottom: 16px;
}
.hero-section .hero-content p {
  font-size: 20px;
  color: #DFDFDF;
  margin-bottom: 28px;
  max-width: 100%;
  font-weight: 400;
}
.hero-section .hero-content .btn-hero {
  background-color: #6EC1E4;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.hero-section .hero-content .btn-hero:hover {
  background-color: #2a9ab5;
  color: #ffffff;
  transform: translateY(-1px);
}
.hero-section .hero-content .btn-hero {
  padding: 12px 34px;
}

.about-section {
  padding: 80px 0;
  background: #ffffff;
}
.about-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #6EC1E4;
  line-height: 1.3;
  margin-bottom: 20px;
}
.about-section p {
  font-size: 0.97rem;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 32px;
}
.about-section .btn-get-started {
  background-color: #6EC1E4;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.about-section .btn-get-started:hover {
  background-color: #2a9ab5;
  color: #ffffff;
  transform: translateY(-1px);
}
.about-section .btn-get-started {
  padding: 11px 28px;
}
.about-section .btn-read-more {
  background-color: transparent;
  color: #6EC1E4;
  border: 2px solid #6EC1E4;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
}
.about-section .btn-read-more:hover {
  background-color: #6EC1E4;
  color: #ffffff;
}
.about-section .btn-read-more {
  padding: 11px 28px;
}
.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(77, 189, 212, 0.12);
  border-radius: 16px;
  z-index: 0;
}
.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;
}

.services-section {
  padding: 70px 0;
  background: #f9fafb;
}
.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: #6EC1E4;
  margin: 0;
}
.services-section .service-card {
  border: 1.5px solid #6EC1E4;
  border-radius: 10px;
  padding: 28px 22px;
  height: 100%;
  background: #ffffff;
  transition: box-shadow 0.25s, transform 0.2s;
}
.services-section .service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #6EC1E4;
  margin-bottom: 14px;
}
.services-section .service-card p {
  font-size: 0.92rem;
  color: #555555;
  line-height: 1.65;
  margin: 0;
}
.services-section .service-card:hover {
  box-shadow: 0 8px 28px rgba(77, 189, 212, 0.22);
  transform: translateY(-4px);
}
.services-section .services-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}
.services-section .services-cta .btn-join,
.services-section .services-cta .btn-more-info {
  background-color: #6EC1E4;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.services-section .services-cta .btn-join:hover,
.services-section .services-cta .btn-more-info:hover {
  background-color: #2a9ab5;
  color: #ffffff;
  transform: translateY(-1px);
}
.services-section .services-cta .btn-join,
.services-section .services-cta .btn-more-info {
  padding: 12px 32px;
  border-radius: 30px;
}

.availability-section {
  position: relative;
  padding: 80px 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(8, 25, 50, 0.83);
}
.availability-section .avail-content {
  position: relative;
  z-index: 1;
}
.availability-section .avail-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #6EC1E4;
  margin-bottom: 18px;
}
.availability-section .avail-content p {
  font-size: 0.97rem;
  color: white;
  max-width: 780px;
  margin-bottom: 30px;
  line-height: 1.65;
}
.availability-section .avail-content .btn-get-info {
  background-color: transparent;
  color: #6EC1E4;
  border: 2px solid #6EC1E4;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
}
.availability-section .avail-content .btn-get-info:hover {
  background-color: #6EC1E4;
  color: #ffffff;
}
.availability-section .avail-content .btn-get-info {
  padding: 11px 28px;
  border-color: #6EC1E4;
  color: #6EC1E4;
}
.availability-section .avail-content .btn-get-info:hover {
  background-color: #6EC1E4;
  color: #ffffff;
}

.footer {
  background: #8a8a8a;
  padding: 50px 0 24px;
}
.footer .footer-logo-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer .footer-logo-box .brand-icon img {
  width: 120px;
}
.footer .footer-logo-box span {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
}
.footer .footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
}
.footer .footer-desc strong {
  font-weight: 800;
}
.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.92);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}
.footer .footer-links a:hover {
  color: #6EC1E4;
}
.footer .footer-contact {
  margin-top: 18px;
}
.footer .footer-contact p {
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
}
.footer .footer-contact a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer .footer-contact a:hover {
  color: #6EC1E4;
}
.footer .footer-contact strong {
  font-weight: 700;
}
.footer .footer-bottom {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer .footer-bottom strong {
  font-weight: 800;
}

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

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  /* Darker overlay */
  transform: rotateX(90deg);
  transform-origin: top center;
  transition: transform 0.5s ease-out;
  z-index: 1;
}

.btn:hover {
  transform: rotateX(-10deg) translateY(-5px);
  background-color: #6EC1E4;
  /* Darker blue on hover */
}

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

.btn span {
  /* Assuming text is wrapped in a span for more complex effects if needed */
  position: relative;
  z-index: 2;
}

.about-hero-banner {
  background: #6EC1E4;
  min-height: 300px;
  display: flex;
  align-items: center;
}
.about-hero-banner .about-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-align: center;
  width: 100%;
  letter-spacing: 0.5px;
}
.about-hero-banner .page-hero-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 992px) {
  .about-content-section .about-img-wrapper {
    margin-top: 40px;
  }
}
.contact-section {
  padding: 90px 0;
  background: #ffffff;
}
.contact-section .contact-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #6EC1E4;
  line-height: 1.25;
  margin-bottom: 18px;
}
.contact-section .contact-subtext {
  font-size: 0.97rem;
  color: #555555;
  line-height: 1.75;
  max-width: 380px;
  margin: 0;
}
.contact-section .contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-section .contact-card {
  border: 1.5px solid #6EC1E4;
  border-radius: 12px;
  padding: 24px 28px;
  background: #ffffff;
  transition: box-shadow 0.25s, transform 0.2s;
}
.contact-section .contact-card:hover {
  box-shadow: 0 8px 30px rgba(77, 189, 212, 0.18);
  transform: translateY(-3px);
}
.contact-section .contact-card .contact-card-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-section .contact-card .contact-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: rgba(77, 189, 212, 0.1);
  border: 1.5px solid #6EC1E4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6EC1E4;
}
.contact-section .contact-card .contact-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #6EC1E4;
}
.contact-section .contact-card .contact-card-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-section .contact-card .contact-card-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #6EC1E4;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-section .contact-card .contact-card-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #6EC1E4;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.2;
}
.contact-section .contact-card .contact-card-value:hover {
  color: #2a9ab5;
}

@media (max-width: 992px) {
  .contact-section .contact-subtext {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  .contact-section .contact-card {
    padding: 20px 18px;
  }
  .contact-section .contact-card .contact-card-value {
    font-size: 1.05rem;
  }
}
.terms-section {
  padding: 80px 0 100px;
  background: #f7f9fb;
}
.terms-section .terms-intro {
  font-size: 0.97rem;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(77, 189, 212, 0.2);
}
.terms-section .terms-intro strong {
  color: #1a1a1a;
}

.terms-block {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(77, 189, 212, 0.22);
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s, transform 0.2s;
}
.terms-block:hover {
  box-shadow: 0 6px 24px rgba(77, 189, 212, 0.15);
  transform: translateY(-2px);
}
.terms-block--last {
  margin-bottom: 0;
}
.terms-block .terms-block-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  background: rgba(77, 189, 212, 0.06);
  border-bottom: 1px solid rgba(77, 189, 212, 0.15);
}
.terms-block .terms-block-header .terms-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.terms-block .terms-block-header h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}
.terms-block .terms-block-body {
  padding: 24px 28px;
}
.terms-block .terms-block-body p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 12px;
}
.terms-block .terms-block-body p:last-child {
  margin-bottom: 0;
}
.terms-block .terms-block-body p strong {
  color: #1a1a1a;
  font-weight: 700;
}
.terms-block .terms-block-body .terms-note {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
  margin-top: 8px;
}

.terms-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
}
.terms-list li {
  position: relative;
  padding: 9px 12px 9px 36px;
  font-size: 0.93rem;
  color: #555555;
  line-height: 1.6;
  border-radius: 6px;
  transition: background 0.15s;
}
.terms-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6EC1E4;
  flex-shrink: 0;
}
.terms-list li:hover {
  background: rgba(77, 189, 212, 0.06);
}

.terms-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}
.terms-contact-links .terms-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1.5px solid #6EC1E4;
  border-radius: 8px;
  color: #6EC1E4;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s;
  background: #ffffff;
}
.terms-contact-links .terms-contact-btn svg {
  width: 16px;
  height: 16px;
  stroke: #6EC1E4;
  transition: stroke 0.2s;
}
.terms-contact-links .terms-contact-btn:hover {
  background: #6EC1E4;
  color: #ffffff;
}
.terms-contact-links .terms-contact-btn:hover svg {
  stroke: #ffffff;
}

@media (max-width: 768px) {
  .terms-section {
    padding: 50px 0 70px;
  }
  .terms-block .terms-block-header {
    padding: 16px 20px;
  }
  .terms-block .terms-block-header h2 {
    font-size: 1.05rem;
  }
  .terms-block .terms-block-body {
    padding: 18px 20px;
  }
  .terms-contact-links {
    flex-direction: column;
  }
  .terms-contact-links .terms-contact-btn {
    justify-content: center;
  }
}/*# sourceMappingURL=style.css.map */