:root {
  --primary: #0a3cff;
  --text-dark: #0b1b3a;
  --text-muted: #5f6b85;
  --bg-light: #f5f9ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f4f6fb;
  -webkit-user-select: none;
  -ms-user-select: none;
   user-select: none;
}


img {
    pointer-events: none;
    -webkit-user-drag: none;
}
.main-header {
  background: linear-gradient(90deg, #020c3a, #2a2bb8);
  position: relative;
  z-index: 100;
}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo img {
  height: 55px;
}

.nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.has-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  left: -115%;
  top: 100%;
  width: 1000px;
  background: linear-gradient(180deg, #081268, #1559e1);
  /*background: linear-gradient(180deg, #020c3a, #020c20);  old code*/
  padding: 30px;
  display: none;
  border-radius: 10px;
}

.has-mega:hover .mega-menu {
  display: block;
}

li.has-mega:nth-child(3) .mega-menu {
    left: -325%;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.mega-grid h4 {
  color: #00ffb3;
  font-size: 14px;
  margin-bottom: 5px;
}

.mega-grid p {
  color: #ccc;
  font-size: 13px;
  margin-bottom: 18px;
}

/* Base */
.menu-item {
  position: relative;
  list-style: none;
}

.menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 12px 15px; */
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

/* Dropdown hidden by default (ALL screens) */
.dropdown {
  display: none !important;
  background: #fff;
  min-width: 255px;
  padding: 10px 0;
  margin-top: 0px;
  
}

/* Dropdown items */
.dropdown li {
  list-style: none;
}

.dropdown li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

.dropdown li a:hover {
  background: #f5f5f5;
}

/* ---------- DESKTOP ---------- */
@media (min-width: 992px) {
  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 99;
  }

  /* Hover open */
  .menu-item:hover > .dropdown {
    display: block !important;
  }

  /* Click open */
  .menu-item.active > .dropdown {
    display: block;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 991px) {
  .dropdown {
    position: static;
    box-shadow: none;
  }

  /* ONLY click open */
  .menu-item.active > .dropdown {
    display: block  !important;
  }

  .arrow {
    transition: transform 0.3s ease;
  }

  .menu-item.active .arrow {
    transform: rotate(180deg);
  }
}


.quote {
  color: #00ffb3;
}

.hamburger {
  display: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .mega-menu {
    width: 100%;
    left: 0;
  }

  .mega-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #020c3a;
    display: none;
    padding: 20px;
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .nav.show {
    display: block;
  }

  .has-mega:hover .mega-menu {
    display: none;
  }

  .mega-menu {
    position: static;
    padding: 20px 15px;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }

  .hamburger {
    display: block;
  }
}

/*@media (max-width: 600px) {*/
/*    .logo{*/
/*        display: flex;*/
/*        justify-content: start;*/
/*    }*/
/*    .container {*/
/*      flex-direction: row;*/
/*      gap: 30px;*/
/*    }*/
/*}*/


/* hero section */
.hero{
  min-height:85vh;
  /* min-height:100vh; */
  position:relative;
  display:flex;
  align-items:center;
}

/* .hero-bg{
  position:absolute;
  inset:0; */
  /* background:
    radial-gradient(circle at 20% 30%, #ffeaa7, transparent 40%),
    radial-gradient(circle at 80% 20%, #a29bfe, transparent 40%),
    linear-gradient(120deg,#ffffff,#f1f5ff); */
    /* background-image: url('../images/animated-svg-background-example.svg');
    height: auto;
  z-index:-1;
} */

.hero-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      rgba(0,0,0,0.6),
      rgba(0,0,0,0.3)
    ),
    url('../images/animated-svg-background-example.svg');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* Floating Shapes Style */

.shape {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  animation: moveShape 8s infinite ease-in-out;
}

.s1 { top: 10%; left: 15%; }
.s2 { top: 30%; left: 70%; width: 130px; height: 130px; }
.s3 { top: 55%; left: 25%; width: 90px; height: 90px; }
.s4 { top: 75%; left: 60%; width: 110px; height: 110px; }

@keyframes moveShape {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(15deg); }
}

@media (max-width: 576px) {
  .s2 { top: 30%; left: 70%; width: 130px; height: 130px; }
  .hideonmobile{
    display: none;
}
}

.hero-container{
  max-width:1300px;
  margin:auto;
  padding:80px 20px;
  display:grid;
  grid-template-columns:1.9fr 0.9fr;
  gap:60px;
}

.badge{
  background:#eef2ff;
  padding:8px 16px;
  border-radius:50px;
  font-size:14px;
  display:inline-block;
  margin-bottom:20px;
}

.hero h1{
  font-size:64px;
  line-height:1.1;
  margin-bottom:20px;
  color:#fff;
}

