:root {
  --brand-primary: #0d6efd;
  --brand-dark: #08111f;
  --brand-accent: #38bdf8;
  --brand-blue: #0d6efd;
  --brand-dark: #212529;
  --brand-soft: #eaf2ff;
}
body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.navbar {
  backdrop-filter: blur(12px);
}

.nav-item {
  display: inline-block;
  position: relative;
}

.nav-item a {
  text-decoration: none;
  display: block;
}

.nav-item a:hover {
  color: #0d6efd;
}

.popup-menu > ul {
  list-style-type: none;
}

.popup-menu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 300px;
  text-decoration: none;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.nav-item:hover .popup-menu {
  display: block;
  animation: fadeInAnimation 0.1s ease-in-out forwards;
}

.popup-menu a {
  color: black;
  padding: 20px 16px;
  margin: auto;
  text-decoration: none;
  display: block;
}

.popup-menu a:hover {
  background-color: #0d6efd;
  color: white;
}

/* Keyframes */

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.button-pill {
  background-color: #4009f7;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  width: 200px;
  height: 50px;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 25px;
}

.button-pill:hover {
  background-color: #3b00fc56;
  color: rgb(255, 255, 255);
  outline: 2px solid #f5f5f5;
}

.cover-container {
  max-width: 42em;
}

.circle {
  width: 100px;
  height: 100px;
  padding: 25px 5px;
  margin: auto;
  border-radius: 50%;
  background: radial-gradient(circle, #3498db, #8e54e9);
  border: 2px solid #0c0e8b;
}

.section-height {
  margin-top: 200px;
}

.footer-height {
  margin-top: 300px;
}

.feature-divider {
  margin: 5rem 0;
}

.featurette-heading {
  letter-spacing: -0.05rem;
}

.feature-height {
  margin-top: 390px;
}

/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}
/* rtl:begin:ignore */
.marketing .col-lg-4 p {
  margin-right: 0.75rem;
  margin-left: 0.75rem;
}
/* rtl:end:ignore */

.section {
  margin-bottom: 500px;
}

.nav-link {
  padding: 10px;
  text-decoration: none;
  color: rgb(214, 205, 205);
}

li > .active {
  background-color: #0d6efd;
  border-radius: 5px;
}

.testimonial-card {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* Customizing the carousel control icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #007bff; /* Change this to any color you prefer */
  background-size: 50%; /* Resize the icon if needed */
  border-radius: 50%; /* Optional: makes the icon background circular */
}

.hero {
  min-height: 88vh;
  background:
    linear-gradient(135deg, rgba(8, 17, 31, 0.95), rgba(13, 110, 253, 0.72)),
    url("hero-it-support.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.services-hero {
  background:
    linear-gradient(135deg, rgba(13, 110, 253, 0.95), rgba(33, 37, 41, 0.92)),
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.2),
      transparent 35%
    );
  color: #fff;
  padding: 120px 0 90px;
}
.service-card {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12) !important;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(13, 110, 253, 0.1);
  color: var(--brand-primary);
  font-size: 1.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 110, 253, 0.1);
  color: var(--brand-blue);
  padding: 8px 16px;
  border-radius: 50rem;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.services-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.services-card {
  position: relative;
  height: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 34px;
  background: #fff;
  transition: all 0.25s ease;
  overflow: hidden;
}

.services-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.services-card:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 110, 253, 0.35);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

.services-card:hover::before {
  opacity: 1;
}

.services-card-content {
  position: relative;
  z-index: 2;
}

.services-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--brand-soft);
  color: var(--brand-blue);
  font-size: 1.75rem;
  margin-bottom: 26px;
  transition: all 0.25s ease;
}

.services-card:hover .services-icon {
  background: var(--brand-blue);
  color: #fff;
  transform: rotate(-4deg) scale(1.05);
}

.services-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.services-card p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 22px;
}

.services-link {
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
}

.services-link:hover {
  text-decoration: underline;
}
.section-kicker {
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.process-section {
  padding: 80px 0;
  background: #fff;
}

.process-box {
  padding: 28px;
  border-radius: 20px;
  background: #f8fafc;
  height: 100%;
  border: 1px solid #e5e7eb;
}

.process-number {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}
.pricing-hero {
  background:
    linear-gradient(135deg, rgba(13, 110, 253, 0.95), rgba(33, 37, 41, 0.94)),
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.22),
      transparent 35%
    );
  color: #fff;
  padding: 120px 0 90px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 110, 253, 0.1);
  color: var(--brand-blue);
  padding: 8px 16px;
  border-radius: 50rem;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.pricing-card {
  position: relative;
  height: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #fff;
  padding: 34px;
  transition: all 0.25s ease;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 110, 253, 0.35);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

.pricing-card.featured {
  border: 2px solid var(--brand-blue);
  box-shadow: 0 24px 55px rgba(13, 110, 253, 0.18);
}

.popular-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--brand-blue);
  color: #fff;
  border-radius: 50rem;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--brand-soft);
  color: var(--brand-blue);
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.price {
  font-size: 2rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 8px;
}

