 body {
      margin: 0;
       font-family: 'Inter', sans-serif;
      background-color: #000;
      color: #fff;
      overflow-x: hidden;
      padding-left: 40px;  
      padding-right: 40px;
       /* padding-left: 150px;  
      padding-right: 150px; */
    }

    @media (max-width: 740px) {
  body {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.video-section {
  padding: 0;
}

.custom-video {
  width: 100%;
  height: auto;
  border-radius: 12px; /* optional */
}


    html body {
  background: var(--token-8e9f7de0-9fd7-44d3-bc3e-2dea20c4e4bd, rgb(0, 0, 0));
}

@media (max-width: 768px) {
  .typing-text {
    width: 100%;        /* let it shrink on tablets/mobiles */
    font-size: 1rem;    /* smaller font */
  }
}

.typing-text {
  width: 740px;               /* fixed typing width on desktop */
  max-width: 100%;            /* prevent overflow on smaller screens */
  margin: 0 auto;             /* center horizontally */
  display: block;
  overflow: hidden;           
  border-right: .15em solid #fff; 
  white-space: nowrap;        /* keeps typing effect */
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.8rem); /* scales text */
}

.framer-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.framer-text span {
  animation-delay: calc(var(--i) * 0.15s);
}

.framer-text span:nth-child(1)  { animation-delay: 0.2s; }
.framer-text span:nth-child(2)  { animation-delay: 0.4s; }
.framer-text span:nth-child(3)  { animation-delay: 0.6s; }
.framer-text span:nth-child(4)  { animation-delay: 0.8s; }
.framer-text span:nth-child(5)  { animation-delay: 1s; }
.framer-text span:nth-child(6)  { animation-delay: 1.2s; }
.framer-text span:nth-child(7)  { animation-delay: 1.4s; }
.framer-text span:nth-child(8)  { animation-delay: 1.6s; }
.framer-text span:nth-child(9)  { animation-delay: 1.8s; }
.framer-text span:nth-child(10) { animation-delay: 2s; }
.framer-text span:nth-child(11) { animation-delay: 2.2s; }
.framer-text span:nth-child(12) { animation-delay: 2.4s; }
.framer-text span:nth-child(13) { animation-delay: 2.6s; }
.framer-text span:nth-child(14) { animation-delay: 2.8s; }
.framer-text span:nth-child(15) { animation-delay: 3s; }


.split-section {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.split-left {
  flex: 1;
  position: relative;
}

.split-left video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-right {
  flex: 1;
  background-color: #0d0d0d; /* dark background */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* overflow-y: auto; */
}

.content-container {
  max-width: 600px;
}

/* Responsive: Stack vertically on mobile */
@media (max-width: 768px) {
  .split-section {
    flex-direction: column;
    height: auto;
  }

  .split-left,
  .split-right {
    flex: none;
    width: 100%;
    height: auto;
  }

  .split-left video {
    height: 300px;
  }

  .split-right {
    padding: 2rem;
  }
}

    /* HEADER */
/* Navbar Styling */
.navbar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 15px 30px;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  /* max-width: 1200px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 4px 25px rgba(0,0,0,0.2);
  z-index: 1000;
}


/* Brand */
.navbar-brand {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 40px;
  margin-right: 10px;
}


/* Nav Links */
.nav-link {
  color: #f0f0f0 !important;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 12px;
  position: relative;
  transition: all 0.3s;
}

/* Hover underline animation */
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #ff1313;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #ff1313 !important;
}

/* Active link */
.nav-link.active {
  color: #ff1313 !important;
}

@media (max-width: 740px) {
  .navbar {
    padding: 10px 15px;
    flex-direction: column;
    align-items: flex-start;
    width: 95%;
  }

  .nav-link {
    margin: 8px 0;
    font-size: 0.95rem;
  }

  .btn-contact {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}


/* Contact Button */
.btn-contact {
  background: #ff1313;
  color: #fff !important;
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 18px;
  transition: 0.3s;
}

.btn-contact:hover {
  background: #d80a0a;
  transform: scale(1.05);
  box-shadow: 0px 0px 12px rgba(255, 19, 19, 0.7);
}


    /* HERO SECTION */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: left;
  padding: 3rem;
  background-color: #000;
  overflow: hidden;
  z-index: 1;
}

.hero-content {
  z-index: 2;
  max-width: 850px;
  animation: fadeInUp 1.5s ease-out;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
  color: #f2f2f2;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  animation: fadeIn 1.5s ease-out;
}


.hero-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  animation: fadeIn 3s ease-in;
}