.gradient-text{
  background: linear-gradient(90deg, #eaebed, #2a2bb8);
  -webkit-background-clip:text;
  color:transparent;
  position:relative;
}

.hero p{
  font-size:18px;
  max-width:520px;
  color:#ffffff;
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  gap:15px;
  margin-bottom:50px;
}

.btn{
  padding:14px 28px;
  border-radius:12px;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
}

.btn.primary{
  background:#0f172a;
  color:#fff;
}

.btn.primary:hover{
  transform:translateY(-3px);
}

.btn.secondary{
  border:1px solid #c7d2fe;
  color:#1e3a8a;
}

.hero-stats{
  display:flex;
  gap:50px;
}

.hero-stats h3{
  font-size:28px;
  color:#fff;
}

.hero-stats span{
  font-size:13px;
  color:#fff;
}

/* CARD */
.hero-card{
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(14px);
  border-radius:20px;
  box-shadow:0 30px 80px rgba(0,0,0,.12);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%   { transform: translateY(0); }
  25%  { transform: translateY(-10px); }
  50%  { transform: translateY(-20px); }
  75%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.card-header{
  padding:20px;
  font-weight:600;
  display:flex;
  justify-content:space-between;
  border-bottom:1px solid #e2e8f0;
}

form{
  padding:25px;
  display:grid;
  gap:15px;
}

input,select,textarea{
  padding:14px;
  border-radius:10px;
  border:1px solid #e2e8f0;
  outline:none;
}

.two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

textarea{
  min-height:90px;
}

button{
  background:linear-gradient(90deg,#2563eb,#9333ea);
  border:none;
  color:#fff;
  padding:14px;
  border-radius:12px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

button:hover{
  transform:scale(1.03);
}

/* FLOAT */
/* @keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-15px)}
} */

/* RESPONSIVE */
@media(max-width:900px){
  .hero-container{
    grid-template-columns:1fr;
  }
  .hero h1{
    font-size:46px;
  }
}

@media (max-width: 576px) {

  .hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 16px;
  }

  /* TEXT SIDE */
  .hero-content {
    text-align: center;
  }

  .badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 16px;
    margin: 20px auto 30px;
  }

  /* BUTTONS */
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
  }

  /* STATS */
  .hero-stats {
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
  }

  .hero-stats h3 {
    font-size: 22px;
  }

  .hero-stats span {
    font-size: 12px;
  }

  /* CARD */
  .hero-card {
    animation: none;
    border-radius: 16px;
  }

  .card-header {
    font-size: 14px;
    padding: 16px;
  }

  form {
    padding: 18px;
  }

  input,
  select,
  textarea {
    font-size: 14px;
    padding: 12px;
  }

  .two {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  textarea {
    min-height: 80px;
  }

  button {
    padding: 14px;
    font-size: 15px;
  }

}

/* brands */
.trusted-section {
  padding: 20px 20px;
  background: #fff;
  text-align: center;
  overflow: hidden;
}

.trusted-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0f172a;
}

/* SLIDER */
.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-track img {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* TABLET */
@media (max-width: 992px) {
  .logo-track {
    gap: 45px;
  }

  .logo-track img {
    height: 50px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .trusted-section {
    padding: 50px 15px;
  }

  .trusted-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .logo-track {
    gap: 30px;
  }

  .logo-track img {
    height: 42px;
  }
}

/* about */
.about-arch {
  padding: 25px 20px;
  background: #ffffff;
}

.about-container {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* CONTENT */
.about-content h2 {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #0f172a;
}

.about-content h2 span {
  color: #1d4ed8;
}

.about-text {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 35px;
}

/* FEATURES */
.about-features {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.about-features h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #0f172a;
}

.about-features p {
  font-size: 14px;
  color: #64748b;
}

/* STATS */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
  margin-bottom: 35px;
}

.stat {
  padding: 22px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
}

.stat h3 {
  font-size: 26px;
  color: #0f172a;
}

.stat span {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #0f172a;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  background: #1e293b;
}

/* TABLET */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    font-size: 36px;
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2,1fr);
  }
}

#mission-vision{
    position: relative; height: 60vh; color: #fff; overflow: hidden;
}

.parallax-bg{
    background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1950&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: absolute;
    inset: 0;
    z-index: -2;
    filter: brightness(0.6);
}

/* MOBILE */
@media (max-width: 576px) {
  .about-arch {
    padding: 60px 16px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .stat h3 {
    font-size: 22px;
  }
  
  #mission-vision {
    position: relative;
    height: 205vh;
    color: #fff;
    overflow: hidden;
}
}


/* services */
.services {
  padding: 80px 20px;
  background: #f8fcfb;
}

.services-header {
  max-width: 1200px;
  margin: auto;
}

.section-tag {
  color: #00a651;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.services-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.services-top h2 {
  font-size: 38px;
  line-height: 1.2;
  max-width: 600px;
}

.services-desc {
  max-width: 420px;
}

.services-desc p {
  color: #475569;
  margin-bottom: 18px;
}

.outline-btn {
  padding: 10px 22px;
  border: 1.5px solid #00a651;
  border-radius: 50px;
  color: #00a651;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.outline-btn:hover {
  background: #00a651;
  color: #fff;
}

