
  
:root {
    --primary-color: #238115;
    --secondary-color: #6c757d;
    --font-family: 'Arial', sans-serif;
    --font-size: 16px;
    --line-height: 1.5;
    --border-radius: 4px;
    --transition-duration: 0.3s;
    --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
   
  }

  .glow-text {
      color: #2256ff;
      text-shadow: 0 0 5px #2256ff69, 0 0 10px #2256ff79, 0 0 20px #2256ff49;
    }
    /* Ensure animated elements are hidden before GSAP kicks in */
.reveal-left, .reveal-right, .reveal-up {
  will-change: transform, opacity;
}
  /* smooth scrolling */
  html {

    scroll-behavior: smooth;

  }
  
  /* Navbar styling */
    .navbar {
      background-color: #f9fafe;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .nav-link {
      font-weight: bold;
      margin: 0 10px;
      font-size: 24px;
    }

    .social-icons a {
      color: #000;
      margin-left: 15px;
      font-size: 20px;
    }

    /* Custom Hamburger Styles */
    .ham {
      cursor: pointer;
      transition: transform 400ms;
      user-select: none;
    }

    .hamRotate.active {
      transform: rotate(45deg);
    }

    .hamRotate180.active {
      transform: rotate(180deg);
    }

    .line {
      fill: none;
      transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
      stroke: #000;
      stroke-width: 5.5;
      stroke-linecap: round;
    }

    .ham3 .top {
      stroke-dasharray: 40 130;
    }

    .ham3 .middle {
      stroke-dasharray: 40 140;
    }

    .ham3 .bottom {
      stroke-dasharray: 40 205;
    }

    .ham3.active .top {
      stroke-dasharray: 75 130;
      stroke-dashoffset: -63px;
    }

    .ham3.active .middle {
      stroke-dashoffset: -102px;
    }

    .ham3.active .bottom {
      stroke-dasharray: 110 205;
      stroke-dashoffset: -86px;
    }

    @keyframes scaleIn {
      0% {
        opacity: 0;
        transform: scale(0.95);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    .navbar-collapse.show {
      animation: scaleIn 0.3s ease-in-out;
    }

    /* Hide custom toggle on desktop */
    .custom-toggler {
      display: none;
    }

    @media (max-width: 991.98px) {
      .custom-toggler {
        display: block;
      }

      .navbar-toggler {
        display: none;
      }
    }   
    /* navbar end */

   /* hero section start */
.hero-landing h1 , .gredient-text {
  text-align: center;
  font-size: 34px;
  background: linear-gradient(45deg, #092786, #f57208);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
  cursor: default;
  line-height: 120%;
  letter-spacing: -0.88px;
  padding: 0 20px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .hero-landing h1 {
    font-size: 64px;
    line-height: 81px;
    letter-spacing: -1.28px;
  }
}

.shiny-button {
  background: white;
  border: 1px solid #3b82f6;
  border-image-slice: 1;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
  transition: box-shadow 0.3s ease-in-out, border 0.3s;
}

.shiny-button:hover {
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.4), 0 0 22px rgba(59, 130, 246, 0.4);
}

.stat-box {
  padding: 1rem;
}

.floating {
  animation: float 6s ease-in-out infinite alternate;
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #f97316;
  }
  20%, 24%, 55% {
    opacity: 0.4;
    text-shadow: none;
  }
}

.hover-flicker:hover {
  animation: flicker 1.5s infinite alternate;
  cursor: pointer;
}


.home-logo-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-logo-wrapper.reverse {
  margin-top: -2rem;
}

.clients-grid.logo-animate {
  grid-column-gap: 3rem;
  opacity: 1;
  flex: none;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100rem;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  display: flex;
}

.logo-animate {
  animation: slide 35s infinite linear;
}

.clients-grid.logo-animate-alt {
  grid-column-gap: 3rem;
  flex: none;
  width: 100rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: auto;
  display: flex;
}

.logo-animate-alt {
  animation: slidealt 35s infinite linear;
  animation-direction: reverse;
}

/* Animation for the first right to left marquee */
@keyframes slide {
  0% {
    transform: translateX(calc(0% + 50px));
  }

  100% {
    transform: translateX(-100%);
  }
}

.logo-animate {
  animation: slide 35s infinite linear;
  /* Adjust the seconds for a slower or faster animation */
}

/* Animation for the second left to right marquee */
#tech-strip::before,
#tech-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 10;
}