/* ---------- Mobile & Tablet Responsiveness ---------- */
@media (max-width: 992px) {
  .hero-section {
    height: auto;
    padding: 2rem;
  }

  .hero-content {
    padding-left: 0 !important;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  /* .hero-subtext {
    font-size: 1.1rem;
    max-width: 100%;
    margin: 0 auto;
  } */

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 250px;
  }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-subtext {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #f1f1f1;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.btn-primary {
  background: #ffffff;
  color: #000;
}

.btn-primary:hover {
  background: #ddd;
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline span {
  color: #ff1313;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtext {
    font-size: 1rem;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }
}



    .btn-outline-light, .btn-light {
      padding: 0.6rem 1.5rem;
      border-radius: 30px;
      font-weight: 500;
      transition: 0.3s ease;
    }

    .btn-outline-light:hover {
      background: #fff;
      color: #000;
    }

    .btn-light:hover {
      background: #eee;
      color: #000;
    }

/* ANIMATED GLOW BACKGROUND */
.glow-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: black;
}

/* Glow squares */
.glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background:
    linear-gradient(to right, rgba(255, 0, 0, 0.6), transparent 70%),
    linear-gradient(to bottom, rgba(255, 0, 0, 0.6), transparent 70%);
  animation: moveZigZag 12s ease-in-out infinite alternate,
             rotateGlow 20s linear infinite;
  border-radius: 0;
  z-index: 0;
  opacity: 0.5;
}

/* Position variants */
.glow:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s, 0s;
}

.glow:nth-child(2) {
  bottom: 15%;
  right: 20%;
  animation-delay: 1.2s, 2s;
}

.glow:nth-child(3) {
  top: 50%;
  left: 50%;
  animation-delay: 2.5s, 4s;
}

/* Floating / Zig-zag movement with momentum */
@keyframes moveZigZag {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-40px, 40px) scale(1.1);
  }
  75% {
    transform: translate(30px, -50px) scale(1.05);
  }
  100% {
    transform: translate(-20px, 20px) scale(1);
  }
}

/* Slow rotation for more dynamic feel */
@keyframes rotateGlow {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}

/* Slide-in Panel */
.arc-panel {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 20, 0.95) url("Arc_logo.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.6s ease-in-out;
  z-index: 10;
}

.arc-panel.active {
  right: 0;
}

.arc-content {
  background: rgba(0,0,0,0.6);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  max-width: 600px;
}

.arc-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.arc-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.arc-logo {
  width: 100px;
  margin-bottom: 20px;
}

.video-container {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden; /* Ensures video doesn't overflow container */
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes sure video fills the container without stretching */
  display: block;
}

/* On small screens, stack video and content */
@media (max-width: 768px) {
  .about-section .col-lg-5,
  .about-section .col-lg-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .about-section .col-lg-7 {
    margin-top: 20px;
  }
}





    /* WHITE DOT FOLLOW MOUSE */
    .mouse-dot {
      position: fixed;
      top: 0;
      left: 0;
      width: 12px;
      height: 12px;
      background-color: white;
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: 9999;
       transition: transform 0.25s ease-out, top 0.25s ease-out, left 0.25s ease-out;
    }

    /* FOOTER */
    footer {
      background-color: #111;
      padding: 1rem 0;
      text-align: center;
      color: #888;
      font-size: 0.95rem;
    }

    /* TEXT ANIMATIONS */
    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(40px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      0% { opacity: 0; }
      100% { opacity: 1; }
    }

    /* BOTTOM BLUR OVERLAY */
.bottom-blur {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px; /* Adjust height as needed */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  pointer-events: none;
  z-index: 999;
}

.btn-hero {
  background: #fff;
  color: #000;
  border-radius: 14px;
  padding: 0.7rem 1.6rem;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background: #f1f1f1;
  color: #000;
}

.about-section {
  background-color: #0a0a0a;
  color: #fff;
}

.about-section h5 {
  color: #ffffff;
  font-weight: 600;
}

