@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arimo", sans-serif !important;
  background: #05080d !important;
  color: #fff;
}

a:hover {
  text-decoration: none !important;
}

.navbar {
  padding: 1rem !important;
  background-color: #080808;
}
.active {
  color: #2a80fe !important;
  border: 1px solid #2a80fe !important;
  border-radius: 20px;
  background-color: #156f9c1a !important;
}
.nav-item {
  margin: 0 !important;
}
.nav-link {
  color: #fff !important;
  margin-right: 1rem;
  font-size: 14px !important;
  padding: 5px 1.2rem !important;
}
.btn-light {
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 20px !important;
  padding: 5px 1rem !important;
}

.hero {
  height: 100vh;
  background: url("./images/home-bg.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}
.blue {
  color: #2a80fe;
  font-size: 18px;
}
.blue-head {
  color: #2a80fe;
}
.learnmore {
  padding: 12px 40px !important;
  border-radius: 30px !important;
}
.paara {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 2rem !important;
}
.col-md-6 img {
  border-radius: 15px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.95) 10%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.15) 100%
  ); */
}

.hero-content {
  position: relative;
  max-width: 700px;
  padding: 0 0px;
  margin-top: -5rem;
}

.badge {
  display: inline-block;
  background: rgba(31, 182, 255, 0.15);
  color: #2a80fe !important;
  padding: 10px 16px !important;
  border: 1px solid #00b8db4d;
  border-radius: 20px !important;
  font-size: 14px;

  margin-bottom: 22px;
}

.hero h2 {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.hero h2 span {
  color: #2a80fe;
}

.hero p {
  color: #cfd8dc;
  font-size: 16px;
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.primary-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1fb6ff, #007bff);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(31, 182, 255, 0.4);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero h2 {
    font-size: 42px;
  }

  .hero-content {
    padding: 0 30px;
  }
}

