* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 1px solid red; */
}

/* body { */
/* border: 4px solid red;
      padding: 0px;
      margin: 0px; */
/* } */

/* body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          sans-serif;
        background: #000;
        color: white;
        overflow-x: hidden;
      } */

body {
  background: white !important;
}

/* Top Blue Banner */
.top-banner {
  background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
  padding: 8px 20px;
  text-align: center;
  font-size: 14px;
  color: white;
}

.top-banner a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  margin-left: 10px;
}

/* Navigation */
.navbar {
  background: rgba(0, 0, 0, 0.95);
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.logo::before {
  content: "▲";
  color: #2563eb;
  margin-right: 8px;
  font-size: 20px;
}

.trusted-logos img{
	align-self: center !important;
	
} 

.futr-margin-bt{
margin-bottom:6px;	
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #2563eb;
}

.contact-btn {
  background: #2563eb;
  color: white !important;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #1d4ed8;
  color: white !important;
}

/* Hero Section */
.hig-container {
  /* position: relative; */
  /* min-height: 200vh; */
  /* overflow: hidden; */
  /* width:95%; */
  margin: 0 auto;
  width: 100% !important;
}

.hero {
  /* min-height: 100vh; */
  /* position: relative; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
  /* margin-bottom: 100vh;  */
}

.hero-bg {
  background: url("https://highpolar.io/wp-content/uploads/2025/07/bg-liness.webp")
    center center/cover no-repeat;
  /* position: relative; */
  background-size: cover;
  z-index: 1;
}

/* .hero-bg::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(
          0,
          0,
          0,
          0.7
        ); 
        z-index: 0;
      } */

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

/* Initial image container - will be below the text */
.image-container {
  position: absolute;
  top: 100vh;
  /* Initially positioned below the hero text */
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  will-change: transform;
}

/* The actual image that will be manipulated */
.hero-background {
  width: 100%;
  height: 100%;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 100%
    ),
    url("https://cdn.pixabay.com/photo/2025/06/23/18/09/blossom-9676411_1280.jpg");
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(37, 99, 235, 0.1) 0%,
    transparent 50%
  );
  z-index: 1;
}

.hero-content {
  /* max-width: 800px;
        z-index: 2;
        position: relative; */
  width: 80vw;
  margin: 0 auto 2rem auto;
  /* background: rgba(0, 0, 0, 0.7); */
  border-radius: 16px;
  padding: 2rem;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 2;
  /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); */
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  width: 80%;
  margin-bottom: 40px;
  color: #d1d5db;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid white;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::after {
  content: "→";
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.cta-button:hover::after {
  transform: translateX(5px);
}

/* Devices Section */
.devices-section {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 3;
}