.about-section ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #ccc;
}

.about-section p {
  color: #ddd;
}

.cards-slider {
  overflow: hidden;
  position: relative;
}

.cards-track {
  display: flex;
  gap: 20px;
  animation: scroll 20s linear infinite;
}

.card {
  min-width: 150px;
  flex: 0 0 auto;
  border-radius: 15px;
  overflow: hidden;
}

.card img {
  height: 200px;
  /* object-fit: cover; */
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section Background */
.stages-section {
  background: #000; /* Dark background like screenshot */
  padding: 80px 0;
  color: #fff;
}

/* Stage Card */
.stage-box {
  background: rgba(40, 17, 17, 0.9);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.7),
              inset 0 0 12px rgb(233, 14, 14);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Active Stage Glow */
.active-stage {
  border: 1px solid rgba(246, 59, 59, 0.6);
  box-shadow: 0 0 30px rgba(246, 59, 59, 0.5),
              inset 0 0 12px rgba(246, 59, 59, 0.2);
  transform: scale(1.02);
}

/* Hover Zoom */
.stage-box:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(233, 14, 14, 0.4);
}

/* Stage Badges */
.stage-badge {
  background: rgba(59, 130, 246, 0.15);
  color: #f63b3b;
  padding: 6px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Stage Icon */
.stage-icon {
  font-size: 1.2rem;
  color: #22c55e;
}
.stage-icon.inactive {
  color: #64748b;
}

/* Sticky Image */
.sticky-image {
  position: sticky;
  top: 120px; /* stays fixed while scrolling */
  align-self: flex-start;
}
.sticky-image img {
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
  transition: transform 0.6s ease;
}

/* Scroll Zoom Effect */
.sticky-image img.scroll-zoom {
  transform: scale(1.1);
}


.image-container {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Blue glow at bottom going downward */
.image-container::after {
  content: "";
  position: absolute;
  left: 10%;
  width: 80%;
  height: 10px; /* thickness of the glow */
  background: linear-gradient(90deg, transparent, #ff0000, transparent);
  border-radius: 50%;
  pointer-events: none;
}
.custom-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #0a0a0a, #111);
  border-radius: 20px;
  padding: 6px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ccc;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.1),
              0 2px 8px rgba(0,0,0,0.6);
  cursor: default;
  overflow: hidden;
}

.custom-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff0000, transparent);
  border-radius: 2px;
}

.custom-badge .dot {
  width: 8px;
  height: 8px;
  background: #ff0000;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff0000; /* blue glow */
}
/* ✅ Typing Effect Responsive Fix */
.about-section h1 {
  font-size: clamp(1.2rem, 4vw, 2.2rem); /* scales with screen */
  line-height: 1.3;
  white-space: normal;   /* allows wrapping */
  word-break: break-word; /* ensures long words break */
  text-align: center;    /* center align on all screens */
}


.badge{
    float: right;
}

