
/* ----------------------
   BODY STYLE
------------------------- */

body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box; 
  overflow-x: hidden;
  overflow-y: hidden;
}







/* ----------------------
   HERO SECTION
------------------------- */

  .heroSection {
    /* background: linear-gradient(to bottom, #ffffff, #e0f0ff); */
    background: linear-gradient(15deg, rgb(255, 255, 255), rgba(239, 249, 247, 0.972));
    padding: 150px 16px 20px 16px;
    text-align: center;
    position: relative;
  }

  .heroClientStack {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .heroAvatars {
    display: flex;
    margin-right: 12px;
    flex-wrap: nowrap;
  }

  .heroAvatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -12px;
    box-shadow: 0 0 6px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: white;
    position: relative;
    z-index: 1;
  }

  .heroAvatar:first-child {
    margin-left: 0;
  }

  .heroAvatar:hover,
  .heroAvatar:focus-visible {
    transform: scale(1.1);
    box-shadow: 0 0 8px #0084ffe1;
    z-index: 2;
    outline: none;
  }

  .heroAvatar:focus-visible {
    outline: 2px solid #0084ff;
    outline-offset: 2px;
    box-shadow: 0 0 10px #0084ff;
    z-index: 2;
  }

  .heroClientText {
    font-weight: 600;
    color: #555;
    font-size: 15px;
    white-space: nowrap;
    background: white;
    border-radius: 40px;
    padding: 8px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
    flex-shrink: 0;
    user-select: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    line-height: 1.2;
  }

  .heroClientText:hover {
    background-color: #f0f8ff;
    box-shadow: 0 4px 12px rgba(0, 133, 255, 0.2);
    cursor: default;
  }

  .heroTitle {
    max-width: 680px;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    line-height: 1.1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
    min-height: 3.8rem;
  }

  .heroHide {
      display: none;
    }

  #typed {
    color: #0085ff;
    font-weight: 700;
  }

  .cursor {
    display: inline-block;
    color: #0085ff;
    font-weight: 700;
    font-style: normal;
    animation: blink 1.2s infinite;
    user-select: none;
  }

  @keyframes blink {
    0%, 50% {
      opacity: 1;
    }
    51%, 100% {
      opacity: 0;
    }
  }

  .heroSubtitle {
    font-size: 19px;
    color: #555;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.3;
    font-weight: 400;
  }

  .heroCtaButtons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: -30px;
    flex-wrap: wrap;
  }

  button.hmActionBtn1,
  button.hmActionBtn2 {
    cursor: pointer;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  button.hmActionBtn1 {
    background: linear-gradient(135deg, #ff4d4d, #ffc300);
    color: #fff;
  }

  button.hmActionBtn1:hover{
    background: linear-gradient(135deg, #ffc300, #ff4d4d);
  }

  button.hmActionBtn1::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff4d4d, #ffc300);
    z-index: -1;
    border-radius: inherit;
    transition: opacity 0.3s ease;
    opacity: 0;
  }

  button.hmActionBtn1:hover::before {
    opacity: 1;
  }

  button.hmActionBtn1:hover,
  button.hmActionBtn1:focus,
  button.hmActionBtn2:hover,
  button.hmActionBtn2:focus {
    transform: translateY(-2px);
    outline: none;
  }

  button.hmActionBtn1:active,
  button.hmActionBtn2:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }

  button.hmActionBtn2 {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #0D1F29;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 15px rgba(13, 31, 41, 0.15);
  }

  .buttonIconCircle {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .hmActionBtn1:hover .buttonIconCircle,
  .hmActionBtn2:hover .buttonIconCircle {
    transform: scale(1.15);
  }

  .white-bg {
    background: #fff;
    color: #000;
  }

  .black-bg {
    background: #000;
    color: #fff;
  }

  button.hmActionBtn1 i,
  button.hmActionBtn2 i {
    font-size: 1rem;
  }

  @media (max-width: 768px) {
    .heroTitle {
      font-size: 2.2rem;
    }

    .heroHide {
      display: block;
    }
  }

  @media (max-width: 480px) {
    .heroTitle {
      font-size: 1.8rem;
    }
    .heroSubtitle {
      font-size: 1rem;
      margin-left: 16px;
      margin-right: 16px;
    }
    .heroClientStack {
      flex-direction: column;
      gap: 8px;
    }
    .heroAvatars {
      margin-right: 0;
      margin-bottom: 6px;
    }
    .heroClientText {
      white-space: normal;
      width: auto;
      height: auto;
      line-height: normal;
      border-radius: 20px;
      padding: 6px 14px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .heroAvatar {
      width: 36px;
      height: 36px;
      margin-left: -10px;
    }
    button.hmActionBtn1,
    button.hmActionBtn2 {
      width: 75%;
      justify-content: center;
    }
  }







/* ----------------------
  HERO PICTURE SECTION
------------------------- */

   .heroSwiperContainer {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 16px 60px !important;
    overflow: hidden;
    position: relative;
  }

  .swiper-wrapper {
    display: flex;
    align-items: center;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .heroSwiperSlide {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: #dfe8ee;
    transform: scale(0.85);
    transition: transform 0.5s ease, height 0.5s ease, filter 0.4s ease;
    height: 280px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    z-index: 0;
  }

  .heroSwiperSlide.swiper-slide-active {
    transform: scale(1);
    height: 360px;
    z-index: 2;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  }

  .heroSwiperSlide.swiper-slide-active::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 23px;
    z-index: -1;
    background: conic-gradient(
      from 0deg,
      #00f0ff 0%,
      #70e7ff 25%,
      #ff00aa 50%,
      #ff6cc9 75%,
      #00f0ff 100%
    );
    animation: rotateBorder 8s linear infinite;
    padding: 3px;
    filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.7))
            drop-shadow(0 0 8px rgba(255, 0, 170, 0.7));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
  }

  @keyframes rotateBorder {
    0% {
      transform: rotate(0deg);
    }
    90% {
      transform: rotate(324deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .heroSwiperSlide.swiper-slide-prev,
  .heroSwiperSlide.swiper-slide-next {
    transform: scale(0.93);
    height: 300px;
    z-index: 1;
  }

  .heroSwiperSlide:hover {
    cursor: pointer;
    transition: filter 0.3s ease;
  }

  .heroSlideOverlay {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 30px;
    background: rgba(25, 25, 25, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    width: 75%;
    border: 1px solid rgba(255, 255, 255, 0.104);
  }

  .heroSwiperPagination {
    text-align: center;
    margin-top: 600px;
  }

  .heroSwiperPagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #05b4e0;
    opacity: 0.3;
    margin: 0 6px;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .heroSwiperPagination .swiper-pagination-bullet:hover {
    opacity: 0.6;
    transform: scale(1.2);
  }

  .heroSwiperPagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #0085ff;
    transform: scale(1.4);
  }

  .heroSwiperContainer::after {
    right: 0;
    transform: scaleX(-1);
  }

  .heroSwiperContainer::before {
    left: 0;
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  @media (max-width: 768px) {
    .heroSwiperContainer {
      padding-left: 20px;
      padding-right: 20px;
    }

    .swiper-wrapper {
      padding: 0 10px;
    }

    .heroSlideOverlay {
      font-size: 0.895rem;
      padding: 10px 20px;
      width: 90%;
    }

    .heroSwiperPagination .swiper-pagination-bullet {
      width: 14px;
      height: 14px;
    }
  }






/* ----------------------
  TRUSTED PARTNER
------------------------- */
.partnersSection { 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #f7f9fc, #d9e4f9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partnersRow {
  display: flex;
  width: 100%;
  max-width: 1200px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.partnersLogos {
  padding: 5px 0;
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  background: rgba(255 255 255 / 0.8);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-radius: 15px;
}

.partnerLogosContainer {
  animation: slideLogo 15s linear infinite;
  display: flex;
  width: 100%;
  padding: 10px 0;
}

.partnerLogoCardWrapper {
  flex: 0 0 auto;
  width: 140px;
  height: 100px;
  margin: 0 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0.9;
  cursor: pointer;
  will-change: transform;
  aspect-ratio: 1.4; 
}

.partnerLogoCardWrapper img {
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
}

.partnerLogoCardWrapper:hover,
.partnerLogoCardWrapper:focus { 
  opacity: 1;
  box-shadow: 0 18px 45px rgba(0, 133, 255, 0.35);
  transform: translateY(-6px) scale(1.08);
  outline: none;
}

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

.partnersText {
  width: 30%;
  text-align: center;
}

.partnersText h2 {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  margin-right: 20px;
  line-height: 1.0;
  text-transform: uppercase;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2); 
}

@media (max-width: 1024px) {
  .partnersSection {
      padding: 50px 20px;
  }

  .partnersText h2 {
      font-size: 2.5rem;
      text-align: center;
  }

  .partnerLogosContainer {
      animation: slideLogo 12s linear infinite;
  }

  .partnerLogoCardWrapper {
      width: 120px;
      height: 100px;
  }

  .partnerLogoCardWrapper img {
      max-width: 90px;
  }
}

@media (max-width: 768px) {
  .partnersSection {
      padding: 40px 15px;
  }

  .partnersText h2 {
      font-size: 25px;
  }

  .partnerLogosContainer {
      animation: slideLogo 10s linear infinite;
  }

  .partnerLogoCardWrapper {
      width: 100px;
      height: 100px;
  }

  .partnerLogoCardWrapper img {
      max-width: 80px;
  }
}

@media (max-width: 480px) {
  .partnersSection {
      padding: 30px 10px;
  }

  .partnersText h2 {
      font-size: 20px;
  }

  .partnerLogosContainer {
      animation: slideLogo 8s linear infinite;
  }

  .partnerLogoCardWrapper {
      width: 80px;
      height: 80px;
  }

  .partnerLogoCardWrapper img {
      max-width: 60px;
  }
}








/* ----------------------
   ABOUT US SECTION
------------------------- */
.headAbtContainer {
    background-color: white;
    padding: 100px 30px 50px;
}

.headAboutUsSection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    margin: auto;
}

.headFirstRow {
    width: 40%;
    justify-content: center;
    align-items: center;
}

.headRectangle {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

.headRectangle:hover {
    transform: scale(1.02) rotateX(1.5deg) rotateY(1.5deg);
}

.headRectangle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    z-index: 0;
}

.headRectangle:hover img {
    transform: scale(1.02);
}

.headSecondRow {
    width: 50%;
    flex-direction: column;
}

.headOneWordTexts {
    display: flex;
    margin-bottom: 30px;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.headTextItem {
    font-size: 15px;
    color: #333;
    padding: 10px 20px;
    border: 1px solid #d7ebff;
    border-radius: 50px;
    background-color: #f7fbff;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.headTextItem:hover {
    transform: scale(1.08);
    background-color: #bbe8ff;
}

.headContentRectangle {
    max-width: 1200px;
    background-color: #fff;
    padding: 40px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: 15px;
}

.headAboutContent p {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 20px;
}

.abtBreak{
    display: block;
    margin-top: 10px;
}

.headClientStats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.abtStatCard {
    position: relative;
    width: 30%;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatCard 6s ease-in-out infinite;
}

.abtStatCard:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.abtStatCardContent {
    border-radius: 10px;
    padding: 20px;
}

.abtCon1 {
    background-color: rgba(255, 0, 0, 0.1);
}
.abtCon2 {
    background-color: rgba(255, 160, 0, 0.1);
}
.abtCon3 {
    background-color: rgba(0, 123, 255, 0.1);
}

.abtStatCardContent h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.abtStatCardContent p {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

@keyframes floatCard {
    0% {
        transform: translateY(0px);
        opacity: 1;
    }
    25% {
        transform: translateY(-6px);
        opacity: 0.98;
    }
    50% {
        transform: translateY(0px);
        opacity: 1;
    }
    75% {
        transform: translateY(6px);
        opacity: 0.98;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .headAboutUsSection {
        flex-direction: column;
    }
    .headFirstRow, .headSecondRow {
        width: 100%;
        text-align: center;
    }
    .headRectangle {
        width: 100%;
        height: 350px;
        border-radius: 15px;
    }
    .headOneWordTexts {
        flex-direction: column;
        align-items: center;
    }
    .headContentRectangle {
        width: 100%;
        padding: 20px;
    }

    .headClientStats {
        justify-content: center;
        gap: 20px;
    }

    .abtStatCard {
        width: 45%;
        margin: 10px 0;
    }
    .headOneWordTexts {
        display: none;
    }

    .headContentRectangle {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {

    .headAbtContainer {
        padding: 80px 10px;
    }

    .abtStatCard {
        width: 100%;
        margin: 10px 0;
    }

    .headClientStats {
        gap: 0px;
    }

    .headContentRectangle {
        padding: 20px;
    }

    .headAboutContent p {
        font-size: 15px;
        text-align: start;
    }
}








/* ----------------------
   SERVICE SECTION
------------------------- */
  .serviceSection {
    background-color: #f7fbff;
    padding: 40px 0;
  }

  .homeContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    text-align: center;
  }

  .homeFeaturedServ.homeFeaturedServ {
    background: linear-gradient(260.52deg, #1C99FE -4.98%, #7644FF 48.42%, #FD4766 96.9%);
    color: #fff;
    padding: 10px 23px;
    border-radius: 30px;
    font-size: 14px;
    max-width: 250px;
    margin: 0 auto;
  }

  .homeDisplayTitle {
    font-size: 40px;
    font-weight: 700;
    margin: 10px 0;
    line-height: 1.3;
  }

  .homeServiceDescription {
    font-size: 18px;
    padding: 0 300px;
    color: #292929;
    margin-bottom: 20px;
  }

  .homeCardCon {
    padding: 20px 30px;
  }

  .homeServiceSection {
    width: 90%;
    margin: auto;
    padding: 20px 0 50px;
  }

  .homeRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }

  .homeCardWrapper {
    flex: 0 1 30%;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    display: flex;
  }

  .homeServiceCard {
    position: relative;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(183, 219, 247, 0.4);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    overflow: hidden;
    padding: 18px;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .homeServiceCard:hover {
    transform: translateY(-8px);
    background-color: rgba(140, 197, 250, 0.055);
    border: 1px solid rgba(183, 219, 247, 0.842);
  }

  .homeZoomImage {
    height: 200px;
    /* overflow: hidden; */
    border-radius: 10px;
  }

  .homeZoomImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 5px;
  }

  .homeServiceCard:hover .homeZoomImage img {
    transform: scale(1.05);
  }

  .homeCircleLink {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(to right, #fe3e09, #ff7511);
    border-radius: 50% 0 50% 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .homeServiceCard:hover .homeCircleLink {
    opacity: 1;
  }

  .homeCircleLink a,
  .homeCircleLink a i {
    color: white;
    text-decoration: none;
  }

  .homeServiceCardContent {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .homeServiceCardTitle {
    font-size: 18px;
    font-weight: 700;
    color: #0565c0;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .homeServiceCardDescription {
    font-size: 15px;
    color: #333;
    margin-bottom: auto;
    line-height: 1.4;
  }

  .homeServiceCardButton {
    padding: 12px;
    font-size: 15px;
    text-align: center;
    border: 1px solid #ff451128;
    background-color: rgba(255, 117, 17, 0.05);
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    color: #ff4511;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    display: inline-block;
    text-decoration: none;
    margin-top: 25px;
  }

  .homeServiceCardButton:hover {
    background: linear-gradient(120deg, #ff5811, #fe3e09);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.01);
    color: #fff;
    border: none;
  }

  .tagList {
    list-style: none;
    padding: 0 0 25px 0;
    margin: 0 0 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 1px solid rgba(33, 32, 32, 0.097);
  }

  .tag {
    font-size: 0.72rem;
    padding: 6px 14px;
    border-radius: 999px;
    color: #1a1a1a;
    font-weight: 500;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    font-style: italic;
  }

  .tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }

  .tag.more {
    font-style: italic;
    color: #555;
    background: rgba(255, 255, 255, 0.1);
    border: 1px dashed rgba(0, 0, 0, 0.1);
  }

  .homeViewAllCon {
    text-align: center;
    margin-top: 30px;
  }

  #homeViewAllBtn {
    padding: 20px 30px;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    background-color: #0085ff;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
  }

  #homeViewAllBtn i {
    background: white;
    color: black;
    padding: 8px;
    border-radius: 50px;
    margin-left: 5px;
  }

  #homeViewAllBtn:hover {
    transform: translateY(-4px);
    background-color: #005bb5;
  }

  @media (max-width: 1000px) {
    .homeServiceDescription {
      padding: 0 80px;
      font-size: 16px;
    }
    .homeCardWrapper {
      flex: 0 1 45%;
    }
  }

  @media (max-width: 768px) {
    .homeCardWrapper {
      flex: 0 1 100%;
    }

    .homeFeaturedServ {
      font-size: 12px;
      width: 220px;
    }

    .homeDisplayTitle {
      font-size: 28px;
    }

    .homeServiceDescription {
      padding: 0 50px;
      font-size: 17px;
    }

    .tagList {
      gap: 6px;
    }

    .tag {
      font-size: 0.7rem;
      padding: 4px 8px;
    }
  }

  @media (max-width: 480px) {
    .homeDisplayTitle {
      font-size: 25px;
    }

    .homeServiceCardButton {
      padding: 10px;
      font-size: 14px;
    }

    .homeServiceDescription {
      padding: 0 20px;
      font-size: 16px;
    }

    .tag {
      font-size: 0.6rem;
      padding: 3px 6px;
    }
  }

  










/* ----------------------
   APP NICHE SECTION
------------------------- */
.appNicheCustomSection {
  padding: 100px 80px;
  background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
}

.appNicheSectionTitle {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #1e1e1e;
  line-height: 1.2;
}

.appNicheHighlight {
  color: #0085ff;
}

.appNicheSectionDescription {
  font-size: 18px;
  color: #6e6e6e;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.5;
}

.appNicheCardWrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.appNicheCard {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 35px 25px;
  box-shadow: inset 0 0 0.5px rgba(255,255,255,0.5), 0 8px 24px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.appNicheCard:hover {
  transform: translateY(-10px) rotateY(3deg) rotateX(3deg) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 133, 255, 0.4);
  background-color: #0085ff;
  color: #ffffff;
}

.appNicheCardBody {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.appNicheIcon {
  font-size: 36px;
  margin-bottom: 18px;
  background: linear-gradient(270deg, #0072ff, #50c6f5, #0072ff);
  background-size: 400% 400%;
  animation: gradientMove 6s ease infinite;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.appNicheCard:hover .appNicheIcon {
  animation: pulse 1s infinite alternate, gradientMove 6s ease infinite;
}

.appNicheCard:hover .appNicheIcon,
.appNicheCard:hover .appNicheCardTitle {
  color: #ffffff !important;
}

.appNicheCardTitle {
  font-size: 16px;
  font-weight: 500;
  color: #1e1e1e;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .appNicheCardWrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .appNicheCustomSection {
    padding: 70px 30px;
  }

  .appNicheSectionTitle {
    font-size: 28px;
  }

  .appNicheSectionDescription {
    font-size: 16px;
  }

  .appNicheCardWrapper {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .appNicheIcon {
    font-size: 30px;
  }

  .appNicheCardTitle {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .appNicheCustomSection {
    padding: 50px 20px;
  }

  .appNicheSectionTitle {
    font-size: 24px;
  }

  .appNicheSectionDescription {
    font-size: 15px;
  }

  .appNicheIcon {
    font-size: 24px;
  }

  .appNicheCardWrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.1); opacity: 0.8; }
}











/* ----------------------
   SCROLLING SECTION
------------------------- */

.portfolioMarqueeContainer {
    overflow: hidden;
    padding: 15px 0;
    background-color: #126dc2;
    background: linear-gradient(260.52deg, #1C99FE -4.98%, #126dc2 48.42%, #0f75d4 96.9%);
}

.portfolioMarqueeContent {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: scrollMarquee 25s linear infinite;
  align-items: center;
  will-change: transform;
}

.portfolioMarqueeText {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Michroma", sans-serif;
  background: linear-gradient(90deg, #ffffff, #dbefff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 10px 0;
  display: flex;
  align-items: center;
  position: relative;
}

.fas.fa-circle {
    color: #fff;
    font-size: 20px;
    margin-left: 5px;
    margin-right: 5px;
}

.blueBackground {
    background-color: #ec5b2f;
}

.reverseDirection {
    animation: scrollMarqueeReverse 30s linear infinite;
}

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

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

@media (max-width: 1200px) {
    .portfolioMarqueeContent {
        animation-duration: 20s;
    }

    .reverseDirection {
        animation-duration: 20s;
    }
}

@media (max-width: 768px) {
    .portfolioMarqueeContent {
        animation-duration: 15s;
    }

    .reverseDirection {
        animation-duration: 15s;
    }

    .portfolioMarqueeText {
    font-size: 30px;
}
}












/* ----------------------
   PORTFOLIO SECTION
------------------------- */

.homePortfolio {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.homePortContainer {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.homePortfolioGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.homeUniqueVideoContainer {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  height: 260px;
  opacity: 0.92;
  transition: transform 0.4s ease, opacity 0.4s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.homeUniqueVideoContainer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent);
  z-index: 0;
  transition: opacity 0.3s ease;
}

.homeUniqueVideoContent {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  position: relative;
  border-radius: 16px;
}

.homeUniqueVideoContainer:hover {
  transform: scale(1.06);
  opacity: 1;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 1024px) {
  .homePortfolioGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .homePortfolioGrid {
    grid-template-columns: 1fr;
    width: 90%;
    margin: auto;
  }
}

@keyframes moveCircles {
  0% {
    background-position: 0 0, 100% 100%;
  }
  100% {
    background-position: 100% 100%, 0 0;
  }
}










/* ----------------------
   WHYY CHOOSE US
------------------------- */
.whyChooseUs {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  width: 100%;
}

.whyChooseUsRow {
  display: flex;
  width: 100%;
  max-width: 1200px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.whyChooseUsContent {
  flex: 1;
  min-width: 280px;
  padding: 20px;
}

.whyChooseUsContent .foreText {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.whyChooseUsContent .boldText {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: #2d2d2d;
  margin-bottom: 15px;
}

.whyChooseUsContent .smallText {
  font-size: 16px;
  color: #5b5a5a;
  margin-bottom: 25px;
}

.WyActionBtn {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  background: linear-gradient(135deg, #ff7511, #fe0909);
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 30px 0 30px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.WyActionBtn:hover {
  background: linear-gradient(135deg, #fe0909, #ff7511);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 117, 17, 0.3);
}

.WyActionBtn i {
  background-color: #fff;
  border-radius: 50%;
  padding: 5px;
  margin-left: 10px;
  font-size: 13px;
  color: #ff7511;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whyChooseUsCards {
  flex: 1.2;
  min-width: 320px;
  background-color: #f6faff;
  padding: 25px;
  border-radius: 30px 0 30px 30px;
  border: 1px solid #e3eefe;
}

.WyCardRow {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.WyCard {
  background-color: #fff;
  color: #333;
  flex: 1 1 48%;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.WyCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 133, 255, 0.1);
}

.WyCardIcon {
  background-color: #0085ff;
  color: white;
  border-radius: 50%;
  padding: 14px;
  font-size: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.WyCard h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.WyCard p {
  font-size: 15px;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .whyChooseUsRow {
    flex-direction: column;
    align-items: center;
  }

  .whyChooseUsContent,
  .whyChooseUsCards {
    width: 100%;
    text-align: center;
  }

  .WyCardRow {
    flex-direction: column;
  }

  .WyCard {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .whyChooseUsContent .boldText {
    font-size: 32px;
  }

  .WyActionBtn {
    font-size: 15px;
    padding: 14px 24px;
  }

  .WyCardIcon {
    padding: 12px;
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .whyChooseUsContent .boldText {
    font-size: 26px;
  }

  .whyChooseUsContent .smallText {
    font-size: 14px;
  }

  .WyActionBtn {
    font-size: 14px;
  }

  .WyCard h3 {
    font-size: 16px;
  }

  .WyCard p {
    font-size: 14px;
  }
}







/* ----------------------
   TEAM HEAD TITLE
------------------------- */

  .mainContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    margin-bottom: 40px;
  }
  
  .centerRow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .centerCol {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
  }
  
  .borderSolid1 {
    border: 2px solid #fe7309;
    color: #fe7309;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
    transform: rotate(-4deg);
    font-size: 20px;
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
  }
  
  .borderSolid1:hover {
    background-color: #fe7309;
    color: #fff;
    transform: rotate(0deg);
  }
  
  @keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  .fontSize32 {
      font-size: 32px;
      font-weight: bold;
      color: #333;
      margin-bottom: 25px;
      line-height: 1.1;
  }
  
  @media (max-width: 768px) {
  
    .borderSolid1 {
        font-size: 12px;
    }
  }
  
  @media (max-width: 480px) {
  
    .borderSolid1 {
        font-size: 10px;
    }
  
    .fontSize32 {
          font-size: 28px;
    }
  
    .mainContainer {
        padding: 30px 15px;
    }
  }
  
  @media (max-width: 370px) {
    .fontSize32 {
          font-size: 20px;
    }
  }









/* ----------------------
   CEO SECTION
------------------------- */



.ceoHero {
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, #cce7ff 0%, transparent 70%),
    radial-gradient(circle at bottom right, #f0f8ff 0%, transparent 70%),
    #ffffff;
}


.ceoWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1280px;
  margin: auto;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.ceoImageCard {
  display: flex;
  justify-content: center;
  position: relative;
}

.ceoImageLayer {
  position: relative;
  width: 320px;
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.12),
    inset 0 0 20px rgba(255, 255, 255, 0.15); 
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

.ceoImageOverlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  border-radius: 24px;
}

.ceoMainImage {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  transform: translateZ(20px);
  position: relative;
  z-index: 1;
  filter: grayscale(100%);
}

.floatingOrbs {
  position: absolute;
  background: radial-gradient(circle, rgba(0, 132, 255, 0.981), transparent);
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  border: 1px solid rgb(253, 253, 253);
  filter: blur(1.5px);
}

.orb1 {
  width: 60px;
  height: 60px;
  top: -25px;
  left: -20px;
}
.orb2 {
  width: 100px;
  height: 100px;
  bottom: -40px;
  right: -30px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-10px) scale(1.05);
    opacity: 0.7;
  }
}

.ceoTextBlock {
  color: #0d1f29;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.ceoIntro {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  color: #aaaaaa;
  margin-bottom: 12px;
  font-weight: 600;
}

.ceoHeading {
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 19px;
  color: #101820;
  line-height: 1.2;
}

.highlight {
  color: #0085ff;
  background: linear-gradient(to right, #0085ff, #1bc1f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ceoLead {
  font-size: 16.5px;
  line-height: 1.8;
  color: #333;
  max-width: 600px;
  margin-bottom: 25px;
}

.ceoQuote {
  font-style: italic;
  font-size: 1.05rem;
  color: #555;
  background: #fbfdff;
  padding: 16px 24px;
  border-left: 4px solid #0085ff;
  border-radius: 8px;
  margin-bottom: 30px;
  max-width: 580px;
}

.ceoSignatureBlock {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.signatureText {
  font-family: 'Allura', cursive;
  font-size: 35px;
  color: #2d2d2d;
  margin-bottom: 5px;
  opacity: 0;
  user-select: none;
  transition: transform 0.3s ease, opacity 1s ease;
  animation: fadeInSignature 1s forwards ease-in-out;
  animation-delay: 1.2s;
}

.signatureText:hover {
  transform: scale(1.05);
  opacity: 1;
}

.ceoPosition {
  font-weight: 600;
  color: #444;
  font-size: 0.98rem;
}

@keyframes fadeInSignature {
  to {
    opacity: 0.9;
    transform: scale(1);
  }
}

@media (max-width: 1024px) {
  .ceoImageLayer {
    max-width: 280px;
  }
  .ceoQuote,
  .ceoLead {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .ceoHero {
    padding: 60px 50px;
  }
  .ceoWrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ceoImageLayer {
    max-width: 300px;
    margin: auto;
  }
  .orb1 { width: 48px; height: 48px; top: -20px; left: -10px; }
  .orb2 { width: 80px; height: 80px; bottom: -30px; right: -20px; }
  .ceoIntro {
    font-size: 12px;
    margin-bottom: 16px;
  }
  .ceoHeading {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
  .ceoLead,
  .ceoQuote {
    font-size: 15px;
  }
  .signatureText {
    font-size: 30px;
    text-align: center;
  }
  .ceoPosition {
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, .floatingOrbs, .ceoImageLayer, .ceoTextBlock.in-view {
    animation: none !important;
    transition: none !important;
  }
}


















/* ----------------------
   TEAM MEMBER SECTION
------------------------- */

  .teamSection {
    background:
    radial-gradient(circle at top left, #cce7ff2c 0%, transparent 70%),
    radial-gradient(circle at bottom right, #f0f8ff 0%, transparent 70%),
    #ffffff;
    color: #333;
    padding: 80px 0;
  }

   .teamSecTitle {
    text-align: center;
    color: #0d1f29; 
    padding-top: 60px;
    font-size: clamp(2rem, 5vw, 42px);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }
  
  .teamSecSub {
    text-align: center;
    padding: 0 24px;
    font-size: 1.125rem;
    color: #606d7d;
    max-width: 700px;
    margin: 18px auto 0;
    line-height: 1.6;
    font-weight: 400;
  }


  .teamContainer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .teamCard {
    position: relative;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .teamCard:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 20px 1px #dee2ff7a;

  }

  .teamRotateBg {
    width: 90%;
    margin-left: 20px;
    opacity: 1;
    object-fit: cover;
    height: auto;
  }

  .teamCard:hover .teamRotateBg {
    opacity: 1;
    transform: rotate(50deg);

  }

  .teamImage {
    width: 80%;
    position: absolute;
    object-fit: cover;
    height: auto;
    transition: transform 0.3s ease;
    border: 3px solid #0084ff07;
    border-radius: 10px;
  }

  .teamCard:hover .teamImage {
    transform: scale(1.05);
  }

  .teamCard h3 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
    margin-top: 25px;
  }

  .teamCard p {
    font-size: 15px;
    color: #545353;
    margin-bottom: 5px;
    line-height: 1.3;
  }


  @media (max-width: 768px) {
    .teamContainer {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .teamCard {
      padding: 15px;
    }


    .teamCard h3 {
      font-size: 15px;
      font-weight: 500;
      line-height: 1.0;
    }

    .teamCard p {
      font-size: 13px;
    }
  }

  @media (max-width: 480px) {
    .teamSecTitle {
      font-size: 28px;
    }

    .teamSecSub {
      font-size: 15px;
    }

    .teamCard h3 {
      font-size: 14px;
    }
  }
  
  
  