* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #e7e7e7;
  line-height: 1.5;
}

/* BACKGROUND VIDEO */
#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -2;
  object-fit: cover;
  transform: scale(1.1);
}
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.75);
}

/* HEADER BANNER */
.header-banner {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background-color: #0d2440;
  text-align: center;
  pointer-events: auto;
  z-index: 2;
}
.header-banner__emergency {
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.25s ease, background-color 0.25s ease;
}
.header-banner__emergency:hover {
  color: #679fff;
  background-color: rgba(255, 255, 255, 0.08);
}
.header-banner__text {
  position: relative;
}
.header-banner__text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #14b8a6;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.25s ease-out;
}
.header-banner__emergency:hover .header-banner__text::after {
  transform: scaleX(1);
}

/* HEADER STYLES */
.header-background {
  position: relative;
  background: transparent;
  pointer-events: auto;
  opacity: 0.9;
}
.header-background::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #2a2a30;
  border-radius: 500px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  z-index: -1;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}
header.scrolled .header-background::before {
  transform: scaleX(1);
  opacity: 1;
}
/* Navigation */
nav a.nav-link {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  color: #e7f0fa;
  transition: color 0.2s ease;
  white-space: nowrap;
}
nav a.nav-link:hover {
  color: #7ba4d0;
}
.login-link {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(231, 240, 250, 0.5);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.login-link:hover {
  background-color: #1b6dc5;
  border-color: #1b6dc5;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27, 109, 197, 0.4);
}

.login-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  margin-bottom: 2px;
}

.btn_start {
  background-color: #1a50af;
  color: #e0e0e0;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
  display: block !important;
}
.btn_start::after {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 0;
  height: 100%;
  background-color: #e0e0e0;
  transform: skew(30deg);
  transform-origin: top left;
  transition: width 0.4s;
  z-index: 1;
}
.btn_start:hover {
  color: #034078;
}
.btn_start:hover::after {
  width: 135%;
}
.btn_start span {
  position: relative;
  z-index: 2;
}
@media (max-width: 640px) {
  .btn_start {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* BURGER MENU */
.header__burger {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 5px;
  cursor: pointer;
  z-index: 1000;
  flex-shrink: 0;
}
.header__burger-line {
  display: block;
  width: 25px;
  height: 3px;
  margin: 3px 0;
  background-color: #0049c6;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__burger:hover .header__burger-line {
  background-color: #8fb8ff;
}
.header__burger-line:first-of-type {
  width: 18px;
}
.header__burger.is-active .header__burger-line:first-of-type {
  width: 25px;
  transform: translateY(4.5px) rotate(45deg);
}
.header__burger.is-active .header__burger-line:last-of-type {
  transform: translateY(-4.5px) rotate(-45deg);
}

/*SIDE MENU*/
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 998;
}

.side-menu {
  position: fixed;
  top: 160px;
  right: 0;
  width: 350px;
  max-width: 85vw;
  height: calc(100vh - 115px);
  background: linear-gradient(180deg, #2e5e99, #0d2440);
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 998;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  overflow-y: auto;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .side-menu {
    width: 400px;
    max-width: 400px;
    top: 160px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  .white-layer {
    opacity: 1;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}
}

.menu-inner {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
.menu-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.menu-logo {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  padding: 15px;
}

.side-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding-bottom: 40px;
  padding-top: 20px;
}

.menu-link,
.services-toggle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 6px;
  position: relative;
}
.menu-link::after,
.services-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #7ba4d0;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.menu-link:hover::after,
.services-toggle:hover::after {
  width: 100%;
}

.services-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  width: 100%;
}
.services-group {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.underline {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8fb8ff;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 2px solid #7ba4d0;
  white-space: nowrap;
  display: block;
}
.divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 25px auto;
}

.services-group a {
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 0;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.services-group a:hover {
  opacity: 1;
  transform: translateY(-1px);
  color: #7ba4d0;
}

.header__burger.is-active ~ .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}
.header__burger.is-active ~ .side-menu {
  transform: translateX(0);
}
.btn_aboutus {
  color: #2e5e99;
  background-color: #e7f0fa;
  text-decoration: none;
  border: 1px solid #2a2a2a;
  padding: 0.7rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  transition: background-color 0.2s ease;
  display: inline-block;
}
.btn_aboutus:hover {
  background-color: #034078;
  color: #e7f0fa;
}
.key_main {
  text-decoration: none;
  border: 2px solid #e7f0fa;
  color: #e7f0fa;
  padding: 0.6rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: background-color 0.2s ease;
  display: inline-block;
}
.key_main:hover {
  color: #7ba4d0;
}
.follow-text {
  color: #e7f0fa;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  white-space: nowrap;
}
.social-section ul li {
  list-style: none;
}
.social-section ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  background-color: #021122;
  text-align: center;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 2px solid #383838;
  z-index: 1;
}
@media (min-width: 768px) {
  .social-section ul li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
  
}
.social-section ul li a .icon {
  position: relative;
  color: #e7f0fa;
  transition: 0.5s;
  z-index: 3;
}
.social-section ul li a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}
.social-section ul li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: 2;
}
.social-section ul li a:hover:before {
  top: 0;
}
.social-section ul li:nth-child(1) a:before {
  background: #3b5999;
}
.social-section ul li:nth-child(2) a:before {
  background: #55acee;
}
.social-section ul li:nth-child(3) a:before {
  background: #0077b5;
}
.social-section ul li:nth-child(4) a:before {
  background: #dd4b39;
}