.device-mockup {
  width: 300px;
  height: 200px;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-radius: 20px;
  border: 1px solid #374151;
  position: relative;
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.device-screen {
  margin: 20px;
  height: calc(100% - 40px);
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.device-screen::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

/* Client Logos Section */
.clients-section {
  background: #000;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 10;
  margin-top: -50vh;
  /* Pull up to overlap with hero section */
}

.clients-text {
  color: #9ca3af;
  font-size: 16px;
  margin-bottom: 40px;
}

.clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.client-logo {
  font-size: 24px;
  font-weight: bold;
  color: #4b5563;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .devices-section {
    display: none;
  }

  .top-banner {
    font-size: 12px;
    padding: 6px 15px;
  }
}

/* Floating Particles Animation */
.particle {
  position: absolute;
  background: rgba(37, 99, 235, 0.6);
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  width: 3px;
  height: 3px;
  top: 40%;
  left: 70%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* Parallax Scroll Effect */
.parallax-container {
  position: relative;
  overflow: hidden;
}

/* Smooth scrolling effect */
html {
  scroll-behavior: smooth;
}

body {
  position: relative;
}

.service-box {
  flex: 1;
  min-width: 300px;
  background-color: #0e0c17;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  outline: 0.1px solid rgba(211, 211, 211, 0.3);
  transition: all 0.3s ease;
}

.service-box:hover {
  background-color: #2563eb;
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.service-box:hover p {
  color: #e2e8f0 !important;
}

.service-icon-bg {
  background-color: #1a1731;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  transition: background-color 0.3s ease;
}

.service-box:hover .service-icon-bg {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Industry grid item hover effect */
.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.industry-item p {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  transition: color 0.3s ease;
}

.industry-item:hover p {
  color: #2563eb !important;
}

.industry-icon {
  background-color: #1a1731;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.image-section {
  width: 80vw;
  /*width:1400px;*/
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.image-section img {
  width: 100%;
  display: block;
}

#horizontal-scoll {
  padding: 100px 0;
}

.horizontal-scoll-wrapper {
  overflow: hidden;
  height: 100%;
}

.horizontal {
  display: flex;
  height: 100%;
  flex-direction: row;
}

.horizontal > div {
  display: flex;
  flex-shrink: 0;
  padding: 0 5px;
}

.horizontal > div:first-child {
  padding: 0 5px 0 15px;
}

.horizontal > div:last-child {
  padding: 0 15px 0 5px;
}

.horizontal .card {
  align-items: stretch;
  /* width: 940px; */
  height: 100%;
  /* width:70%; */
  padding: 50px 40px;
  /* background: #6e4ce1; */
  border-radius: 38px;
  color: #f6f2e8;
}

/* @media (max-width: 900px) {
        #scrollable-cards-section .horizontal-scoll-wrapper,
        #scrollable-cards-section .horizontal {
          display: block !important;
          overflow: visible !important;
          height: auto !important;
          width: 100% !important;
          transform: none !important;
        }
        #scrollable-cards-section .card {
          width: 100% !important;
          min-width: unset !important;
          max-width: 100% !important;
          margin-bottom: 32px;
          height: auto !important;
          display: block !important;
        }
      } */

@media (max-width: 900px) {
  #horizontal-scoll .horizontal-scoll-wrapper,
  #horizontal-scoll .horizontal {
    display: block !important;
    overflow: visible !important;
    height: auto !important;
    width: 100% !important;
    transform: none !important;
  }

  #horizontal-scoll .card {
    width: 100% !important;
    min-width: unset !important;
    max-width: 100% !important;
    margin-bottom: 32px;
    height: auto !important;
    display: block !important;
  }
}

@media (max-width: 600px) {
  #client-slider {
    max-width: 98vw !important;
    padding: 0 4vw;
  }

  #client-slide {
    flex-direction: column !important;
    padding: 32px 10px !important;
    min-height: unset !important;
    align-items: flex-start !important;
  }

  #client-slide > div:first-child {
    flex: unset !important;
    margin-bottom: 18px;
    margin-left: 0 !important;
    align-items: flex-start !important;
  }

  #client-img {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 10px !important;
  }

  #client-name {
    font-size: 17px !important;
  }

  #client-title {
    font-size: 13px !important;
  }

  #client-slide > div:last-child {
    margin-left: 0 !important;
    width: 100% !important;
    align-items: flex-start !important;
  }

  #client-quote {
    font-size: 16px !important;
    width: 100% !important;
    text-align: left !important;
  }

  .client-dot {
    width: 28px !important;
    height: 4px !important;
    margin: 0 2px !important;
  }
}

@media (max-width: 600px) {
  .trusted-heading {
    font-size: 15px !important;
    text-align: center;
    padding: 0 10px;
  }

  .trusted-heading span {
    display: none !important;
  }
}