.services-grid {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.service-card .icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-card a {
  color: #00a651;
  font-weight: 600;
  text-decoration: none;
}

/* TABLET */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-top h2 {
    font-size: 32px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .services {
    padding: 60px 16px;
  }

  .services-top {
    flex-direction: column;
  }

  .services-top h2 {
    font-size: 26px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 30px 22px;
  }
}

/*  */
.industries-section{
  background: radial-gradient(circle at top,#2a2bb8,#050a30);
  padding:55px 20px 0px;
  color:#fff;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.tag{
  color:#22c55e;
  font-size:13px;
  letter-spacing:1px;
}

.industries-header h2{
  font-size:38px;
  margin:15px 0;
}

.industries-header p{
  max-width:650px;
  margin:0 auto 20px;
  color:#cbd5f5;
}

.view-btn{
  display:inline-block;
  border:1px solid #22c55e;
  color:#22c55e;
  padding:10px 22px;
  border-radius:50px;
  font-weight:600;
}

.orbit-wrapper{
  margin-top:80px;
  position:relative;
  height:420px;
}

.orbit-circle{
  width:300px;
  height: 300px;
  border:2px dashed rgba(255,255,255,.25);
  border-radius:50%;
  margin:auto;
  animation:rotate 30s linear infinite;
}

@keyframes rotate{
  to{transform:rotate(360deg)}
}

.orbit-item{
  position:absolute;
  background:#0b0f3f;
  border:1px solid rgba(255,255,255,.15);
  padding:10px 14px;
  border-radius:50px;
  font-size:13px;
  display:flex;
  align-items:center;
  gap:8px;
}

.banking{top:-10%; left:50%; transform:translateX(-50%)}
.travel{top:18%; right:28%}
.ecommerce{bottom:40%; right:29%}
.defence{bottom:78px; left:50%; transform:translateX(-50%)}
.education{bottom:40%; left:28%}
.healthcare{top:20%; left:32%}

.bot img{
  width:100%;
  height: 260px;;
}

.bot{
  position:absolute;
  top:40%;
  left:50%;
  transform:translate(-50%,-50%);
  animation:floats 4s ease-in-out infinite;
}

@keyframes floats{
  50%{transform:translate(-50%,-55%)}
}

/* MOBILE */
@media(max-width:768px){
  .orbit-wrapper{height:340px}
  .orbit-circle{width:240px;height:240px}
  .industries-header h2{font-size:26px}
  .bot{
      display: none;
  }
  .orbit-circle{
      display: none;
  }
  .banking {
      left: 23%;
      left: 20%;
  }
  .travel {
      top: -10%;
      right: 0%;
  }
  
  .ecommerce {
    bottom: 82%;
    right: 0%;
}
.defence {
    bottom: 82%;
    left: 24%;
    transform: translateX(-50%);
}

.healthcare {
    top: 22%;
    left: 0%;
}

.education {
    bottom: 64%;
    left: 40%;
}

.btn.primary {
    background: #0f172a;
    color: #fff;
    border: 1px solid #fff;
}

input, select, textarea {
    font-size: 14px;
    padding: 12px;
}

}

/*  */

.agile-section{
  background:linear-gradient(to bottom,#050a30,#020617);
  padding:30px 20px;
  text-align:center;
  color:#fff;
  border-radius:0px 0px 0 0;
  /* margin-top:-120px; */
  margin-top:0px;
}

.agile-section h2{
  font-size:34px;
  margin-bottom:10px;
}

.agile-section p{
  max-width:700px;
  margin:auto;
  color:#cbd5f5;
}

/* succuss story */
.success-wrapper{
  background: radial-gradient(circle at top,#0a0f4d,#020617);
  padding:40px 20px;
  color:#fff;
}

.case-tag{
  color:#22c55e;
  font-size:13px;
  letter-spacing:1px;
}

.success-head{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:40px;
}

.success-head h2{
  font-size:44px;
  margin-top:10px;
}

.success-right{
  max-width:520px;
}

.success-right p{
  color:#cbd5f5;
  font-size:15px;
}

.head-actions{
  display:flex;
  align-items:center;
  gap:20px;
  margin-top:18px;
  position: relative;
}

.view-more{
  padding:10px 22px;
  border:1px solid #22c55e;
  border-radius:30px;
  color:#22c55e;
  font-weight:600;
}

.nav-btns{
  display:flex;
  gap:10px;
  position: absolute;
  left: 65%;
  right: 0;
}

.swiper-button-next,
.swiper-button-prev{
  position:static;
  width:65px !important;
  height:65px !important;
  border:1px solid rgba(255,255,255,.3);
  border-radius:50%;
  color:#fff;
}

.divider{
  max-width:1200px;
  height:1px;
  background:rgba(255,255,255,.15);
  margin:40px auto;
}

.story-card{
  display:flex;
  align-items:center;
  gap:40px;
  padding:30px;
}

.story-card img{
  width:420px;
  border-radius:12px;
}

.story-content h3{
  font-size:22px;
  margin-bottom:10px;
}

.story-content p{
  color:#cbd5f5;
  font-size:14px;
  margin-bottom:18px;
}

.case-btn{
  display:inline-block;
  padding:10px 24px;
  border:1px solid #22c55e;
  border-radius:30px;
  color:#22c55e;
  font-weight:600;
}

/* TABLET */
@media(max-width:1024px){
  .success-head{
    flex-direction:column;
  }

  .story-card{
    flex-direction:column;
    text-align:center;
  }

  .story-card img{
    width:100%;
    max-width:420px;
  }
}

/* MOBILE */
@media(max-width:600px){
  .success-head h2{
    font-size:30px;
  }

  .head-actions{
    flex-direction:column;
    align-items:flex-start;
  }

  .story-card{
    padding:15px;
  }
}

/* cta */
.cta-section{
  background:#eaf6fb;
  padding:30px 20px;
  text-align:center;
}

.cta-container{
  max-width:900px;
  margin:auto;
}

.cta-container h2{
  font-size:32px;
  font-weight:700;
  color:#020617;
  margin-bottom:15px;
}

.cta-container p{
  font-size:16px;
  color:#475569;
  max-width:700px;
  margin:0 auto 30px;
  line-height:1.6;
}

/* Button */
.cta-btn{
  display:inline-block;
  padding:14px 34px;
  border:2px solid #22c55e;
  color:#020617;
  font-weight:600;
  border-radius:30px;
  transition:all .3s ease;
  background:transparent;
}

.cta-btn:hover{
  background:#22c55e;
  color:#fff;
  transform:translateY(-2px);
}

/* Responsive */
@media(max-width:768px){
  .cta-container h2{
    font-size:26px;
  }
}

@media(max-width:480px){
  .cta-container h2{
    font-size:22px;
  }
  .cta-container p{
    font-size:14px;
  }
}


/* Footer design */
.it-footer{
  position:relative;
  background:radial-gradient(circle at top,#0b1a4a,#020617);
  color:#fff;
  overflow:hidden;
  padding:80px 20px 0;
}

/* Glow */
.footer-glow{
  position:absolute;
  width:500px;
  height:500px;
  background:rgba(0,173,255,.15);
  filter:blur(120px);
  top:-150px;
  right:-150px;
}

/* Layout */
/*.footer-container{*/
/*  max-width:1200px;*/
/*  margin:auto;*/
/*  display:grid;*/
/*  grid-template-columns:2fr 1fr 1fr 1fr;*/
/*  gap:40px;*/
/*  position:relative;*/
/*  z-index:2;*/
/*}*/

.footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0px;
    position: relative;
    z-index: 2;
}

/* Brand */
.brand h3{
  font-size:28px;
  background:linear-gradient(90deg,#00adff,#22c55e);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.brand p {
	margin: 15px 0;
	color: #cbd5f5;
	font-size: 14px;
	padding: 0 66px 0px 0px;
	text-align: justify;
}

.socials a{
  display:inline-flex;
  width:38px;
  height:38px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  margin-right:10px;
  transition:.3s;
  margin-bottom: 15px;
}

.socials a:hover{
  background:#00adff;
  transform:translateY(-4px);
}

.socials a i{
      color: #fff;
}

/* Columns */
.footer-col h4{
  margin-bottom:18px;
  font-size:16px;
  position:relative;
}

.footer-col h4::after{
  content:'';
  width:30px;
  height:2px;
  background:#22c55e;
  position:absolute;
  bottom:-6px;
  left:0;
}

.footer-col ul{
  list-style:none;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col ul li a{
  color:#cbd5f5;
  font-size:14px;
  transition:.3s;
}

.footer-col ul li a:hover{
  color:#22c55e;
  padding-left:6px;
}

.contact li{
  color:#cbd5f5;
  font-size:14px;
}

/* Bottom */
.footer-bottom{
  text-align:center;
  padding:25px 0;
  margin-top:60px;
  border-top:1px solid rgba(255,255,255,.1);
  font-size:13px;
  color:#94a3b8;
}

/* Waves */
.waves{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:120px;
  overflow:hidden;
}

.waves span{
  position:absolute;
  width:200%;
  height:100%;
  background:rgba(255,255,255,.05);
  border-radius:100%;
  animation:wave 12s linear infinite;
}

.waves span:nth-child(2){
  animation-duration:18s;
  opacity:.4;
}

.waves span:nth-child(3){
  animation-duration:25s;
  opacity:.2;
}

@keyframes wave{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

/* Responsive */
@media(max-width:900px){
  .footer-container{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .footer-container{
    grid-template-columns:1fr;
  }
  .brand p {
	padding: 0px;
}
}

/* contact */
.contact-hero{
  /* background: linear-gradient(135deg,#0a1f44,#102f6b); */
  /* background-color: #00041c; */
  padding:60px 20px;
  color:#fff;
  text-align:center;
  position: relative;
}

.bg-animation{
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url('../images/use-svg-as-background-image-particle-strokes.svg');
  background-repeat: repeat;
  z-index: -1;
  top: 0;
  left: 0;
}

.contact-hero h1{
  font-size:42px;
  font-weight:700;
}
.contact-hero p{
  max-width:600px;
  margin:15px auto 0;
  font-size:16px;
  opacity:.9;
}


.contact-info-section{
  padding:70px 20px;
  background:#f8f9fb;
}
.info-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}
.info-card{
  background:#fff;
  padding:30px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
  transition:.3s;
}
.info-card:hover{
  transform:translateY(-5px);
}
.info-card h3{
  margin-bottom:10px;
  color:#0a1f44;
}

.info-card a{
    color: #000;
    text-decoration: none;
}


.contact-form-section{
  padding:80px 20px;
}
.form-wrapper{
  max-width:700px;
  margin:auto;
}
.form-content{
  background:#fff;
  padding:50px;
  border-radius:14px;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}
.form-content h2{
  color:#0a1f44;
}
.form-content p{
  margin:10px 0 30px;
  color:#555;
}
.form-content input,
.form-content textarea{
  width:100%;
  margin-bottom:20px;
  padding:14px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:14px;
}
.form-content textarea{
  height:120px;
  resize:none;
}
.form-content button{
  background:#0a1f44;
  color:#fff;
  border:none;
  padding:14px 30px;
  border-radius:8px;
  cursor:pointer;
  transition:.3s;
}
.form-content button:hover{
  background:#102f6b;
}



.map-section iframe{
  width:100%;
  height:350px;
  border:none;
}

.contact-cta .container-contab {
	max-width: 1300px;
	margin: auto;
	padding: 15px 20px;
}

.contact-cta{
  background:#0a1f44;
  color:#fff;
  text-align:center;
  padding:70px 20px;
}
.contact-cta h2{
  font-size:32px;
}
.contact-cta p{
  margin:15px 0 25px;
}
.cta-btn{
  display:inline-block;
  background:#fff;
  color:#0a1f44;
  padding:14px 30px;
  border-radius:30px;
  font-weight:600;
}

.contact-section-split{
  padding:60px 20px;
  background: #f5f7fa;
}

.split-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:60px;
  max-width:1200px;
  margin:auto;
  align-items:center;
}

/* LEFT SIDE */
.contact-left h2{
  font-size:36px;
  color:#0a1f44;
  margin-bottom:20px;
}
.contact-left p{
  color:#555;
  font-size:16px;
  margin-bottom:30px;
  line-height:1.6;
}
.features-list{
  list-style:none;
  padding:0;
  margin-bottom:30px;
}
.features-list li{
  font-size:16px;
  margin-bottom:12px;
  color:#0a1f44;
  display:flex;
  align-items:center;
  gap:10px;
}
.contact-social a{
  display:inline-block;
  margin-right:15px;
  color:#0a1f44;
  font-weight:600;
  transition:.3s;
}
.contact-social a:hover{
  color:#007bff;
  transform:translateY(-3px);
}

/* RIGHT SIDE FORM */
.contact-right form{
  background:#fff;
  padding:50px;
  border-radius:15px;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}
.contact-right h3{
  color:#0a1f44;
  margin-bottom:25px;
  font-size:28px;
}
.input-group{
  position:relative;
  margin-bottom:25px;
}
.input-group input,
.input-group textarea{
  width:100%;
  padding:14px 10px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:14px;
  background:transparent;
}
.input-group label{
  position:absolute;
  top:50%;
  left:12px;
  color:#888;
  pointer-events:none;
  transform:translateY(-50%);
  transition:.3s;
}
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label{
  top:-8px;
  font-size:12px;
  color:#007bff;
}
.contact-right button{
  width:100%;
  padding:14px;
  background:#007bff;
  color:#fff;
  font-weight:600;
  border:none;
  border-radius:8px;
  cursor:pointer;
  transition:.3s;
}
.contact-right button:hover{
  background:#0056b3;
  transform:translateY(-3px);
}

/* RESPONSIVE */
@media(max-width:900px){
  .split-wrapper{
    grid-template-columns:1fr;
    gap:40px;
  }
  .contact-left{
    text-align:center;
  }
  .contact-social{
    justify-content:center;
    display:flex;
  }
}


/*Hire developer*/

.hire-developers {
  padding: 80px 0;
  background: #ffffff;
}

.hire-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Image */
.hire-image img {
  width: 100%;
  max-width: 600px;
}

/* Content */
.hire-content .sub-title {
  font-size: 14px;
  letter-spacing: 2px;
  color: #0a2cff;
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
}

.hire-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0b1c3f;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hire-content p {
  font-size: 16px;
  color: #5f6c7b;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Button */
.btn-primary-custom {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: #0b1c3f;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: #0a2cff;
}

/* =======================
   Tablet Responsive
======================= */
@media (max-width: 992px) {
  .hire-grid {
    gap: 40px;
  }

  .hire-content h2 {
    font-size: 34px;
  }
}

/* =======================
   Mobile Responsive
======================= */
@media (max-width: 768px) {
  .hire-grid {
    flex-direction: column;
    text-align: center;
  }

  .hire-image img {
    max-width: 100%;
  }

  .hire-content h2 {
    font-size: 28px;
  }

  .hire-content p {
    font-size: 15px;
  }
}

/* How we work*/
/* Root Section */
.how-we-work {
  padding: 30px 20px;
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
  font-family: "Segoe UI", sans-serif;
}

/* Container */
.how-we-work__container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.how-we-work__heading {
  text-align: center;
  margin-bottom: 60px;
}

.how-we-work__subtitle {
  color: #007bff;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

.how-we-work__title {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0;
}

.how-we-work__desc {
  max-width: 600px;
  margin: auto;
  color: #666;
  font-size: 15px;
}

/* Grid */
.how-we-work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.how-we-work__card {
  position: relative;
  padding: 35px 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  overflow: hidden;
}

.how-we-work__card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 45px rgba(0, 123, 255, 0.25);
}

/* Icon */
.how-we-work__icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #00adff, #0066ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.how-we-work__card:hover .how-we-work__icon {
  transform: rotate(12deg) scale(1.15);
}

/* Card Text */
.how-we-work__card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.how-we-work__card-text {
  font-size: 15px;
  color: #444;
}

/* Step Number */
.how-we-work__step {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 64px;
  font-weight: 700;
  color: rgba(0, 123, 255, 0.12);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 992px) {
  .how-we-work__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .how-we-work__grid {
    grid-template-columns: 1fr;
  }

  .how-we-work__title {
    font-size: 28px;
  }
}

/* Industries Section */
.industries-section-two {
  padding: 60px 0;
  background: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

/* Container */
.industries-section-two__container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.industries-section-two__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.industries-section-two__header h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.industries-section-two__header p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Grid */
.industries-section-two__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

/* Card */
.industries-section-two__card {
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 25px;
  background: #fff;
  transition: all 0.3s ease;
  height: 100%;
}

.industries-section-two__card img {
  width: 40px;
  margin-bottom: 15px;
}

.industries-section-two__card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.industries-section-two__card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}

/* Hover */
.industries-section-two__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  border-color: #0d6efd;
}

/* Tablet */
@media (max-width: 991px) {
  .industries-section-two__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-section-two__header h2 {
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .industries-section-two__grid {
    grid-template-columns: 1fr;
  }

  .industries-section-two__header h2 {
    font-size: 24px;
  }

  .industries-section-two__card {
    padding: 20px;
  }
}

/* contact us section */
.container-con {
	max-width: 1300px;
	margin: auto;
	padding: 15px 20px;
}
.cta-relationship {
  padding: 20px 20px;
  background: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.cta-relationship__container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* Left Content */
.cta-relationship__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-relationship__text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.cta-relationship__buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.cta-relationship__btn {
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Primary Button */
.cta-relationship__btn--primary {
  background: #ffb703;
  color: #000;
}

.cta-relationship__btn--primary:hover {
  background: #ff9f00;
}

/* Outline Button */
.cta-relationship__btn--outline {
  border: 2px solid #20c997;
  color: #000;
}

.cta-relationship__btn--outline:hover {
  background: #20c997;
  color: #fff;
}

.cta-relationship__note {
  font-size: 14.5px;
  color: #333;
}

/* Right Visual */
.cta-relationship__visual svg {
  width: 100%;
  height: auto;
}

/* Tablet */
@media (max-width: 992px) {
  .cta-relationship__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-relationship__buttons {
    justify-content: center;
  }

  .cta-relationship__title {
    font-size: 34px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .cta-relationship {
    padding: 60px 15px;
  }

  .cta-relationship__title {
    font-size: 28px;
  }

  .cta-relationship__text {
    font-size: 15px;
  }

  .cta-relationship__buttons {
    flex-direction: column;
  }
}

/* About Hero Section */
.about-hero{
  position: relative;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Video Background */
.bg-video{
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* Black Overlay */
.video-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65); /* black shade */
  z-index: -1;
}

/* Content */
.about-hero h1{
  font-size: 42px;
  font-weight: 700;
}

.about-hero p{
  max-width: 700px;
  margin: 15px auto 0;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.95;
}

/* Responsive */
@media(max-width:768px){
  .about-hero{
    padding: 70px 15px;
  }
  .about-hero h1{
    font-size: 30px;
  }
}

/* About Company Section */
.about-company{
  padding: 30px 20px;
  background: #f8f9fc;
  overflow: hidden;
}

.about-container{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.container-ab {
	max-width: 1300px;
	margin: auto;
	padding: 15px 20px;
}

.container-ab  h2{
  font-size: 36px;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 20px;
  text-align: center;
}

.container-ab  p{
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
  text-align: center;
}

/* Text Content */
.about-text h2{
  font-size: 36px;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 20px;
}

.about-text p{
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

/* CTA Button */
.about-btn{
  display: inline-block;
  margin-top: 15px;
  padding: 14px 32px;
  background: linear-gradient(135deg,#0a1f44,#102f6b);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all .4s ease;
}

.about-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(10,31,68,.3);
}

/* Image */
.about-images{
  position: relative;
  animation: float 4s ease-in-out infinite;
}

.about-images img{
  width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 25px 60px rgba(0,0,0,.15); */
}

/* Floating Effect */
@keyframes float{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-12px); }
  100%{ transform: translateY(0); }
}

/* Scroll Animation */
[data-animate]{
  opacity: 0;
  transform: translateY(40px);
  transition: all .9s ease;
}

[data-animate].show{
  opacity: 1;
  transform: translateY(0);
}

[data-animate="left"]{
  transform: translateX(-60px);
}

[data-animate="right"]{
  transform: translateX(60px);
}

/* Responsive */
@media(max-width: 991px){
  .about-container{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text h2{
    font-size: 30px;
  }

  .about-images{
    max-width: 500px;
    margin: auto;
  }
}

@media(max-width: 576px){
  .about-company{
    padding: 60px 15px;
  }

  .about-text h2{
    font-size: 26px;
  }
}

/* Container */
#nurturing-relationships {
  width: 100%;
  background: #020626;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.containerab-nat {
	max-width: 1300px;
	margin: auto;
	padding: 15px 20px;
}

#nurturing-relationships h3 {
  font-family: 'Glitten', serif;
  font-size: 60px;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.1;
  font-weight: 400;
  color: #ffffff;
}

/* Cards Wrapper */
.cards-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Individual Card */
.card {
  background: rgba(13,17,48,0.95);
  border: 1px solid #00b956;
  border-radius: 20px;
  padding: 30px 25px;
  flex: 1 1 300px;
  max-width: 400px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Card Title */
.card h4 {
  font-size: 28px;
  color: #00b956;
  margin-bottom: 20px;
  position: relative;
  font-weight: 600;
}

.card h4::after {
  content: "";
  width: 60px;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: -8px;
  left: 0;
}

/* Card List */
.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card ul li {
  font-size: 16px;
  line-height: 1.7;
  padding-left: 35px;
  margin-bottom: 15px;
  position: relative;
}

/* Custom Bullet Icon */
.card ul li::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #00b956;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}

/* Highlighted Span */
.card ul li span {
  font-weight: 600;
  color: #00b956;
}

/* Responsive */
@media(max-width:1024px){
  #nurturing-relationships h3{
    font-size: 50px;
  }
}

@media(max-width:768px){
  #nurturing-relationships h3{
    font-size: 40px;
  }
  .cards-wrapper{
    flex-direction: column;
    align-items: center;
  }
  .card{
    max-width: 90%;
  }
}

@media(max-width:480px){
  #nurturing-relationships h3{
    font-size: 32px;
  }
  .card h4{
    font-size: 22px;
  }
  .card ul li{
    font-size: 15px;
  }
}
[data-animate]{
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
[data-animate].show{
  opacity: 1;
  transform: translateY(0);
}

  .mv-card {
    flex: 1 1 300px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
  }

  .mv-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
  }

  .mv-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #f0f0f0;
  }

  .mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  }

  @media (max-width: 768px) {
    .container {
      flex-direction: row;
      gap: 30px;
    }
    
    .logo {
        text-align: left;
    }
  }

  .tech-marquee {
  padding: 70px 20px;
  background: #f6fbff;
  text-align: center;
  overflow: hidden;
}

.tech-marquee h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 10px;
}

.tech-marquee p {
  max-width: 900px;
  margin: 0 auto 50px;
  color: #5c6b82;
  font-size: 16px;
}

.marquee {
  position: relative;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.logo-card {
  min-width: 160px;
  height: 90px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
}

.logo-card img {
  max-width: 100px;
  max-height: 45px;
  object-fit: contain;
}

/* Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/*career page*/
.career-hero {
  background: var(--bg-light);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* soft wave background */
.career-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(10,60,255,0.05),
    transparent 60%
  );
}

.career-container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

/* LEFT */
.career-label {
  color: #6b82ff;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}

.career-content h1 {
  font-size: 3.4rem;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 18px 0 20px;
}

.career-content h1 span {
  color: var(--primary);
}

.career-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 35px;
}

/* BUTTON */
.career-btn {
  display: inline-block;
  padding: 14px 34px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all .3s ease;
}

.career-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10,60,255,.25);
}

/* RIGHT IMAGE */
.career-visual img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin-left: auto;
}