/*Page 2*/
.layer-wrapper {
  position: relative;
  width: 100%;

  background-color: transparent;
}
.white-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(156, 156, 156, 0.4),
    rgba(33, 31, 31, 0.001)
  );
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.blue-layer {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 800px;
  padding-top: 6rem;
  padding-bottom: 12rem;
  background: linear-gradient(to bottom, #224672, #071424);

  z-index: 1;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}

@media (min-width: 1024px) {
  .blue-layer {
    clip-path: polygon(7% 0%, 100% 0%, 100% 100%, -42% 100%);

    padding-top: 10rem;
    padding-bottom: 14rem;
  }
  .main_content {
    padding-left: 4rem;
  }
}

.chain-model {
  background-color: transparent;
  --poster-color: transparent;
  contain: layout paint;
}

/*Card Changing*/
#features-carousel {
  perspective: 1000px;
  overflow: visible;
  position: relative;
  z-index: 50;
}

.carousel-card {
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: rgba(16, 36, 62, 0.85);
  background-repeat: repeat;
  background-size: 100px 100px;
  background-blend-mode: overlay;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05), 
              0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
  backdrop-filter: none;
  overflow: hidden;
}
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.carousel-card.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1rem;
  padding: 2px;

  background: conic-gradient(from var(--angle), transparent 70%, #00d2ff 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  animation: spin 3s linear infinite;
  pointer-events: none;
  z-index: 20;
}
.carousel-card.active {
  box-shadow: 0 0 40px rgba(0, 210, 255, 0.15);
  border-color: rgba(0, 210, 255, 0.3);
}

@keyframes spin {
  0% {
    --angle: 0deg;
  }
  100% {
    --angle: 360deg;
  }
}
.checked {
  color: orange;
}
/* PROJECT CARD ANIMATIONS */
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.project-card {
  position: relative;
  isolation: isolate;
  background-color: #050C19;
  transition: border-color 0.5s ease; 
  z-index: 1;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(to bottom, #1b6dc5, #0b1a2e);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: -1;
}
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 2px;
  background: conic-gradient(from var(--angle), transparent 70%, #00d2ff 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spin 3s linear infinite;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.project-card:hover {
    border-color: transparent;
}
.project-card:hover::before {
    opacity: 1;
}
.project-card:hover::after {
    opacity: 1; 
}

@keyframes spin {
  0% { --angle: 0deg; }
  100% { --angle: 360deg; }
}

.project-card-dark {
  position: relative;
  isolation: isolate;
  background-color: #050C19;
  border: 1px solid #1f2937; 
  border-radius: 1rem;
  transition: border-color 0.5s ease;
  z-index: 1;
}

.project-card-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(to bottom, #0e2a47, #000000); 
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: -1;
}
.project-card-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 2px;
  background: conic-gradient(from var(--angle), transparent 70%, #00d2ff 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spin 3s linear infinite;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.project-card-dark:hover {
    border-color: transparent;
}
.project-card-dark:hover::before {
    opacity: 1;
}
.project-card-dark:hover::after {
    opacity: 1;
}
.blink-dot {
  width: 8px;
  height: 8px;
  background-color: #93c5fd;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
  display: inline-block;
  flex-shrink: 0;
  animation: breathe 2.5s infinite ease-in-out;
}

@keyframes breathe {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
    box-shadow: 0 0 0 rgba(59, 130, 246, 0);
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
  }
  100% {
    transform: scale(0.8);
    opacity: 0.5;
    box-shadow: 0 0 0 rgba(59, 130, 246, 0);
  }
}

/*CARD STYLES*/