@media (max-width: 700px) {
  /* Section container */
  .tools-tech-section {
    padding: 18px !important;
    height: auto !important;
  }

  .tools-tech-section h2 {
    font-size: 28px !important;
    line-height: 1.2;
  }

  .tools-tech-section p {
    font-size: 15px !important;
    width: 100% !important;
  }

  /* Tabs */
  .tools-tech-section .tech-tab {
    font-size: 14px !important;
    padding: 10px 12px !important;
    margin-bottom: 8px;
    min-width: 120px;
  }

  /* Tab content grid */
  .tools-tech-section .tech-content {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: center !important;
  }

  .tools-tech-section .tech-item {
    width: 100% !important;
    max-width: 320px;
  }

  .tools-tech-section .tech-item > div {
    width: 70px !important;
    height: 70px !important;
    margin-bottom: 10px !important;
  }

  .tools-tech-section .tech-item img {
    width: 40px !important;
    height: 40px !important;
  }

  .tools-tech-section .tech-item p {
    font-size: 14px !important;
  }
}

@media (max-width: 600px) {
  .projects-growth-heading {
    font-size: 22px !important;
    line-height: 1.2 !important;
    letter-spacing: -1px !important;
    margin-bottom: 18px !important;
    padding: 0 8px;
    word-break: break-word;
  }
}

/* Why Choose Section Responsive Improvements */
@media (max-width: 1400px) {
  .why-choose-section {
    width: 95vw !important;
  }
}

@media (max-width: 1100px) {
  .why-choose-section {
    width: 99vw !important;
    padding: 40px 0 !important;
  }

  .why-choose-section > div[style*="z-index: 2"] > div {
    flex-direction: column !important;
    gap: 32px !important;
  }

  .why-choose-nav {
    flex-direction: row !important;
    overflow-x: auto !important;
    margin-bottom: 18px !important;
    border: none !important;
    width: 100% !important;
    min-width: 0 !important;
    justify-content: flex-start !important;
  }

  .why-choose-item {
    min-width: 200px !important;
    margin-right: 10px !important;
    margin-bottom: 0 !important;
    border-left: none !important;
    border-bottom: 4px solid transparent !important;
    border-radius: 0 !important;
    padding: 14px 10px !important;
    font-size: 16px !important;
    white-space: nowrap;
    background: none !important;
  }

  .why-choose-item.active,
  .why-choose-item[style*="#2563eb"] {
    border-bottom: 4px solid #2563eb !important;
    background: rgba(37, 99, 235, 0.08) !important;
  }

  .why-choose-content-container {
    min-height: unset !important;
    border: none !important;
    width: 100% !important;
  }

  .why-choose-content {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: flex-start !important;
    width: 100% !important;
  }

  .why-choose-content img {
    width: 100% !important;
    height: auto !important;
    max-width: 400px;
    margin: 0 auto 12px auto;
    display: block;
  }

  .why-choose-content p {
    font-size: 16px !important;
    margin-bottom: 10px !important;
    width: 100% !important;
  }
}

@media (max-width: 700px) {
  .why-choose-section {
    width: 100vw !important;
    /*     padding: 18px 0 !important; */
    padding: 0px 0px !important;
  }

  .why-choose-section > div[style*="margin-top: 50px"] h2 {
    font-size: 22px !important;
    text-align: left !important;
  }

  .why-choose-section > div[style*="margin-top: 50px"] p {
    font-size: 14px !important;
    width: 100% !important;
  }

  .why-choose-nav {
    gap: 0 !important;
  }

  .why-choose-item {
    min-width: 140px !important;
    font-size: 13px !important;
    padding: 10px 6px !important;
  }

  .why-choose-content img {
    max-width: 98vw !important;
  }

  .why-choose-content p {
    font-size: 14px !important;
  }
}

.services-heading {
  font-size: 52px !important;
  margin-top: 28px !important;
  line-height: 1.2 !important;
  padding: 0 8px;
  word-break: break-word;
}

@media (max-width: 700px) {
  .services-heading {
    font-size: 22px !important;
    margin-top: 28px !important;
    line-height: 1.2 !important;
    padding: 0 8px;
    word-break: break-word;
  }
}