.footer {
  background: linear-gradient(to right, #0b0c1a, #0e1028);
  color: #ccc;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  width: 80px;
  margin-bottom: 20px;
}

.footer-column p {
  margin-bottom: 10px;
  color: #bcbcbc;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #fff;
}

.email-form {
  display: flex;
  margin-top: 10px;
}

.email-form input {
  padding: 10px 15px;
  border-radius: 10px 0 0 10px;
  border: 1px solid #444;
  outline: none;
  background: #111;
  color: #eee;
  flex: 1;
}

.email-form button {
  padding: 10px 25px;
  border-radius: 0 10px 10px 0;
  border: none;
  background: #ff0000;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}

.email-form button:hover {
  background: #cc0000;
  box-shadow: 0 0 10px #ff0000;
}

.footer-bottom {
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 14px;
  color: #888;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

/* ✅ Responsive Styles */
@media (max-width: 740px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-column {
    margin-right: 0;
  }

  .email-form {
    flex-direction: column;
    width: 100%;
  }

  .email-form input,
  .email-form button {
    width: 100%;
    border-radius: 10px;
    margin: 5px 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 20px;
    text-align: center;
  }

  .footer-column h4 {
    font-size: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}



.testimonial-section {
  padding: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;              /* 👈 space between cards */
  margin-bottom: 40px;   /* 👈 space between row 1 & row 2 */
}

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    
    gap: 20px;
  }
}


.testimonial-card {
  background: linear-gradient(180deg, #1b1010, #170d0d);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.close-btn {
  color: #888;
  font-size: 14px;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #ff4444;
}

@media (max-width: 576px) {
  .testimonial-card {
    padding: 15px;
    font-size: 13px;
  }
  .review {
    font-size: 13px;
    line-height: 1.4;
  }
}


.stars {
  margin-top: 10px;
  color: #f5b50a;
}

.review {
  font-size: 14px;
  line-height: 1.5;
  margin: 15px 0;
  color: #ccc;
}

.author {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}

.author span {
  font-weight: normal;
  color: #bbb;
}
.company {
  font-size: 13px;
  color: #00aaff;
  font-style: italic;
}

.stars i {
  color: #f5b50a;
  text-shadow: 0 0 6px rgba(245, 181, 10, 0.8);
}


.cards-slider {
  overflow: hidden;
  position: relative;
}

.cards-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll 25s linear infinite;
}

.expertise-card {
  min-width: 280px;
  max-width: 320px;
  border-radius: 16px;
  background: linear-gradient(145deg, #111, #1c1c1c);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 19, 19, 0.5);
}

.expertise-card .card-title {
  font-size: 1.2rem;
  color: #ff0000;
  font-weight: bold;
}

.expertise-card .card-text {
  font-size: 0.9rem;
  color: #ddd;
}

@media (max-width: 576px) {
  .expertise-card .card-img-top {
    height: 140px;
  }
}


@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; /* overlay color */
  z-index: 9999;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease-in-out;
  pointer-events: none;
}

/* When navigating away */
.page-transition.active {
  transform: scaleX(1);
}

/* When arriving on a new page */
.page-transition.reverse {
  transform-origin: right;
  transform: scaleX(0);
}



/* -----------------FAQ SECTION STYLES----------------- */

.faq-section {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 60px;
  background: #000;
  color: #fff;
  flex-wrap: wrap;
}

/* Left side */
.faq-left {
  flex: 1;
  min-width: 280px;
}
.faq-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  cursor: default;
}
.faq-left h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.faq-left h2 span {
  color: #ccc;
}
.faq-left p {
  color: #aaa;
  line-height: 1.6;
  font-size: 1rem;
}

/* Right side */
.faq-right {
  flex: 1;
  min-width: 350px;
}
.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: #111;
  color: #fff;
  padding: 18px 20px;
  border: none;
  border-radius: 12px;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: #1a1a1a;
}

/* Hidden by default with smooth slide */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #000;
  color: #bbb;
  padding: 0 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  border-left: 3px solid #444;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

/* Active state (expanded) */
.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust if answers are longer */
  padding: 15px 20px;
}
.faq-item.active .faq-question span {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

@media (max-width: 740px) {
  .faq-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .faq-left h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .faq-left p {
    font-size: 0.95rem;
    text-align: center;
  }

  .faq-right {
    min-width: 100%;
  }
}

@media (max-width: 740px) {
  .stages-section {
    padding: 40px 20px;
  }

  .stage-box {
    padding: 20px;
  }

  .sticky-image {
    position: relative; /* remove sticky on mobile */
    top: auto;
    margin-top: 20px;
  }
}

/* ---------- Core Expertise Responsive ---------- */
#core-expertise {
  padding: 60px 20px;
  background: linear-gradient(to right, #0a0a0a, #111);
  text-align: center;
}

#core-expertise h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.expertise-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-content: center;
  align-items: stretch;
}

.expertise-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

/* ---------- Testimonial Responsive ---------- */
#testimonial {
  padding: 60px 20px;
  background: linear-gradient(to right, #111, #0a0a0a);
  text-align: center;
}

#testimonial h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.testimonial-card {
  flex: 1 1 300px; /* Shrinks/grows properly */
  max-width: 350px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.03);
  border: 1px solid rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
}