/* =======================
   RESPONSIVE
======================= */

/* TABLET */
@media (max-width: 992px) {
  .career-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .career-content p {
    margin: 0 auto 30px;
  }

  .career-visual img {
    margin: 40px auto 0;
  }

  .career-content h1 {
    font-size: 2.7rem;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .career-hero {
    padding: 60px 0;
  }

  .career-content h1 {
    font-size: 2.2rem;
  }

  .career-content p {
    font-size: 0.95rem;
  }

  .career-btn {
    padding: 12px 26px;
    font-size: 14px;
  }
}

/* JOB LISTINGS */
.jobs-section {
  padding: 100px 0;
  background: #ffffff;
}

.jobs-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.jobs-header {
  text-align: center;
  margin-bottom: 50px;
}

.jobs-header span {
  color: #6b82ff;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 13px;
}

.jobs-header h2 {
  font-size: 2.4rem;
  color: #0b1b3a;
  margin: 12px 0;
}

.jobs-header p {
  color: #5f6b85;
  max-width: 520px;
  margin: auto;
}

/* JOB CARD */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-card {
  background: #f8fbff;
  padding: 22px 26px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .3s ease;
  border: 1px solid #eef2ff;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(10,60,255,.08);
}

.job-info h3 {
  color: #0b1b3a;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.job-info p {
  color: #5f6b85;
  font-size: 0.95rem;
}

/* JOB META */
.job-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.job-meta span {
  color: #5f6b85;
  font-size: 14px;
}

.apply-btn {
  padding: 10px 22px;
  background: #0a3cff;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .job-meta {
    width: 100%;
    justify-content: space-between;
  }

  .jobs-header h2 {
    font-size: 2rem;
  }
}