@media (max-width: 700px) {
  .hero-title {
    font-size: 28px !important;
    line-height: 1.15 !important;
    padding: 0 8px;
    word-break: break-word;
  }
}

.hig-process-card {
  background: #111;
  border-radius: 18px;
  border: 1px solid #333;
  /*padding: 36px 28px;*/
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
  min-height: 420px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  margin: 10px;
  height: 580px;
  padding: 20px;
}

.hig-process-card .process-icon {
  width: 48px;
  height: 48px;
  background: #2563eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.hig-process-card h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hig-process-card p {
  color: #bdbdbd;
  font-size: 16px;
  line-height: 1.7;
}

.hig-process-card .process-step {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #bdbdbd;
  font-size: 15px;
  font-weight: 600;
  opacity: 0.7;
}

.faq-item {
  background-color: #f8f9ff;
  border-radius: 16px;
  margin-bottom: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f0f4ff;
}

.faq-toggle {
  font-size: 24px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  color: #2563eb;
}

.faq-answer {
  max-height: 0;
  padding: 0 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  opacity: 0;
}

.faq-active .faq-toggle {
  transform: rotate(180deg);
}

.faq-active .faq-answer {
  max-height: 1000px;
  padding: 0 24px 24px 24px;
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .faq-section {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .faq-section {
    width: 92%;
    padding: 80px 0;
  }

  .faq-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .faq-container {
    gap: 20px;
  }

  .faq-question {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    width: 96%;
    padding: 60px 0;
  }

  .faq-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 18px;
  }

  .faq-question h3 {
    font-size: 16px;
    line-height: 1.4;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

.hero-wrapper {
  width: 80%;
  margin: auto;
}

.hero {
  flex-direction: column;
  height: 700px;
  width: 100%;
  position: relative;
}

.hero-content {
  z-index: 10;
}

.hero-title {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 700;
}

.hero-subtext {
  font-size: 22px;
  margin-top: 10px;
  font-weight: 550;
  max-width: 850px;
  margin: auto;
}

.cta-wrapper {
  margin-top: 50px;
}

.image-section {
  position: relative;
}

.image-section img {
  margin: auto;
  display: block;
  border-radius: 25px;
  z-index: 2;
}

.trusted-section {
  background-color: black;
  padding: 40px 0;
  text-align: center;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 30px;
}

.trusted-heading {
  color: #818589;
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  font-weight: 500;
}

.trusted-line {
  position: absolute;
  height: 1px;
  background-color: #444;
  width: 300px;
  top: 50%;
}

.trusted-line.left {
  left: -320px;
}

.trusted-line.right {
  right: -320px;
}

.trusted-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}

.services-wrapper {
  width: 80%;
  margin: auto;
}

.services-heading {
  margin-top: 65px;
}

.services-description {
  margin-top: 20px;
  font-size: 22px;
  width: 70%;
}

.services-boxes {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  gap: 100px;
  flex-wrap: wrap;
}

.service-box h3 {
  font-size: 34px;
  margin-bottom: 20px;
  font-weight: 700;
}

.service-box p {
  color: #9da3af;
  line-height: 1.6;
  font-size: 18px;
}

.service-box a {
  color: white;
  text-decoration: none;
}

.stats-section {
  background-color: #f0f4ff;
  border-radius: 16px;
  padding: 60px 40px;
  color: #000;
  text-align: center;
  width: 80%;
  margin: auto;
  margin-top: 80px;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.stat {
  padding: 0 20px;
  margin-bottom: 30px;
}

.stat h2 {
  font-size: 64px;
  font-weight: 700;
  margin: 0;
}

.stat-divider {
  width: 80px;
  height: 2px;
  background-color: #000;
  margin: 15px auto;
}

.stat p {
  font-size: 18px;
  line-height: 1.5;
  max-width: 180px;
  font-weight: 500;
}

.stat p.wide {
  max-width: 280px;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  border: 2px solid #000;
  border-radius: 12px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s;
  min-width: 320px;
}

.cta-secondary .cta-icon {
  font-size: 20px;
  margin-left: 10px;
}

.tools-tech-section {
  margin: 80px 0;
  background-color: white;
  color: black;
  padding: 40px;
  height: 850px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tools-tech-header {
  text-align: center;
  margin-bottom: 60px;
}

.tools-tech-heading {
  font-size: 52px;
  margin-bottom: 20px;
  color: black;
}

.tools-tech-description {
  font-size: 22px;
  width: 70%;
  margin: 15px auto 0;
  color: #333;
}

/* Tabs */
.tools-tech-tabs-wrapper {
  max-width: 1000px;
  margin: 0 auto 50px;
}

.tools-tech-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tech-tab {
  padding: 15px 30px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: transparent;
  border-radius: 8px;
  color: black;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tech-tab.active {
  background-color: #0d6efd;
  color: white;
}

/* Tab Content */
.tech-contents-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.tech-content {
  display: none;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}

.tech-content.active {
  display: flex;
}

/* Individual Tech Item */
.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
}

.tech-item-icon {
  width: 100px;
  height: 100px;
  background-color: #f0f0f0;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.tech-item-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.tech-item-label {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: black;
}

/* Section wrapper */
.why-choose-section {
  /* padding: 80px 0; */
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: auto;
  background-color: black;
}

/* Header */
.why-choose-header {
  text-align: center;
  margin-top: 50px;
}

.why-choose-title {
  font-size: 52px;
  width: 100%;
  text-align: left;
}

.why-choose-desc {
  font-size: 22px;
  width: 70%;
  margin-top: 15px;
  text-align: left;
}

/* Main content columns */
.why-choose-main {
  position: relative;
  z-index: 2;
  margin-top: 70px;
}

.why-choose-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left‐hand nav */
.why-choose-nav-wrapper {
  flex: 0 0 300px;
}

.why-choose-nav .why-choose-item {
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid transparent;
  cursor: pointer;
}

.why-choose-nav .why-choose-item.active {
  border-left-color: #2563eb;
  background-color: rgba(37, 99, 235, 0.1);
}

.why-choose-nav .why-choose-item h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

/* Right‐hand content */
.why-choose-content-wrapper {
  flex: 1;
  min-width: 300px;
}

.why-choose-content-container {
  position: relative;
  min-height: 400px;
}

.why-choose-content {
  display: none;
  gap: 30px;
  flex-wrap: wrap;
}

.why-choose-content.active {
  display: flex;
}

.why-choose-content > div {
  flex: 1;
}

/* Images & text inside content */
.why-choose-img {
  width: 500px;
  height: 300px;
  border-radius: 12px;
}

.why-choose-text {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Background gradient */
.why-choose-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05) 0%,
    transparent 100%
  );
  z-index: 1;
}

.projects-heading-container {
  width: 100%;
  margin: 0 auto;
  margin-top: 60px;
  text-align: center;
}

.projects-growth-heading {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 32px;
  color: #fff;
  letter-spacing: -2px;
}

.projects-description {
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  width: 70%;
  margin: 0 auto;
  margin-bottom: 0;
  margin-top: 18px;
  line-height: 1.5;
  text-align: center;
}

/* Scrollable container */
.scrollable-container {
  width: 100%;
}

/* Card styling */
.card .card {
  display: flex;
  background: linear-gradient(90deg, #181818 60%, #111 100%);
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  /* min-height: 400px; min-width: 540px; */
  border: 1px solid #222;
  /* height: 800px; */
  height: 85%;
  width: 1290px;
}

/* Left content area */
.card-content-left {
  flex: 1.2;
  padding: 40px 36px 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-logo-container {
  margin-top: 55px;
  width: 100%;
  text-align: left;
}

.card-logo {
  height: 38px;
  margin-bottom: 55px;
}

.card-description {
  font-size: 20px;
  color: #fff;
  line-height: 1.6;
  text-align: left;
  font-weight:900;
  text-decoration:underline;
}

.card-description-section {
  font-size: 20px;
  color: #fff;
  line-height: 1.6;
  text-align: left;
  margin-top: 3px;
}

.card-result-heading {
  text-align: left;
  margin-top: 30px;
  margin-bottom: 30px;
}

.card-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
  text-align: left;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 15px;
  color: #bdbdbd;
}

.card-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border: 1.5px solid #fff;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  width: fit-content;
}

.card-link-icon {
  font-size: 20px;
  margin-left: 8px;
}

/* Right content area */
.card-image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  width: 100%;
  height: 100%;
}