#tech-strip::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

#tech-strip::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}
/* hero section end */


  /* technology logo animation start */
.marquee-container{
  position: relative;
  overflow: hidden;
  padding: 50px 20px 80px;
  background:
    radial-gradient(circle at top left, #1b2735, #090a0f),
    radial-gradient(circle at bottom right, #2c5364, #0f2027);
}

/* floating dots */
.marquee-container::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.25), transparent),
    radial-gradient(2px 2px at 70% 60%, rgba(255,255,255,.2), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,.15), transparent);
  animation: moveBg 25s linear infinite;
  z-index:0;
}

@keyframes moveBg{
  from{ transform: translateY(0); }
  to{ transform: translateY(-220px); }
}

/* ===== TITLE ===== */
.title{
  text-align:center;
  font-size:42px;
  font-weight:700;
  margin-bottom:40px;
  color:#fff;
  letter-spacing:1.5px;
  text-shadow:0 0 25px rgba(0,255,255,.7);
  position:relative;
  z-index:2;
}

/* ===== MARQUEE ROW ===== */
.marquee-row{
  overflow:hidden;
  margin:20px 0;
  position:relative;
  z-index:2;
}

.marquee-content{
  display:flex;
  gap:22px;
  width:max-content;
}

/* animations */
.left-to-right{
  animation: marqueeLTR 28s linear infinite;
}
.right-to-left{
  animation: marqueeRTL 30s linear infinite;
}

@keyframes marqueeLTR{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@keyframes marqueeRTL{
  from{ transform: translateX(-50%); }
  to{ transform: translateX(0); }
}

/* ===== TECH CARD ===== */
.tech-item{
  min-width:190px;
  padding:18px 24px;
  border-radius:60px;
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:600;
  cursor:pointer;
  position:relative;
  color:#fff;
  background-size:200% 200%;
  box-shadow:0 18px 45px rgba(0,0,0,.45);
  transition: transform .45s ease, box-shadow .45s ease;
  animation: float 3.5s ease-in-out infinite;
}

/* glowing ring */
.tech-item::before{
  content:'';
  position:absolute;
  inset:-4px;
  border-radius:inherit;
  background:inherit;
  filter: blur(14px);
  opacity:.65;
  z-index:-1;
}

/* hover glow */
.tech-item:hover{
  transform: translateY(-10px) scale(1.12);
  box-shadow:0 25px 70px rgba(255,255,255,.55);
}

/* floating */
@keyframes float{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
  100%{ transform: translateY(0); }
}

/* logo */
.tech-logo{
  font-size:30px;
  filter: drop-shadow(0 0 10px rgba(255,255,255,.6));
}

/* text */
.tech-name{
  font-size:17px;
  white-space:nowrap;
}

/* responsive */
@media(max-width:600px){
  .title{ font-size:30px; }
  .tech-item{
    min-width:150px;
    padding:14px 20px;
  }
}

/* technology logo animation end */


  /* category section start */
  .sdlc-phase {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
  }

  .sdlc-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
  }
  
  .group:hover .sdlc-icon {
    transform: scale(1.1);
  }

  .sdlc-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4a5568;
    transition: color 0.3s ease;
  }
  
  .group:hover .sdlc-title {
    color: #3182ce;
  }

  /* Optional rotation on hover */
  .sdlc-phase:hover .sdlc-icon {
    transform: scale(1.1) rotate(5deg);
  }
  /* category section end */


  /* why choose us animation component  start */
  
   
@import url(https://fonts.googleapis.com/css?family=Cabin+Condensed);

svg{font-weight:bold;max-width:600px;height:100%;}

/* Add to your CSS file or within a <style> tag */
#footer-glow-text {
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

#footer-glow-text.pump-effect {
  transform: scale(1.05); /* Adjust the scale for desired "pump" effect */
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.7); /* Green glow effect */
}