.step-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 2px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spin 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.step-card:hover::after {
  opacity: 1;
}
.step-card-black::after {
  background: conic-gradient(from var(--angle), transparent 70%, #22d3ee 100%);
}
.step-card-blue::after {
  background: conic-gradient(from var(--angle), transparent 70%, #020617 100%);
}
.step-watermark {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
/*TESTIMONIALS STYLES*/
.testimonial-card {
  position: relative;
  background-color: #050C19;
  border: 1px solid #1f2937;
  border-radius: 1rem;
  padding: 2rem;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  z-index: 1;
}

.testimonial-card:hover {
  border-color: transparent;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 2px;
  background: conic-gradient(from var(--angle), transparent 70%, #22d3ee 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spin 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.testimonial-card:hover::after {
  opacity: 1;
}

.testimonial-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  transition: all 0.5s ease;
  max-height: 110px;
  opacity: 0.8;
}

.testimonial-text.expanded {
  -webkit-line-clamp: unset;
  max-height: 1000px;
  opacity: 1;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #7ba4d0;
  margin-top: 1rem;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  text-transform: uppercase;
}

.read-more-btn:hover {
  color: #fff;
}

/*CTA CARD STYLES*/

.cta-card {
  position: relative;
  background: linear-gradient(135deg, #0037ff 0%, #0051ff 100%);
  border-radius: 2rem;
  padding: 7rem 2rem 4rem 2rem;
  
  text-align: center;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 60, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1); 
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0, 60, 255, 0.4);
}
.btn-cta-white {
  background-color: #ffffff;
  color: #0037ff;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.btn-cta-white:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: #0026b3; 
}
/*FAQ SECTION STYLES*/

.faq-item {
  background-color: #ffffff;
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 2rem;
  font-weight: 700;
  color: #000000;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 2rem;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 2rem;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: #000;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  color: #fff;
  font-size: 1.1rem;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.social-icon-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.btn-fb { background-color: #1877f2; }
.btn-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.btn-li { background-color: #0077b5; }
.btn-yt { background-color: #ff0000; }

/* AI CHAT WIDGET RESPONSIVENESS*/

@media (max-width: 768px) {
    chat-widget[widget-id="692f9f3f7aac8065f5a0a849"] {
        bottom: 20px !important;
        right: 20px !important;
    }
    chat-widget[widget-id="692da1cbcf45957e029f02c9"] {
        bottom: 20px !important;
        right: 20px !important;
    }
}




/* --- SOLUTIONS TABS SECTION --- */

/* Tab Container styling */
.solutions-tab-btn {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #9ca3af; /* Gray-400 */
    border-left: 3px solid transparent;
    border-bottom: 1px solid #1f2937; /* Gray-800 divider */
    background-color: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover State */
.solutions-tab-btn:hover {
    background-color: rgba(27, 109, 197, 0.1);
    color: white;
}

/* Active State (The Blue Highlight) */
.solutions-tab-btn.active {
    background: linear-gradient(90deg, #1b6dc5 0%, #0b2e55 100%);
    border-left: 3px solid #679fff;
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for mobile (make it scrollable horizontally) */
@media (max-width: 1024px) {
    .tabs-wrapper {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        border-bottom: 1px solid #1f2937;
    }
    .solutions-tab-btn {
        width: auto;
        border-left: none;
        border-bottom: 3px solid transparent;
        border-radius: 8px 8px 0 0;
        padding: 1rem 1.5rem;
    }
    .solutions-tab-btn.active {
        background: none;
        background-color: #1b6dc5;
        border-left: none;
        border-bottom: 3px solid white;
    }
}

/* Image Container Styling */
.solution-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid #1f2937;
}

/* Subtle glow behind the image */
.solution-image-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: #1b6dc5;
    filter: blur(80px);
    opacity: 0.2;
    z-index: 0;
}

/*MEGA MENU STYLES*/
.group:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
}
.mega-menu-list::-webkit-scrollbar {
    width: 4px;
}
.mega-menu-list::-webkit-scrollbar-thumb {
    background-color: #1b6dc5;
    border-radius: 4px;
}

/* --- TEAM SECTION STYLES --- */

/* The Sticky Wrapper for the 3D Model */
.team-model-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.sticky-model-container {
    position: sticky;
    top: 25vh; /* Centers vertically in viewport */
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.3; /* Subtle background opacity */
}

/* The Team Card with Laser Effect */
.team-card {
    position: relative;
    background: rgba(5, 12, 25, 0.9); /* Dark semi-transparent bg */
    border-radius: 1.5rem;
    padding: 2px; /* Space for the border */
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.team-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, #00d2ff);
    animation: rotate-border 4s linear infinite;
    z-index: -1;
}
.team-card-inner {
    background: #050C19;
    border-radius: 1.4rem;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.team-img {
    transition: transform 0.5s ease;
}
.team-card:hover .team-img {
    transform: scale(1.05);
}