.price small {
  font-size: 1rem;
  font-weight: 700;
  color: #6b7280;
}

.pricing-card p {
  color: #4b5563;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
  color: #374151;
  line-height: 1.5;
}

.feature-list i {
  color: var(--brand-blue);
  margin-top: 3px;
  flex-shrink: 0;
}

.included-section-pricing {
  padding: 80px 0;
  background: #fff;
}

.included-box {
  padding: 28px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  height: 100%;
  transition: all 0.25s ease;
}

.included-box:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.included-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.addons-section-pricing {
  padding: 80px 0;
  background: var(--brand-light);
}

.addons-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.06);
}

.cta-section-pricing {
  background: linear-gradient(135deg, #0d6efd, #111827);
  color: #fff;
  padding: 70px 0;
  margin-bottom: 0 !important;
}

.about-hero {
  background:
    linear-gradient(135deg, rgba(13, 110, 253, 0.95), rgba(33, 37, 41, 0.94)),
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.22),
      transparent 35%
    );
  color: #fff;
  padding: 120px 0 90px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 110, 253, 0.1);
  color: var(--brand-blue);
  padding: 8px 16px;
  border-radius: 50rem;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.story-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.story-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.image-card {
  min-height: 420px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(13, 110, 253, 0.85), rgba(17, 24, 39, 0.95)),
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.2),
      transparent 35%
    );
  color: #fff;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  position: relative;
}

.image-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  top: -70px;
  right: -70px;
}

.image-card-content {
  position: relative;
  z-index: 2;
}

.stats-section {
  padding: 70px 0;
  background: #fff;
}

.stat-box {
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 30px;
  height: 100%;
  background: #f8fafc;
  transition: all 0.25s ease;
}

.stat-box:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--brand-soft);
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.values-section {
  padding: 90px 0;
  background: var(--brand-light);
}

.value-card {
  position: relative;
  height: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 34px;
  background: #fff;
  transition: all 0.25s ease;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 110, 253, 0.35);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card-content {
  position: relative;
  z-index: 2;
}

.value-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--brand-soft);
  color: var(--brand-blue);
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: all 0.25s ease;
}

.value-card:hover .value-icon {
  background: var(--brand-blue);
  color: #fff;
  transform: rotate(-4deg) scale(1.05);
}

.mission-section {
  padding: 90px 0;
  background: #fff;
}

.mission-box {
  border-radius: 24px;
  padding: 36px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  height: 100%;
}

.mission-box h3 {
  font-weight: 800;
}

.cta-section-about-us {
  background: linear-gradient(135deg, #0d6efd, #111827);
  color: #fff;
  padding: 70px 0;
}
.contact-hero {
      background:
        linear-gradient(135deg, rgba(13, 110, 253, 0.95), rgba(33, 37, 41, 0.94)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 35%);
      color: #fff;
      padding: 120px 0 90px;
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(13, 110, 253, 0.1);
      color: var(--brand-blue);
      padding: 8px 16px;
      border-radius: 50rem;
      font-size: 0.875rem;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .contact-section {
      padding: 90px 0;
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    }

    .contact-card,
    .form-card {
      border: 1px solid #e5e7eb;
      border-radius: 24px;
      background: #fff;
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
      height: 100%;
    }

    .contact-card {
      padding: 36px;
    }

    .form-card {
      padding: 38px;
    }

    .contact-info-box {
      display: flex;
      gap: 16px;
      padding: 20px;
      border-radius: 18px;
      background: #f8fafc;
      border: 1px solid #e5e7eb;
      margin-bottom: 16px;
      transition: all 0.25s ease;
    }

    .contact-info-box:hover {
      background: #fff;
      transform: translateY(-4px);
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    }

    .contact-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: var(--brand-soft);
      color: var(--brand-blue);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      flex-shrink: 0;
    }

    .contact-info-box h4 {
      font-size: 1rem;
      font-weight: 800;
      margin-bottom: 4px;
    }

    .contact-info-box p,
    .contact-info-box a {
      color: #4b5563;
      margin-bottom: 0;
      text-decoration: none;
    }

    .contact-info-box a:hover {
      color: var(--brand-blue);
    }

    .form-control,
    .form-select {
      padding: 13px 15px;
      border-radius: 14px;
      border-color: #d1d5db;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--brand-blue);
      box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
    }

    .map-section {
      padding: 80px 0;
      background: #fff;
    }

    .map-card {
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid #e5e7eb;
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
      min-height: 360px;
      background:
        linear-gradient(135deg, rgba(13, 110, 253, 0.9), rgba(17, 24, 39, 0.95)),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 35%);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px;
    }

    .quick-contact-section {
      padding: 80px 0;
      background: var(--brand-light);
    }

    .quick-card {
      padding: 30px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid #e5e7eb;
      height: 100%;
      transition: all 0.25s ease;
    }

    .quick-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
    }

    .quick-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      background: var(--brand-soft);
      color: var(--brand-blue);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.55rem;
      margin-bottom: 18px;
    }

    .cta-section-contact {
      background: linear-gradient(135deg, #0d6efd, #111827);
      color: #fff;
      padding: 70px 0;
    }