.card-mockup {
  /* width: 320px; height: 380px; */
  width: 650px;
  height: 650px;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  background: #181818;
  align-self: center;
}

/* Client section container */
.client-section-container {
  text-align: center;
  margin-top: 50px;
  width: 80%;
  margin: auto;
}

/* Client section heading */
.client-section-heading {
  font-size: 52px;
  width: 100%;
  text-align: center;
}

/* Client section description */
.client-section-description {
  font-size: 22px;
  width: 60%;
  margin: auto;
  margin-top: 25px;
  text-align: center;
}

/* Client slider container */
#client-slider {
  margin: 60px auto 0 auto;
  max-width: 1000px;
  position: relative;
}

/* Client slide */
#client-slide {
  background: rgba(10, 15, 40, 0.85);
  border-radius: 18px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  padding: 78px 90px;
  min-height: 260px;
  transition: all 0.5s;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
  position: relative;
}

/* Client image container */
.client-img-container {
  flex: 0 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Client image */
#client-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;

  border: 3px solid #fff;
  margin: auto;
  margin-bottom: 18px;
}

/* Client name */
#client-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

/* Client title */
#client-title {
  font-size: 15px;
  color: #bdbdbd;
  margin-top: 2px;
  width: 200px;
}

/* Client content container */
.client-content-container {
  flex: 1;
  margin-left: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Client quote */
#client-quote {
  font-size: 22px;
  color: #fff;
  line-height: 1.7;
  width: 90%;
  margin: auto;
  text-align: left;
}