/*modal for job career*/
.btn-outline {
  background: #fff;
  border: 1px solid #e0e6ff;
  padding: 12px 26px;
  border-radius: 30px;
  cursor: pointer;
  color: #000;
}
.full { width: 100%; }

/* OVERLAY */
.job-modal,
.apply-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

/* JOB MODAL */
.job-modal-box {
  background: #fff;
  width: 92%;
  max-width: 1200px;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

/* HEADER */
.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #eef2ff;
  padding-bottom: 25px;
}
.job-header h1 {
  font-size: 2.4rem;
  color: #0b1b3a;
}
.job-header p {
  color: #6a738b;
}
.job-header-actions {
  display: flex;
  gap: 15px;
}

/* BODY */
.job-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 35px;
}
.job-left section {
  margin-bottom: 35px;
}
.job-left h3 {
  margin-bottom: 10px;
  color: #0b1b3a;
}
.job-left p, li {
  color: #5f6b85;
  line-height: 1.7;
}
.job-left ul {
  padding-left: 20px;
}

/* RIGHT BOX */
.job-right .info-box {
  background: #f8fbff;
  padding: 22px;
  border-radius: 14px;
  margin-bottom: 25px;
}
.info-box h4 {
  margin-bottom: 10px;
}
.info-box.secondary a {
  color: #6b7cff;
  font-weight: 600;
  text-decoration: none;
}

