/* abstracts */
/* brand colors */
/* blue color shades */
/* common color */
/* Responsive */
/* components */
/* abstracts */
/* abstracts */
/* base */
/* abstracts */
*:after,
*:before {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 100px;
  /* Matches your fixed header height */
  scroll-behavior: smooth;
  /* Optional: adds a nice smooth scroll effect */
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: normal;
  font-family: "Ubuntu", sans-serif;
  font-size: 14px;
  color: #000000;
  margin: 0;
  padding: 0;
  height: 100vh;
  background: #080808;
}

html,
body {
  height: 100%;
}

a {
  text-decoration: underline;
  outline: none;
  transition: all 450ms ease-in-out 0s;
  -webkit-transition: all 450ms ease-in-out 0s;
  -moz-transition: all 450ms ease-in-out 0s;
}

img {
  max-width: 100%;
  height: auto;
}

/* focus */
img {
  max-width: 100%;
  height: auto;
}

a,
a:not([href]) {
  cursor: pointer;
}

.link-text {
  color: #000000 !important;
  text-decoration: underline;
}
.link-text:hover {
  text-decoration: none;
}

/* Custom scrollbar for the timeline details */
*::-webkit-scrollbar-thumb {
  background-color: #eae9eb;
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #dddddd;
}

.cursor-pointer {
  cursor: pointer;
}

.container {
  max-width: 1280px;
  width: 100%;
}

.text-brand-green {
  color: #2aa3ec;
}

.text-accent {
  color: #2aa3ec !important;
}

.white-text {
  color: #fff;
}

.text-neutral-400 {
  color: #a3a3a3;
}

.font-size-18 {
  font-size: 18px;
}

/* layout */
/* abstracts */
.nav-pill-container {
  background-color: #0a0b0d;
  border: 1px solid #1f2328;
  border-radius: 50px;
  padding: 16px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  background: rgba(20, 25, 30, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.navbar-brand .logo-img {
  height: 32px;
}

.nav-link {
  color: #a3a3a3 !important;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #fff !important;
}

.btn-primary-pz {
  background-color: #2aa3ec;
  border: none;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s transform;
}
.btn-primary-pz i {
  height: 20px;
  transition-duration: 150ms;
}
.btn-primary-pz:hover {
  background-color: #fff;
  transform: translateY(-1px);
  color: #000;
}
.btn-primary-pz:hover i {
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .nav-pill-container {
    border-radius: 20px;
  }
  .navbar-nav {
    padding: 1rem 0;
  }
}
/* abstracts */
/* layout */
/* abstracts */
.hero-section {
  color: white;
  margin: 100px 0 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* Carousel wrapper styling */
  /* Image styling */
  /* Caption styling (centered like screenshot) */
  /* Indicators */
  /* Arrow controls */
}
.hero-section h1 {
  font-size: 55px;
}
@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .hero-section .lead {
    font-size: 17px !important;
  }
}
.hero-section p {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.625;
}
.hero-section .carousel {
  border: 1px solid #3a3f44;
  background: #1f2327;
}
.hero-section .carousel-indicators {
  bottom: -50px;
}
.hero-section .active {
  background-color: #2aa3ec !important;
}
.hero-section .carousel-item img {
  object-fit: cover;
  background: #f3f3f3;
}
.hero-section .carousel-caption {
  color: #000;
}
.hero-section .carousel-caption h2 {
  font-size: 48px;
  font-weight: 300;
  color: #bfbfbf;
}
.hero-section .carousel-caption h5 {
  font-weight: 600;
  color: #000;
}
.hero-section .carousel-caption p {
  color: #333;
}
.hero-section .carousel-indicators [data-bs-target] {
  width: 28px;
  height: 3px;
  background-color: #999;
}
.hero-section .carousel-indicators .active {
  background-color: #000;
}
.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
  filter: invert(1);
  background-color: #11222c;
  border-radius: 50%;
  font-size: 20px;
  background-size: 50%;
}

