.all-about-service-img img{
    animation-name: premiumFloat;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    width: 60%;
}

@keyframes premiumFloat {
  0% {
    transform: translate3d(0px, 0px, 0px) rotate(0deg);
  }

  25% {
    transform: translate3d(20px, -30px, 0px) rotate(2deg);
  }

  50% {
    transform: translate3d(-20px, -45px, 0px) rotate(-2deg);
  }

  75% {
    transform: translate3d(-15px, 25px, 0px) rotate(1deg);
  }

  100% {
    transform: translate3d(0px, 0px, 0px) rotate(0deg);
  }
}


/* Service Page */
    .show-992px{
     display: none;
}

/* Service Page */



@media (max-width:992px) {
    .all-about-service-img{
        display: none;
    }
    .hide-992px{
     display: none;
}
    .show-992px{
     display: block;
}
}






/* Services Hover Section */
/* Services Hover Section */

/* MAIN WRAPPER */
.vx-mega-wrapper {
  position: fixed;
  top: 123px;
  right: 0;
  width: 100%;
  height: 90vh;
  background: #111;
  z-index: 99999;
  /* overflow-y: scroll; */
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  transition: 0.5s ease;
}
.vx-mega-wrapper.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.vx-no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* CONTAINER FLEX */
.vx-mega-container {
  display: flex;
  width: 100%;
  height: 100%;
}

/* HIDE RADIO */
.vx-mega-container input[type="radio"] {
  display: none;
}

/* SIDEBAR */
.vx-mega-sidebar {
  width: 260px;
  background: #4BAEA7;
  display: flex;
  flex-direction: column;
  
}

.vx-mega-sidebar label {
  padding: 14px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.vx-mega-sidebar label:hover {
  background: #55239C;
}


/* CONTENT AREA */
.vx-mega-content {
  flex: 1;
  padding: 30px;
  color: white;
  overflow-y: auto; 
  /* display: none; */
}


/* SECTION */
.vx-section {
  display: none;
}

/* SHOW ACTIVE */
#vx-it:checked ~ .vx-mega-content .vx-it-sec,
#vx-software:checked ~ .vx-mega-content .vx-software-sec,
#vx-web:checked ~ .vx-mega-content .vx-web-sec,
#vx-mobile:checked ~ .vx-mega-content .vx-mobile-sec,
#vx-ai:checked ~ .vx-mega-content .vx-ai-sec,
#vx-data:checked ~ .vx-mega-content .vx-data-sec,
#vx-blockchain:checked ~ .vx-mega-content .vx-blockchain-sec,
#vx-cyber:checked ~ .vx-mega-content .vx-cyber-sec,
#vx-marketing:checked ~ .vx-mega-content .vx-marketing-sec {
  display: block;
}

/* ACTIVE LABEL */
#vx-it:checked ~ .vx-mega-sidebar label[for="vx-it"],
#vx-software:checked ~ .vx-mega-sidebar label[for="vx-software"],
#vx-web:checked ~ .vx-mega-sidebar label[for="vx-web"],
#vx-mobile:checked ~ .vx-mega-sidebar label[for="vx-mobile"],
#vx-ai:checked ~ .vx-mega-sidebar label[for="vx-ai"],
#vx-data:checked ~ .vx-mega-sidebar label[for="vx-data"],
#vx-blockchain:checked ~ .vx-mega-sidebar label[for="vx-blockchain"],
#vx-cyber:checked ~ .vx-mega-sidebar label[for="vx-cyber"],
#vx-marketing:checked ~ .vx-mega-sidebar label[for="vx-marketing"] {
  background: #55239C;
}

.vx-mega-content::-webkit-scrollbar {
  width: 6px;
}

.vx-mega-content::-webkit-scrollbar-thumb {
  background: #55239C;
  border-radius: 10px;
}