@media (max-width: 600px) {
  .hero h2 {
    font-size: 34px;
  }

  .hero p {
    font-size: 15px;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

/* CARD */
.card {
  background: linear-gradient(180deg, #0b111a, #070b12);
  border-radius: 20px !important;
  overflow: hidden;
  border: 1px solid rgba(24, 109, 132, 0.35) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 180, 255, 0.25);
}
.card-media {
  border-bottom: 1px solid #2c2b2b;
}

/* ICON */
.icon-box {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 42px;
  height: 42px;
  background: rgba(35, 34, 34, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 2;
}

/* BODY */
.card-body {
  padding: 26px !important ;
}

.card-body h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700 !important;
  margin-bottom: 12px;
}

.card-body p {
  font-size: 15px;
  color: #b8c4d0;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* LIST */
.card-body ul {
  list-style: none;
  margin-bottom: 20px;
}

.card-body li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  color: #d6dee6;
  font-size: 15px;
}

.card-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

/* LINK */
.card-body a {
  color: #2a80fe;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.card-body a:hover {
  text-decoration: underline;
}
.section-heading {
  text-align: center;
  padding: 80px 20px 60px;
  background: radial-gradient(
    circle at bottom,
    rgba(0, 170, 255, 0.12),
    transparent 10%
  );
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid rgba(0, 200, 255, 0.4);
  color: #2a80fe;
  font-size: 14px;
  margin-bottom: 22px;
  background: rgba(0, 120, 255, 0.08);
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #2a80fe;
  margin-bottom: 18px;
}

.section-subtitle {
  max-width: 720px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
  color: #a9b6c4;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}
.brands {
  padding: 0px 20px;
  display: flex;
  justify-content: center;
  background: radial-gradient(
    circle at top,
    rgba(0, 170, 255, 0.08),
    transparent 60%
  );
}

/* CENTER MAGIC */
.brand-wrapper {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* 👈 centers rows */
  gap: 26px;
}

/* Pills */
.brand-pill {
  min-width: 200px;
  padding: 22px 16px;
  text-align: center;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(180deg, #0c1620, #080f16);
  border-radius: 18px;
  border: 1px solid rgba(0, 200, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.brand-pill:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 180, 255, 0.25);
  border-color: rgba(0, 200, 255, 0.4);
}

/* MOBILE */
@media (max-width: 600px) {
  .brand-pill {
    min-width: 100%;
  }
}

.cta-section {
  padding: 80px 20px;
  background: #000;
  display: flex;
  justify-content: center;
}

.cta-box {
  width: 100%;
  max-width: 1200px;
  padding: 80px 40px;
  text-align: center;
  border-radius: 36px;
  background: linear-gradient(135deg, #0b111a 0%, #060b12 60%, #05080d 100%);
  border: 1px solid rgba(0, 200, 255, 0.35);
  box-shadow:
    0 0 80px rgba(0, 180, 255, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.cta-box h2 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

.cta-box p {
  max-width: 760px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
  color: #b7c4d1;
  margin-bottom: 48px;
}

/* BUTTONS */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.btn-primary {
  padding: 16px 40px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  box-shadow: 0 10px 30px rgba(0, 150, 255, 0.4);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 150, 255, 0.55);
}

.btn-outline {
  padding: 16px 40px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border: 2px solid rgba(0, 200, 255, 0.6);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(0, 200, 255, 0.12);
  box-shadow: 0 0 30px rgba(0, 180, 255, 0.35);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-box {
    padding: 60px 26px;
  }

  .cta-box h2 {
    font-size: 38px;
  }

  .cta-box p {
    font-size: 16px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 18px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .cta-box h2 {
    font-size: 30px;
  }
}

.site-footer {
  background: linear-gradient(180deg, #060b12, #04070c);
  color: #cfd8e3;
  padding: 90px 30px 30px;
  /* font-family: "Segoe UI", system-ui, sans-serif; */
}

.footer-inner {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 60px;
}

/* BRAND */
.footer-brand p {
  color: #9aa7b4;
  line-height: 1.6;
  margin: 22px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo span {
  background: #fff;
  color: #000;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 10px;
}

.brand-logo h3 {
  font-size: 20px;
  font-weight: 600;
}

/* SOCIAL */
.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 20%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  border: 1px solid #2c2b2b;
  align-items: center;
  justify-content: center;
  color: #cfd8e3;
  text-decoration: none;
  transition: all 0.3s ease;
}

.socials a:hover {
  background: rgba(0, 180, 255, 0.2);
  color: #2a80fe;
}

.values-section {
  padding: 70px 20px;
  background: radial-gradient(
    circle at top,
    rgba(0, 170, 255, 0.08),
    transparent 60%
  );
  color: #fff;
}

/* HEADER */
.values-header {
  text-align: center;
  margin-bottom: 80px;
}

.values-header h2 {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.values-header p {
  font-size: 18px;
  color: #a9b6c4;
}

/* CARD */
.value-card {
  background: linear-gradient(180deg, #0b111a, #070b12);
  border-radius: 22px;
  padding: 20px;
  display: flex;
  gap: 1.5rem;
  /* border: 1px solid rgba(0, 200, 255, 0.2); */
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 60px rgba(0, 180, 255, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.icon-image img {
  width: 75px;
}

/* TEXT */
.value-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}

.value-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #b8c4d0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-header h2 {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .value-card {
    padding: 30px 24px;
  }

  .values-header h2 {
    font-size: 32px;
  }

  .values-header p {
    font-size: 16px;
  }
}

/* COLUMNS */
.footer-col h4 {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 14px;
}

.footer-col a {
  text-decoration: none;
  color: #9aa7b4;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #2a80fe;
}

/* BOTTOM */
.footer-bottom {
  max-width: 1300px;
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #7f8c99;
}

.bottom-links a {
  margin-left: 22px;
  text-decoration: none;
  color: #7f8c99;
}

.bottom-links a:hover {
  color: #2a80fe;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .bottom-links a {
    margin: 0 10px;
  }
}

.contact-section {
  padding: 120px 20px;
}

.contact-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  margin-bottom: 26px;
}

label {
  display: block;
  font-size: 14px;
  color: #9aa7b4;
  margin-bottom: 8px;
}

input,
textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #0c121a, #070b11);
  border: 1px solid rgba(79, 77, 77, 0.6);
  color: #fff;
  outline: none;
  font-size: 15px;
}

textarea {
  height: 140px;
  resize: none;
}

input::placeholder,
textarea::placeholder {
  color: #6f7b86;
}

input:focus,
textarea:focus {
  border-color: rgba(0, 180, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(0, 180, 255, 0.4);
}

/* BUTTON */
.send-btn {
  margin-top: 18px;
  width: 100%;
  padding: 18px;
  border-radius: 40px;
  border: none;
  background: #ffffff;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.send-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.25);
}

/* RIGHT PANEL */
.contact-info h2 {
  font-size: 42px;
  margin-bottom: 14px;
  color: #fff;
}

.contact-info p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 40px;
}

.info-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  border-radius: 20px;
  background: linear-gradient(180deg, #0b111a, #070b12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 22px;
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon i {
  font-size: 18px;
  color: #fff;
}
.card-media img {
  width: 100%;
}
.info-card span {
  font-size: 15px;
  color: #838181;
  font-weight: 600;
}
.back {
  padding-top: 5rem;
}
.col-md-7 img {
  border-radius: 16px;
}
.back-to-home {
  text-decoration: none;
  color: #787777;
}
.info-card strong {
  display: block;
  font-size: 16px;
  margin: 4px 0;
  color: #fff;
}

.info-card small {
  font-size: 13px;
  color: #929191;
}
.SOL {
  width: 100%;
}
.col-md-7 img {
  width: 100%;
}


.features-section {
  padding: 100px 20px;
  background: #000;
}

.features-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.feature-card {
  background: linear-gradient(180deg, #0b111a, #070b12);
  border-radius: 24px;
  padding: 36px;
  border: 1px solid rgba(0, 200, 255, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 0 60px rgba(0, 180, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 180, 255, 0.25);
}

/* ICON */
.icon-badge {
 
  margin-bottom: 22px;
}

.icon-badge i {
  font-size: 18px;
  color: #1fb6ff;
}

/* TEXT */
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 14px;
  line-height: 1.4;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #b8c4d0;
}

.benefits-section {
  padding: 0px 20px;
  background: #000;
  color: #fff;
}

/* HEADER */
.benefits-header {
  max-width: 1300px;
  margin: 0 auto 60px;
}

.benefits-header h2 {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefits-header p {
  font-size: 18px;
  color: #a9b6c4;
}

/* GRID */
.benefits-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

/* CARD */
.benefit-card {
  display: flex;
  align-items: flex-start;
  align-items: center;
  gap: 20px;
  padding: 30px 34px;
  border-radius: 24px;
  background: linear-gradient(180deg, #0b111a, #070b12);
  border: 1px solid rgba(0, 200, 255, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 0 50px rgba(0, 180, 255, 0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 180, 255, 0.25);
}

/* CHECK ICON */
.check {
  min-width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(0, 170, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.check i {
  color: #1fb6ff;
  font-size: 16px;
}

/* TEXT */
.benefit-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #d2dae3;
}

.tab-section {
  padding: 100px 20px;
  background: #000;
  color: #fff;
}

/* TABS */
.tabs {
  max-width: 1300px;
  margin: 0 auto 50px;
  display: flex;
  gap: 40px;
}

.tab {
  background: none;
  border: none;
  color: #8fa0af;
  font-size: 18px;
  padding-bottom: 12px;
  cursor: pointer;
  position: relative;
}

.tab.Active {
  color: #1fb6ff;
}

.tab.Active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #1fb6ff;
}

/* CONTENT */
.tab-content {
  display: none;
  animation: fade 0.4s ease;
}

.tab-content.Active {
  display: block;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* GRID */
.card-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.tab-content .card {
  background: linear-gradient(180deg, #0b111a, #070b12);
  border-radius: 24px;
  padding: 36px;
  border: 1px solid rgba(0,200,255,0.2);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 0 50px rgba(0,180,255,0.06);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(0,170,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon i {
  color: #1fb6ff;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.card p {
  font-size: 16px;
  line-height: 1.6;
  /* margin: 0; */
  color: #b8c4d0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .tabs {
    flex-direction: column;
    gap: 20px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 28px 22px;
  }
}


/* RESPONSIVE */
@media (max-width: 1100px) {
  .benefits-header h2 {
    font-size: 44px;
  }
}

@media (max-width: 820px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-header h2 {
    font-size: 38px;
  }
}

@media (max-width: 480px) {
  .benefit-card {
    padding: 26px 22px;
  }

  .benefits-header h2 {
    font-size: 32px;
  }

  .benefits-header p {
    font-size: 16px;
  }
}


/* RESPONSIVE */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 30px 24px;
  }
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info h2 {
    font-size: 34px;
  }
}

@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1400px) {
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* gap: 13px; */
  }

  .app {
    font-size: 18px !important;
    padding: 1.5rem 1rem !important;
  }
}

@media (max-width: 600px) {
  .hero {
    height: 79vh !important;
  }
  .RS {
    flex-direction: column-reverse;
    margin-bottom: 1rem;
  }
  .SOL {
    margin: 1.5rem 0;
  }
  .px-5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .cta-box h2 {
    font-size: 31px;
  }
  .hero h2 {
    font-size: 35px!important;
    line-height: 1.2;
    font-weight: bold !important;
    color: #fff;
    margin-bottom: 20px;
  }
  .hero p {
    color: #cfd8dc;
    font-size: 19px;
  }
  .value-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #b8c4d0;
  }
  .value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
  }
  .hero-content h2 {
    font-size: 35px !important;
    font-weight: bold !important;
  }
  .hero-content h2 {
    font-size: 31px;
    font-weight: bold !important;
  }
  .back {
    margin-bottom: 1rem;
    padding-top: 2rem;
  }
  .paara {
    color: #bbbbbb;
    font-size: 17px !important;
  }
  .app {
    margin-bottom: 1rem;
  }
  .nav-link {
    margin-bottom: 15px;
  }
}