.badge-live {
  background: rgba(42, 163, 236, 0.1);
  color: #2aa3ec;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(42, 163, 236, 0.2);
}
.badge-live .dot {
  height: 8px;
  width: 8px;
  background-color: #2aa3ec;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 0 10px #2aa3ec;
}

.btn-emerald {
  background-color: #2aa3ec;
  border-color: #2aa3ec !important;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.5s;
  min-height: 55px;
}
.btn-emerald:hover {
  background-color: #fff !important;
  color: #000 !important;
  transform: translateY(-5px);
  box-shadow: 0px 0px 30px 5px rgba(45, 255, 196, 0.15);
}

.rounded-pill-custom {
  border-radius: 35px;
  border-color: rgba(255, 255, 255, 0.3);
  font-size: 15px;
  display: flex;
  align-items: center;
}
.rounded-pill-custom:hover {
  border-color: #2aa3ec;
  background: transparent;
  color: #fff;
}

.card-pz {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.main-card {
  width: 80%;
  min-height: 400px;
}

.floating-card {
  position: absolute;
  bottom: 10%;
  right: 0;
  width: 250px;
  background: rgba(22, 27, 34, 0.95);
  backdrop-filter: blur(10px);
  border-color: rgba(42, 163, 236, 0.3);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: #8b949e;
}

.avatar-group {
  display: flex;
}
.avatar-group .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #30363d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  border: 2px solid #0d1117;
  margin-left: -10px;
}
.avatar-group .avatar:first-child {
  margin-left: 0;
}