/* CARD GRID */
.vx-card-grid {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.vx-card-grid a{
    text-decoration: none;
    color: #4BAEA7;
}

.vx-card-box {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,0.2);
  transition: 0.3s;
  padding: 10px;
}
.vx-card-box .content{
    text-align: center;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}
.vx-card-box .content  i{
    /* text-align: center; */
    font-size: 30px;
}

.vx-card-box:hover {
  background: #55239C;
  transform: translateY(-5px);
}





/* Section */
.career-section {
  padding: 80px 20px;
}

.career-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.career-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 60px;
  position: relative;
}

.career-heading::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #4BAEA7, #55239C);
  display: block;
  margin: 15px auto 0;
  border-radius: 5px;
}

/* Grid */
.career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.career-card {
  /* background: #1a1a1a; */
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s ease;
}

.career-card:hover {
  transform: translateY(-10px);
  border-color: #4BAEA7;
  box-shadow: 0 20px 40px rgba(75,174,167,0.2);
}

/* Top */
.career-top {
  /* display: flex; */
  /* justify-content: space-between;
  align-items: center; */
}

.career-top h3 {
  font-size: 18px;
  color: #4BAEA7;
  font-weight: 600;
  padding-bottom: 10px;
}

.career-badge {
  font-size: 12px;
  padding: 5px 16px;
  border-radius: 20px;
  background: linear-gradient(45deg, #4BAEA7, #55239C);
  color: white;
  /* margin-top: 10px; */
}

/* Meta */
.career-meta {
  margin: 20px 0;
  font-size: 13px;
  color: #bbb;
  display: flex;
  gap: 20px;
}

.career-meta i {
  margin-right: 6px;
  color: #4BAEA7;
}

/* Description */
.career-desc {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Skills */
.career-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.career-skills span {
  border: 1px solid #4BAEA7;
  color: #4BAEA7;
  padding: 0px 10px;
  font-size: 12px;
  border-radius: 20px;
  transition: 0.3s;
}

.career-skills span:hover {
  background: #4BAEA7;
  color: #111;
}

/* Button */
.career-btn {
  margin-top: auto;
  padding: 5px 12px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(45deg, #4BAEA7, #55239C);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}
.career-btn a {
 
  color: white;
  
}

.career-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(85,35,156,0.4);
}

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

@media (max-width: 600px) {
  .career-grid {
    grid-template-columns: 1fr;
  }
}
/* RESPONSIVE */
@media (max-width:1200px) {
  .vx-mega-wrapper{
    top: 161px;
    /* height: 75vh; */
  }
}


@media (max-width: 992px) {
  .vx-mega-wrapper {

  top: 74px;
  /* right: 3px; */
 
}
  .vx-mega-container {
    flex-direction: column;
  }

  .vx-mega-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
  }
  .vx-mega-sidebar::-webkit-scrollbar {
  width: 2px;
  height: 4px;
}

.vx-mega-sidebar::-webkit-scrollbar-thumb {
  background: #55239C;
  border-radius: 10px;
}

  .vx-mega-sidebar label {
    white-space: nowrap;
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .vx-card-box {
    width: 46%;
  }
  .vx-mega-wrapper {
  width: 100vw;
  right: 0px;
  
}
.vx-mega-wrapper{
  height: 93vh;
  width: 100%
  
}


.separate{
  height: 50px;
  width: 100%;
}
}




.servcie2 .servcie2-box .icon  img{
    filter: brightness(0) saturate(100%) invert(24%) sepia(58%) saturate(2800%) hue-rotate(248deg);
}
.heading2 p  img{
    filter: brightness(0) saturate(100%) invert(24%) sepia(58%) saturate(2800%) hue-rotate(248deg);
}

.item-box .icon img{

  filter: brightness(0) saturate(100%)
          invert(21%) sepia(67%) saturate(2961%)
          hue-rotate(254deg) brightness(94%) contrast(101%);

}


/* Apply Form */

/* Main Section */
.career-application-section {
  padding:  20px;
  /* background: linear-gradient(135deg, #06142e, #0d1f4a); */
}

.career-application-wrapper {
  max-width: 1100px;
  margin: auto;
  /* background: ; */
  padding: 40px 20px;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

/* Heading */
.career-application-heading {
  text-align: center;
  margin-bottom: 40px;
}

.career-application-heading h2 {
  color: #40e0d0;
  margin-bottom: 10px;
}

.career-application-heading p {
  color: #ccc;
}

/* Form Layout */
.career-application-form {
  width: 100%;
}

.career-field-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.career-field-box {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.career-full-width {
  width: 100%;
}

.career-field-box label {
  margin-bottom: 6px;
  color: #ddd;
  font-size: 14px;
}

.career-field-box input,
.career-field-box select,
.career-field-box textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #1c2f5a;
  background: transparent;
  color: #fff;
  transition: 0.3s;
}

.career-field-box input:focus,
.career-field-box select:focus,
.career-field-box textarea:focus {
  border-color: #40e0d0;
  outline: none;
}

/* Radio */
.career-radio-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
  color: #fff;
}

/* Submit Button */
.career-submit-area {
  margin-top: 30px;
  text-align: center;
}

.career-submit-area button {
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #40e0d0, #2bbbad);
  color: #000;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.career-submit-area button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .career-field-row {
    flex-direction: column;
  }
  .career-application-section {
  padding:  0px;
  /* background: linear-gradient(135deg, #06142e, #0d1f4a); */
}
}
/* Apply Form */






.certificatesdiv {
  overflow: hidden;
  padding: 40px 0;
  background: transparent;
}

/* Outer wrapper */
.marqueeee {
  overflow: hidden;
  position: relative;
}

/* Moving Track */
.marqueeee-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

/* Each group */
.marqueeeecontent {
  display: flex;
  gap: 30px;
  padding-right: 30px;
}

/* Equal rectangular card */
.cert-card {
  width: 160px;
  height: 100px;
  background: #000A3B;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

/* Hover effect */
.cert-card:hover {
  transform: translateY(-5px);
}

/* Logo styling */
.cert-card img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
}

/* Smooth Infinite Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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



.hero10-benar{
  display: none;
}

.hero-section-para {
    font-size: 17px;
    line-height: 20px;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.669);
}


.servie-avl{
  color: white;
  padding: 5px 10px;
  background: linear-gradient(90deg, #4BAEA7,transparent);
}



.project-page-box .image{
 overflow: hidden;
  aspect-ratio: 7 / 5;   /* 7:5 ratio */
  width: 100%;
}
.project-page-box .image img{
width: 100%;
  height: 100%;
  object-fit: cover; 
 
}











.career-benefits-section {
  padding: 90px 0;
  background: transparent;
}

/* Card Design */
.benefit-card {
  background: transparent;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(9, 9, 9, 0.08);
  overflow: hidden;
}

/* Top gradient bar */
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #4BAEA7, #552BA4);
  transition: 0.4s;
}

/* Hover */
.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(243, 242, 242, 0.15);
}

.benefit-card:hover::before {
  height: 100%;
  opacity: 0.05;
}

/* Icon */
.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4BAEA7, #552BA4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  transition: 0.4s;
}

.benefit-card:hover .benefit-icon {
  transform: rotateY(180deg);
}

/* Title */
.benefit-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #c2e6f1;
}

/* Text */
.benefit-card p {
  font-size: 15px;
  color: #b7b6b6;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .benefit-card {
    margin-bottom: 20px;
  }
}


@media (max-width:450px) {
  .copyright p{
    font-size: 13px;
  }
}


.career-skills2{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.career-skills2 button{
  border: 1px solid white;
  outline: none;
  background: transparent;
  color: white;
  padding: 3px 10px;
  border-radius: 8px;
  z-index: 999;
  font-size: 14px;
  transition: .3s ease;
}
.career-skills2 button:hover{
  border: 1px solid #4BAEA7;

  background: #4BAEA7;

}