/* APPLY MODAL */
.apply-box {
	background: #fff;
	padding: 10px 10px;
	border-radius: 16px;
	width: 100%;
	max-width: 540px;
}
.apply-box h2 {
	margin-bottom: 0px;
	text-align: center;
	border-bottom: 1px solid black;
	padding-bottom: 10px;
}

.apply-form-box {
	padding: 10px;
	display: grid;
	gap: 0px;
}

.apply-box input,
.apply-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #dfe4ff;
  border-radius: 8px;
}

/* CLOSE */
.close-modal {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 26px;
  cursor: pointer;
}

.close-modal-inner {
	position: absolute;
	top: 10%;
	right: 33%;
	font-size: 30px;
	cursor: pointer;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .job-body {
    grid-template-columns: 1fr;
  }
}
@media(max-width: 576px) {
  .job-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .job-header h1 {
	font-size: 1.4rem;
	color: #0b1b3a;
   }
   
   .close-modal-inner {
	position: absolute;
	top: 7%;
	right: 3%;
	font-size: 30px;
	cursor: pointer;
}

}

/* Request a quote */

    /* ====== CONTAINER ====== */
    .rq-container {
      max-width: 1200px;
      margin: auto;
      padding: 60px 20px;
    }

    /* ====== HEADER ====== */
    .rq-header {
      margin-bottom: 40px;
    }

    .rq-title {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .rq-subtitle {
      font-size: 18px;
      color: #555;
      margin-bottom: 15px;
    }

    .rq-desc {
      max-width: 700px;
      line-height: 1.6;
      color: #666;
    }

    /* ====== GRID ====== */
    .rq-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 40px;
      margin-top: 40px;
      align-items: flex-start;
    }

    /* ====== FORM ====== */
    .rq-form {
      width: 100%;
    }

    .rq-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }

    .rq-field {
      display: flex;
      flex-direction: column;
    }

    .rq-field label {
      font-size: 14px;
      margin-bottom: 6px;
      font-weight: 600;
    }

    .rq-field input,
    .rq-field select,
    .rq-field textarea {
      padding: 12px 14px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 14px;
      outline: none;
      transition: border 0.2s;
    }

    .rq-field input:focus,
    .rq-field textarea:focus,
    .rq-field select:focus {
      border-color: #1fa9e0;
    }

    .rq-field textarea {
      resize: vertical;
      min-height: 200px;
    }

    .rq-phone {
      display: grid;
      grid-template-columns: 110px 1fr;
      gap: 10px;
    }

    .rq-estimate {
      display: grid;
      grid-template-columns: 90px 1fr;
      gap: 10px;
    }

    /* ====== CHECKBOXES ====== */
    .rq-services {
      margin-top: 20px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px 30px;
    }

    .rq-check {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
    }

    .rq-check input {
      width: 16px;
      height: 16px;
    }

    /* ====== RIGHT SIDE ====== */
    .rq-side {
      position: relative;
    }

    .rq-badge {
      background: #2ec4ff;
      color: #fff;
      width: 180px;
      text-align: center;
      padding: 20px 15px;
      font-weight: 700;
      font-size: 18px;
      border-radius: 6px;
      transform: rotate(-6deg);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      margin-left: auto;
      margin-bottom: 20px;
    }

    .rq-badge span {
      display: block;
      font-size: 24px;
      margin-top: 5px;
    }

    /* ====== SUBMIT ====== */
    .rq-submit {
      margin-top: 30px;
    }

    .rq-btn {
      background: #1fa9e0;
      color: #fff;
      border: none;
      padding: 14px 40px;
      font-size: 15px;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .rq-btn:hover {
      background: #1789b6;
    }

    /* ====== RESPONSIVE ====== */
    @media (max-width: 991px) {
      .rq-grid {
        grid-template-columns: 1fr;
      }

      .rq-badge {
        margin: 0 0 20px 0;
      }

      .rq-services {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 575px) {
      .rq-title {
        font-size: 32px;
      }

      .rq-row {
        grid-template-columns: 1fr;
      }

      .rq-phone,
      .rq-estimate {
        grid-template-columns: 1fr;
      }

      .rq-services {
        grid-template-columns: 1fr;
      }
    }

/* blogs */
/* CONTAINER */
.container-blog {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HERO */
.blog-hero {
  background-image: url('../images/pleasing-blog-banner-design-on-blog-banner-of-blog-banner-design.jpg');
  /*background-size: 100% 400px;*/
  color: #fff;
  padding: 200px 0;
  text-align: center;
}

.blog-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* BLOG GRID */
.blog-section {
  padding: 80px 0;
  background: #f5f9ff;
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* BLOG CARD */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 35px;
  box-shadow: 0 15px 40px rgba(10,60,255,.06);
  transition: transform .3s;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.category {
  color: var(#0a3cff);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.blog-content h2 {
  font-size: 1.4rem;
  margin: 10px 0;
}

.blog-content p {
  color: #5f6b85;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  color: var(#0a3cff);
  font-weight: 600;
  text-decoration: none;
}

/* SIDEBAR */
.blog-sidebar .sidebar-box {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  margin-bottom: 30px;
}

.sidebar-box h3 {
  margin-bottom: 15px;
}

.sidebar-box input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #dfe4ff;
}

.sidebar-box ul {
  list-style: none;
}

.sidebar-box li {
  margin-bottom: 10px;
}

.sidebar-box a {
  text-decoration: none;
  color: #5f6b85;
}

/* FOOTER */
.blog-footer {
  background: #0b1b3a;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 576px) {
  .blog-hero h1 {
    font-size: 2.2rem;
  }
  .blog-card img {
    height: 180px;
  }
}

/* Custom software develment */
.development-hero{
  padding:40px 20px;
  color:#fff;
  text-align:center;
  position: relative;
  height: 360px;
  overflow: hidden;
}

/* Background image */
.bg-development{
  width: 100%;
  height: 130%;
  position: absolute;
  background-image: url('../images/httpswebsparktechsolutions.com.png');
  background-repeat: repeat;
  background-size: 100%;
  background-position: center center;
  top: 0;
  left: 0;
  z-index: -2;
}

/* Overlay */
.development-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* overlay color */
  z-index: -1;
}

@media (max-width: 576px) {
.development-hero {
    padding: 40px 20px;
    color: #fff;
    text-align: center;
    position: relative;
    height: 200px;
    overflow: hidden;
}
.bg-development {
    width: 100%;
    height: 108%;
    position: absolute;
    background-image: url('../images/httpswebsparktechsolutions.com.png');
    background-repeat: repeat;
    background-size: 100%;
    background-position: center center;
    top: 0;
    left: 0;
    z-index: -2;
}
}

    /* Section */
.custom-software-development {
  background: linear-gradient(135deg, #f9fbff, #eef4ff);
  padding: 90px 20px;
  overflow: hidden;
}

/* Container */
.csd-container {
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Text */
.csd-content {
  flex: 1;
}

.csd-content h1 {
  font-size: 44px;
  font-weight: 700;
  color: #0b1b4b;
  line-height: 1.2;
  margin-bottom: 18px;
}

.csd-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1d4ed8;
  margin-bottom: 22px;
}

.csd-content p {
  font-size: 16px;
  line-height: 1.85;
  color: #4b5563;
  max-width: 95%;
}

/* Image */
.csd-image {
  flex: 1;
  text-align: right;
}

.csd-image img {
  max-width: 100%;
  height: auto;
  animation: float 5s ease-in-out infinite;
}

/* Scroll Animation Base */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Illustration */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

/* Tablet */
@media (max-width: 991px) {
  .csd-container {
    flex-direction: column;
    text-align: center;
  }

  .csd-image {
    text-align: center;
  }

  .csd-content h1 {
    font-size: 36px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .custom-software-development {
    padding: 60px 15px;
  }

  .csd-content h1 {
    font-size: 28px;
  }

  .csd-content p {
    font-size: 15px;
  }
}

#hiresoftware {
    background: rgba(2, 6, 38, 1);
    font-family: Poppins;padding:25px 0px;position:relative;
}
    #hiresoftware::before {
        width: 510px;
        /*background: rgba(0, 185, 86, 1);*/
        padding: 15px 20px;
        position: absolute;
        content: "";
        right: 0px;
        top: 0px;
        height: 100%;
    }
.hire-box {
    font-size: 45px;
    line-height: 49px;
    font-weight: 600;
    color: rgba(0, 185, 86, 1);
    -webkit-text-stroke-width: 0.8px;
    -webkit-text-stroke-color: #fff;
    text-shadow: #00b956 2px 2px 21px;
    border-right: solid 1px #fff; padding:20px 0;
}

.hire-content {
    width: 86%;
}
.hire-content p{font-size:18px;line-height:24px;font-weight:400;color:#000; margin:0px;}
.hire-button{width:100%;}
    .hire-button a {
        color: #fff;
        border: solid 1px #fff;
        transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
        text-decoration: none;
        border-radius: 50px;
        display: inline-block;
        padding: 8px 50px;
        font-size: 18px;
        font-weight: 600;
    }
        .hire-button a:hover {
            color: #00B956;
            box-shadow: inset -200px 0px 0 0 #fff;
        }

#ImplementationProcess {
    background: linear-gradient(180deg, #F6FAF9 0%, #E9F7FD 154.4%); padding:100px 0px;
}

.processideology-left{width:100%;}
.processideology-left img{
    width: 100%;
}

.processideology-right {
    width: 100%;
    padding-top: 65px;
}
.processideology-right ul{margin:0px;padding:0px; list-style:none;display:flex;flex-wrap:wrap;}
    .processideology-right ul li {
        line-height: 35px;
        display: flex;
        width: 50%;
        margin-bottom: 40px;
    }
.processideology-box{width:100%;}
    .processideology-box span{width:100%;display:block;}
        .processideology-box span img{width:65px;}
    .processideology-box h5 {
        color: rgba(2, 6, 38, 1);
        font-size: 18px;
        font-weight: 600;
        line-height: 27px;
        margin-top: 10px;
    }
.processideology-box p{
    color: rgba(94, 86, 106, 1);font-size:16px;font-weight:400;line-height:21px;
}

.enterprise_branding_bg {
    width: 100%;
    background: rgba(234, 247, 253, 1);
    /*  background: url(../img/enterprise-branding-bg.jpg);*/
    /*    background-size: cover;
    background-attachment: fixed;*/
    padding: 50px 0;
    font-family: Poppins;
}

.enterprise_branding_bg2 {
    width: 100%;
    background: url(../img/enterprise-branding-bg.jpg);
    background-size: cover;
    background-attachment: fixed;
    padding: 50px 0
}

.What_Makes_section {
    width: 100%;
    background: linear-gradient(90deg,#2f3781 0,#078bd8 100%);
    padding: 50px 0
}

.What_Makes {
    width: 100%;
    text-align: center
}

    .What_Makes h4 {
        font-size: 34px;
        color: #fff;
        /* color: rgba(7, 14, 61, 1);*/
        line-height: 1.25em;
        font-weight: 600;
        margin-bottom: 15px;
    }

.what-makes-color1 {
    color: rgba(7, 14, 61, 1) !important;
}

.what-makes-color2 {
    color: #5E566A !important;
}

.What_Makes p {
    /*color: #5E566A;*/ color: #fff;
    font-size: 17px;
    line-height: 26px;
}

.What_Makes ul {
    margin: 0;
    list-style: decimal
}

    .What_Makes ul li {
        float: left;
        line-height: 24px;
        font-size: 15px;
        color: #fff;
        margin-bottom: 15px;
    }
    
    .same-btn {
    text-align: center;
    margin-top: 22px;
}

    .same-btn a {
        border: solid 1px #00B956;
        color: #020626;
        transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
        text-decoration: none;
        border-radius: 50px;
        display: inline-block;
        padding: 10px 30px;
        font-size: 16px;
        font-weight: 600;
    }

        .same-btn a:hover {
            color: #fff;
            box-shadow: inset -200px 0px 0 0 #00B956;
        }
        
        


/* Back to Top Button */
/* #ws-backToTop{
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgb(16, 23, 103);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s ease;
  z-index: 9999;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
} */

#ws-backToTop{
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgb(16, 23, 103);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 999999;
}

#ws-backToTop.show{
  opacity: 1;
  visibility: visible;
}


/* Hover Effect */
#ws-backToTop:hover{
  background: rgb(16, 23, 103);
  transform: translateY(0) scale(1.08);
}

.fa-caret-down{
  margin-left: 5px;
}

/* Show on Scroll */
#ws-backToTop.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Floating Feel */
@keyframes ws-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

#ws-backToTop.show{
  animation: ws-float 2.2s ease-in-out infinite;
}