/* hero-card-section */
.hero-card-section {
  /* Card Base Styles */
  /* Specific Card Tags */
  /* Glassmorphism Dashboard */
  /* Progress Bar */
}
.hero-card-section .security-card {
  background-color: #121212;
  border-radius: 40px;
  color: white;
  padding: 30px;
  position: relative;
  border: 1px solid #2a2a2a;
  min-height: 400px;
}
.hero-card-section .inner-box {
  background-color: #1a1a1a;
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
  border: 1px solid #333;
}
.hero-card-section .tag-high {
  color: #ff4d4d;
  font-weight: bold;
  font-size: 0.8rem;
}
.hero-card-section .tag-med {
  color: #ffb84d;
  font-weight: bold;
  font-size: 0.8rem;
}
.hero-card-section .risk-badge {
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-card-section .glass-dashboard {
  background: rgba(40, 40, 45, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 25px;
  color: white;
  width: 300px;
  position: absolute;
  bottom: 100px;
  right: -20px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  z-index: 10;
}
.hero-card-section .stat-val {
  font-weight: bold;
  font-size: 1.4rem;
}
.hero-card-section .stat-green {
  color: #2aa3ec;
}
.hero-card-section .custom-progress {
  height: 6px;
  background: #333;
  border-radius: 10px;
  margin-top: 10px;
}
.hero-card-section .progress-fill {
  width: 47%;
  height: 100%;
  background: #ff4d4d;
  border-radius: 10px;
}

/* intro section */
.intro-section {
  padding: 90px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* Card Layout */
  /* Hover Glow Button Effect */
  /* Glassmorphism Dashboard Overlay */
  /* Typography & Stats */
  /* Progress Bar */
}
.intro-section .section-header h2 {
  color: #fff;
  font-size: 50px;
}
@media (max-width: 767px) {
  .intro-section .section-header h2 {
    font-size: 30px;
  }
}
.intro-section .section-header p {
  font-size: 20px;
  line-height: 27px;
}
@media (max-width: 767px) {
  .intro-section .section-header p {
    font-size: 17px;
  }
}
.intro-section .counter {
  color: #fff;
}
.intro-section .security-card {
  background-color: #141414;
  border: 1px solid #222;
  border-radius: 32px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease;
}
.intro-section .security-card h6 {
  color: #fff;
}
.intro-section .content-box {
  background-color: #1c1c1c;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 20px;
  margin-top: 20px;
}
.intro-section .btn-glow {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
  font-weight: 600;
  border: none;
  padding: 12px 28px;
  background-color: #0d6efd;
  color: white;
  text-decoration: none;
  display: inline-block;
}
.intro-section .btn-glow:hover {
  transform: translateY(-3px);
  background-color: #1a7bff;
  color: white;
  box-shadow: 0 0 20px rgba(13, 110, 253, 0.6), 0 0 40px rgba(13, 110, 253, 0.2);
  filter: brightness(1.1);
}
.intro-section .glass-dashboard {
  background: rgba(30, 30, 35, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 25px;
  width: 320px;
  position: absolute;
  bottom: -30px;
  right: -20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  z-index: 10;
}
.intro-section .text-green {
  color: #2aa3ec;
}
.intro-section .tag-high {
  color: #ff4d4d;
  font-size: 0.75rem;
  font-weight: 700;
}
.intro-section .tag-med {
  color: #ffb84d;
  font-size: 0.75rem;
  font-weight: 700;
}
.intro-section .stat-number {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}
@media (max-width: 767px) {
  .intro-section .stat-number {
    font-size: 40px;
  }
}
.intro-section .custom-progress {
  height: 6px;
  background: #333;
  border-radius: 10px;
  margin-top: 10px;
  overflow: hidden;
}
.intro-section .progress-fill {
  width: 47%;
  height: 100%;
  background: #ff4d4d;
}
.intro-section .glass-card {
  background: hsla(0, 0%, 100%, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  border-radius: 28px;
}
.intro-section .glass-card {
  background: hsla(0, 0%, 100%, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-backdrop.show {
  opacity: 0.9;
}

.btn-brand-green {
  background-color: #2aa3ec;
  color: #fff;
  border: none;
  border-radius: 35px !important;
  transition: all 0.3s ease;
  gap: 10px;
}
.btn-brand-green:hover {
  background: #fff;
  box-shadow: 0px 0px 30px 5px rgba(45, 255, 196, 0.15);
}

/* contact form */
.contact-form {
  /* --- MODAL FORM (Image 3) --- */
}
.contact-form .modal-content {
  background-color: #fff;
  /* Custom Gray from Image 3 */
  border-radius: 20px;
  border: none;
}
.contact-form .form-control {
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #ced4da;
}
.contact-form .btn-submit {
  background-color: #2aa3ec;
  /* Blue from Image 3 */
  color: white;
  border: none;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 15px;
  border-radius: 35px !important;
  width: 100%;
}
.contact-form .btn-submit:hover {
  background-color: #176493;
  color: white;
}

.input-group {
  cursor: pointer;
}

.input-group-text {
  font-weight: 600;
}

.file-input-group:hover .input-group-text {
  background: #2aa3ec;
  color: #fff;
}

/* modal*/
.modal-content .close {
  background: transparent;
  border: none !important;
  font-size: 20px;
}

.modal-content h2 {
  font-size: 20px;
  margin: 0;
}

/* video modal */
.video-modal {
  /* Make the modal wider for the video */
  /* Responsive 16:9 Video Container */
  /* Custom Close Button for Video */
}
.video-modal .modal-xl {
  max-width: 800px;
}
.video-modal .modal-content {
  /* Dark background for cinema feel */
  border: none;
}
.video-modal .ratio-16x9 {
  background-color: #000;
}
.video-modal .btn-close-video {
  position: absolute;
  right: -10px;
  top: -30px;
  filter: invert(1);
  /* Makes it white */
  opacity: 1;
}

/* phishing-section */
.phishing-section {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 90px 0;
}
.phishing-section .main-title {
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  color: #fff;
}
.phishing-section .subtitle {
  color: #b0b0b0;
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 27px;
}
.phishing-section .highlight-text {
  color: #2aa3ec;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
}
.phishing-section .section-subtitle {
  font-weight: 600;
  font-size: 24px;
  color: #fff;
}
.phishing-section .stat-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.phishing-section .stat-card:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.06);
}
.phishing-section .stat-card .icon-box {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.phishing-section .stat-card .icon-box.red-icon {
  color: #ff4d4d;
  border-color: rgba(255, 77, 77, 0.3);
}
.phishing-section .stat-card .icon-box.yellow-icon {
  color: #ffcc00;
  border-color: rgba(255, 204, 0, 0.3);
}
.phishing-section .stat-card .icon-box.green-icon {
  color: #2aa3ec;
  border-color: rgba(42, 163, 236, 0.3);
}
.phishing-section .stat-card .content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: #fff;
}
.phishing-section .stat-card .content p {
  font-size: 0.9rem;
  color: #878d93;
  margin: 0;
}
.phishing-section .stat-card .content .text-accent {
  color: #2aa3ec;
  font-weight: 500;
}
.phishing-section .cta-glass-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 4rem 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.phishing-section .cta-glass-card .shield-icon {
  width: 80px;
  height: 80px;
  background: rgba(42, 163, 236, 0.1);
  border: 1px solid rgba(42, 163, 236, 0.2);
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #2aa3ec;
}
.phishing-section .cta-glass-card h2 {
  font-weight: 700;
  color: #fff;
}
.phishing-section .cta-glass-card .text-muted-custom {
  color: #b0b0b0;
  max-width: 400px;
  margin: 0 auto;
  font-size: 15px;
}
.phishing-section .cta-glass-card .btn-demo {
  background-color: #2aa3ec;
  color: #fff;
  font-weight: 700;
  border-radius: 35px;
  border: none;
  transition: all 0.3s ease;
}
.phishing-section .cta-glass-card .btn-demo:hover {
  background-color: #fff !important;
  transform: translateY(-2px);
  color: #000 !important;
  box-shadow: 0 10px 20px rgba(42, 163, 236, 0.3);
}
@media (max-width: 991px) {
  .phishing-section .cta-glass-card {
    margin-top: 2rem;
    padding: 3rem 1.5rem;
  }
}

.platform-section {
  padding: 90px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.platform-section h2 {
  font-size: 56px;
  color: #fff;
}
@media (max-width: 767px) {
  .platform-section h2 {
    font-size: 30px;
  }
}
.platform-section .lead-text {
  color: #8b949e;
  max-width: 850px;
  line-height: 1.6;
  font-size: 1.1rem;
}
.platform-section .glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.platform-section .glass-card:hover {
  border-color: rgba(42, 163, 236, 0.3);
  transform: translateY(-5px);
}
.platform-section .glass-card p {
  color: #fff;
  font-size: 18px;
}
.platform-section .glass-card .card-title-main {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}
.platform-section .learning-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #fff;
}
.platform-section .learning-list li i {
  color: #2aa3ec;
  margin-right: 12px;
  font-size: 1.2rem;
}
.platform-section .info-alert-box {
  background: rgba(13, 110, 253, 0.05);
  border: 1px solid rgba(13, 110, 253, 0.2);
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  font-size: 0.85rem;
  color: #cbd5e0;
  line-height: 22px;
}
.platform-section .info-alert-box i {
  color: #3182ce;
  font-size: 1.1rem;
}
.platform-section .feature-item .icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(108, 92, 231, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #6c5ce7;
  flex-shrink: 0;
}
.platform-section .feature-item h6 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}
.platform-section .feature-item p {
  margin-bottom: 0;
  color: #8b949e;
  font-size: 0.85rem;
}

/*  simple-setup-section */
.simple-setup-section {
  padding: 90px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.simple-setup-section .section-header p {
  font-size: 16px;
  line-height: 22px;
}
.simple-setup-section h2 {
  color: #fff;
  font-size: 55px;
}
@media (max-width: 767px) {
  .simple-setup-section h2 {
    font-size: 30px;
  }
}
.simple-setup-section h3 {
  color: #fff;
  font-size: 22px;
}
.simple-setup-section .step-card p {
  font-size: 15px;
  line-height: 22px;
}
.simple-setup-section .glass-container {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  color: #fff;
}
.simple-setup-section .glass-container p {
  font-size: 18px;
  letter-spacing: 0.05em;
}
.simple-setup-section .glass-container span {
  font-size: 18px;
}
.simple-setup-section .step-icon {
  width: 50px;
  height: 50px;
  background: rgba(42, 163, 236, 0.1);
  border: 1px solid rgba(42, 163, 236, 0.3);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2aa3ec;
  font-weight: 700;
  font-size: 1.2rem;
}
.simple-setup-section .badge-glass {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #fff;
}
.simple-setup-section .badge-glass:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(42, 163, 236, 0.4);
}

.page-footer {
  padding: 60px 0;
}
.page-footer .copyright {
  color: #717174;
}
.page-footer .footer-divider {
  color: #717174;
}
.page-footer .legal-links a {
  color: #717174;
}
.page-footer .legal-links a:hover {
  color: #fff;
}

.footer-social-media ul {
  display: flex;
}

.footer-social-media ul li {
  list-style: none;
  margin: 0 0 0 5px;
}

.footer-social-media ul li a {
  color: #fff;
  background: transparent;
  border: 1px solid #3a3535;
  height: 45px;
  width: 45px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  vertical-align: top;
  line-height: 45px;
  font-size: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.footer-social-media ul li a:hover {
  background: #2aa3ec;
  color: #fff;
}

.footer-social-media ul li.twitter svg {
  width: 23px !important;
  fill: #fff !important;
}

.footer-social-media ul li.twitter a:hover svg {
  fill: #fff !important;
}

.inquiry-button {
  position: fixed;
  right: -40px;
  top: calc(50% - 65px);
  z-index: 1000;
  transform: rotate(270deg);
  transform: rotate(-90deg) translateX(-50%);
}

/*mozilla hack*/
@-moz-document url-prefix() {
  .header-login .btn {
    padding: 1px 10px 2px 10px !important;
  }
}
.btn.disabled,
.btn:disabled {
  pointer-events: none;
}

.inquiry-button a,
.inquiry-button button {
  background: #2aa3ec;
  color: #fff;
  font-weight: 600;
  -webkit-border-radius: 15px 15px 0 0;
  -moz-border-radius: 15px 15px 0 0;
  -ms-border-radius: 15px 15px 0 0;
  -o-border-radius: 15px 15px 0 0;
  border-radius: 15px 15px 0 0;
  width: 150px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: top;
  text-decoration: none;
  font-size: 16px;
  border: none;
}

.inquiry-button a:hover,
.inquiry-button button:hover {
  background: #fff;
  color: #000;
}

/* software */
.split-container {
  display: flex;
  align-items: center;
  padding: 90px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* Left side styling */
  /* Right side carousel styling */
  /* Carousel Navigation Styling */
}
.split-container h2 {
  color: #fff;
  font-size: 35px;
}
.split-container .content-section {
  padding: 80px 60px;
  height: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.split-container p {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
}
.split-container .capabilities {
  color: #fff;
}
.split-container .carousel-section {
  padding: 40px;
  background: #ccc;
}
.split-container .software-carousel {
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 20px 20px 0;
  border-left: 0;
  padding: 2.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
@media (max-width: 767px) {
  .split-container .software-carousel {
    border-radius: 20px;
  }
}
.split-container .carousel-item img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid #1a2a40;
}
.split-container .check-mark {
  color: #2aa3ec;
  margin-right: 12px;
  font-weight: bold;
}
.split-container ul li {
  font-size: 16px;
  line-height: 22px;
}
.split-container .custom-nav {
  position: absolute;
  bottom: -60px;
  right: 0;
  display: flex;
  gap: 10px;
}
.split-container .carousel-control-prev,
.split-container .carousel-control-next {
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  opacity: 1;
  top: 50%;
}
@media (max-width: 991px) {
  .split-container .content-section {
    padding: 40px;
    min-height: auto;
  }
}