/* Dots container */
.client-dots-container {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}

/* Individual dot */
.client-dot {
  width: 52px;
  height: 4px;
  border-radius: 2px;
  background: #fff2;
  display: inline-block;
  cursor: pointer;
}

.process-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

/* Process counter */
.process-counter {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Current process number */
.process-current {
  color: #fff;
}

/* Process separator */
.process-separator {
  color: #fff;
  opacity: 0.5;
}

/* Total process number */
.process-total {
  color: #fff;
}

/* Process navigation buttons container */
.process-nav-buttons {
  display: flex;
}

/* Common styles for process navigation buttons */
.process-nav-button {
  background: none;
  border: none;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

/* Previous button specific margin */
.process-prev {
  margin-right: 16px;
}

.flutter-app-development-section {
  width: 80%;
  margin: auto;
  margin-top: 120px;
}

.success-section {
  width: 100%;
  padding: 120px 0;
  text-align: center;
  /* background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(37, 99, 235, 0.08) 100%
    ); */
  background-color: white;
}

/* Inner container */
.success-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main heading */
.success-heading {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

/* Subheading */
.success-subheading {
  font-size: 28px;
  color: #2563eb;
  margin-bottom: 50px;
  font-weight: 600;
}

/* Call-to-action button */
.success-cta {
  display: inline-flex;
  align-items: center;
  background: #2563eb;
  color: white;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
  transition: all 0.3s ease;
  margin-bottom: 60px;
}

/* Arrow in CTA button */
.success-cta-arrow {
  margin-left: 8px;
  font-size: 22px;
}

/* Image container */
.success-image-container {
  position: relative;
  width: 90%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Image */
.success-image {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.faq-wrapper {
  width: 100%;
  background-color: #fff;
}

/* FAQ section container */
.faq-section {
  padding: 120px 0;
  width: 80%;
  margin: auto;
  background-color: #fff;
  /* border-radius: 20px; */
}

/* FAQ heading */
.faq-heading {
  font-size: 52px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
  color: #000;
}

/* FAQ container with columns */
.faq-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

/* FAQ column */
.faq-column {
  flex: 1;
  min-width: 300px;
}

/* FAQ question heading */
.faq-question-text {
  color: #2563eb;
  font-weight: 500;
  margin: 0;
  font-size: 16px;
}

/* FAQ links */
.faq-link {
  color: #2563eb;
  text-decoration: none;
}

.as-leading-development {
  margin-top: 20px;
  font-size: 22px;
  width: 70%;
}

/*------------responsive media query -------------------  */
@media (max-width: 667px) {
  .hero-wrapper {
    width: 100%;
    margin-top: 80px;
    margin: auto;
  }

  .hero-content {
    width: 100% !important;
    margin: 0px;
    padding: 0px;
    margin: auto;
  }

  .development-title {
    margin-top: 1px !important;
  }

  .hero-title {
    width: 100%;
    font-size: 22px !important;
    /* max-width:250px; */
    /* width:250px; */
    width: 100%;
    margin: 0px;
    padding: 0px;
  }

  .hero-subtext {
    font-size: 16px;
    line-height: 24px;
    /* width:280px; */
    margin: 0px;
    width: 100%;
  }

  .trusted-logos {
    margin: 10px;
  }
  .services-heading {
    font-size: 22px !important;
    font-weight: 600;
    padding: 0px;
  }

  .services-wrapper {
    padding: 20px;
    width: 100%;
  }

  .services-description {
    width: 100%;
    font-size: 16px;
  }

  .number-size {
    font-size: 32px !important;
  }

  .cta-secondary {
    width: 220px !important;
    min-width: 220px !important;
    padding: 0px;
    font-size: 14px;
  }

  .tools-tech-tabs {
    gap: 0px;
  }

  /* .tech-contents-wrapper{
        
      } */

  .tech-item {
    flex-direction: row;
    gap: 10px;
  }

  .tools-tech-heading {
    font-weight: 600;
    font-size: 22px;
  }

  .why-choose-title {
    font-weight: 600;
    font-size: 22px;
    /* text-align: center; */
    width: 300px;
  }

  .why-choose-desc {
    font-size: 18px;
    width: 100%;
  }

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

  .horizontal .card {
    /* align-items: stretch; */
    /* width: 940px; */
    /* height: 100%; */
    /* width:70%; */
    padding: 0px 0px;
    /* background: #6e4ce1; */
    /* border-radius: 38px; */
    /* color: #f6f2e8; */
  }

  .horizontal > div {
    display: flex;
    flex-shrink: 0;
    padding: 0 5px 0 5px;
  }

  .horizontal > div:first-child {
    padding: 0 5px 0 5px;
  }

  .horizontal > div:last-child {
    padding: 0 5px 0 5px;
  }

  .client-section-heading {
    font-weight: 600;
    font-size: 22px;
  }

  .client-section-description {
    font-size: 18px;
    width: 100%;
  }

  .as-leading-development {
    margin-top: 20px;
    font-size: 18px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .why-choose-item.active {
    position: relative;
  }

  .why-choose-item.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; /* Adjust as needed */
    width: 100%;
    height: 3px;
    background-color: #2563eb; /* Blue color for the line */
    display: block;
  }
}

@media (min-width: 700px) and (max-width: 1000px) {
  /* Your CSS styles here */
  .tools-tech-section {
    height: 100%;
  }

  .as-leading-development {
    width: 100%;
  }
}