/* ---------- Media Queries ---------- */
@media (max-width: 992px) {
  #core-expertise h2, #testimonial h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 740px) {
  .expertise-container {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .expertise-container {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    max-width: 100%;
  }
}


/* Navbar Logo Fix */
/* FORCE BIG LOGO – OVERRIDE BOOTSTRAP */
.navbar-brand img,
.navbar-logo {
  height: 65px !important;   /* BIG logo */
  max-height: none !important;
  width: auto !important;
}

/* Increase navbar height */
.navbar {
  padding-top: 1px;
  padding-bottom: 1px;
}


@media (max-width: 768px) {
  .navbar-brand img,
  .navbar-logo {
    height: 45px !important;
  }
}

#chatbot-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #ff1313;
  color: #fff;
  padding: 16px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 9999;
}

/* Chatbox */
#chatbot {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 340px;
  height: 480px;
  display: none;
  flex-direction: column;
  border-radius: 15px;
  backdrop-filter: blur(15px);
  background: rgba(20,20,20,.75);
  color: #fff;
  box-shadow: 0 0 25px rgba(0,0,0,.6);
  z-index: 9999;
}

#chatbot.light {
  background: rgba(255,255,255,.85);
  color: #000;
}

.chat-header {
  padding: 12px;
  background: rgba(255,19,19,.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header button,
.chat-header span {
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
  font-size: 18px;
}

.chat-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
}

.bot-msg, .user-msg {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 10px;
  max-width: 85%;
}

.bot-msg {
  background: rgba(255,255,255,.1);
}

.user-msg {
  background: #ff1313;
  margin-left: auto;
  color: #fff;
}

.chat-input {
  display: flex;
  border-top: 1px solid rgba(255,255,255,.2);
}

.chat-input input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.chat-input button {
  background: #ff1313;
  color: #fff;
  border: none;
  padding: 10px;
}

.quick-replies, .faq-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 5px;
}

.quick-replies button,
.faq-buttons button {
  background: rgba(255,255,255,.15);
  border: none;
  padding: 6px 10px;
  border-radius: 20px;
  color: inherit;
  cursor: pointer;
}

/* Typing dots */
.typing {
  font-size: 65px;
}


.logo-carousel {
  overflow: hidden;
  background: #f5f5f5;
  padding: 20px 0;
}

.logo-track {
  display: flex;
  width: calc(250px * 32); /* adjust based on logos */
  animation: scroll 30s linear infinite;
}

.logo {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.logo img {
  max-width: 150px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.logo img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

.arc-ai-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1363ff; /* Primary blue */
  color: #fff;
  border: none;
  border-radius: 25px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(19, 99, 255, 0.3);
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}


.arc-ai-toggle:hover {
  background: #0d4bcc; /* Slightly darker blue on hover */
}

.arc-ai-toggle img {
  height: 22px;
  margin-right: 8px;
  filter: brightness(0) invert(1); /* Make logo white */
}

/* Widget */
.arc-ai-widget {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 340px;
  max-height: 500px;
  background: #000000; /* Black background */
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: none;
  z-index: 9999;
  font-family: 'Segoe UI', sans-serif;
  transition: all 0.3s ease-in-out;
  color: #fff; /* White text */
}

/* Header */
.arc-ai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1363ff;
  padding: 12px;
  color: #fff;
  font-weight: 600;
}

.arc-ai-header img {
  height: 24px;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}

.arc-close-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

/* Chat body */
.arc-ai-body {
  padding: 12px;
  height: 250px;
  overflow-y: auto;
  font-size: 14px;
  color: #fff;
  background: #000; /* Deep black chat background */
}

/* Footer */
.arc-ai-footer {
  display: flex;
  padding: 10px;
  border-top: 1px solid #1363ff;
  background-color: #000;
}

.arc-ai-footer input {
  flex: 1;
  padding: 8px 10px;
  font-size: 14px;
  border: 1px solid #1363ff;
  border-radius: 8px;
  background: #111;
  color: #fff;
}

.arc-ai-footer input::placeholder {
  color: #bbb;
}

.arc-ai-footer button {
  margin-left: 8px;
  background: #1363ff;
  color: #fff;
  border: none;
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
}

.arc-ai-footer button:hover {
  background: #0d4bcc;
}

/* Chat bubbles */
.chat-bubble.user {
  background-color: #1363ff;
  color: #fff;
  border-bottom-right-radius: 0;
}

.chat-bubble.assistant {
  background-color: #222;
  color: #fff;
  border-bottom-left-radius: 0;
}
