@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Rubik:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Carattere&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-family: 'Lato', sans-serif;
  font-family: 'Rubik', sans-serif;
  font-family: 'Nunito', sans-serif;
  font-family: 'Roboto', sans-serif;
}

body {
  /* background: linear-gradient(135deg, #4b117c, #1c1b5f); */
  /* background: #2D1E6B; */
  background: #150e19;
  color: #fff;
  overflow-x: hidden;
}

/* =========================
   ROOT VARIABLES
   ========================= */
:root {
  --primary-color: #0d6efd;
  --secondary-color: #212529;
  --accent-color: #6c757d;
  --light-color: #f8f9fa;
  --dark-color: #000000;
}


.navbar-toggler i {
  color: #fff !important;
}

.offcanvas-header .btn-close {
  color: #fff !important;
}

.btn-close {
  background: red !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 10px;
  height: 10px;
  padding: 0;
}

.btn-close i {
  color: #fff;
  font-size: 13px;
}

/* for all heading  */
.MainHeadingForAllSection {
  padding: 15px 30px;
  border-radius: 50px;
  display: inline-block;
  position: relative;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.068);
  border: 1px solid #dddddd0a;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  /* color: #fff; */
  color: #f6156b;
  font-weight: 600;
  font-family: poppins;
}

/* Animated glow border */
.MainHeadingForAllSection::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  /* background: linear-gradient(90deg,
      #724fff,
      #d873ff,
      #dd00b8,
      #724fff); */
      background: linear-gradient(90deg,
    #150e19,   
    #3b1a36,   
    #662255,  
    #150e19    
);
  filter: blur(10px);
  opacity: 0.7;
  animation: glowPulse 3s linear infinite;
  z-index: -1;
}

@keyframes glowPulse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(50%);
  }
}




/* Default transparent navbar */
#mainNavbar {
  transition: all 0.3s ease;
  background: transparent;
}

/* On scroll */
#mainNavbar.scrolled {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  left: 0;
  top: 0;
  right: 0;
  position: fixed;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@ navbar css start from here @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@  */
.navbar-brand img {
  width: 200px;
}

.navbar-nav .nav-link {
  color: #fff;
  margin: 0 10px;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
}

.navbar-nav .nav-link.active {
  color: #fff;
  font-weight: 600;
}

.btnContactHeader {
  padding: 12px 34px;
  background: #fff;
  border-radius: 30px;
  color: #111;
  text-decoration: none;
  font-weight: 500;
  margin-right: 15px;
}

.btnContactHeader:hover {
  transform: scale(0.95);
  /* zoom OUT slightly */
  background: #fff;
  color: #111;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@ navbar css end here @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */



/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ banner section css  start from here  @@@@@@@@@@@@@@@@@@@ */

.HomeBannerSection {
  /* padding-top: 50px; */
  /* padding-bottom: 12px; */
  position: relative;
   overflow: hidden;
}
/* BUBBLE BACKGROUND */
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: floatAround ease-in-out infinite;
  filter: blur(0.5px);
   z-index: 1;
}

/* COLORS */
.bubble.purple {
  background: radial-gradient(circle, #ff4ecd, #7b5cff);
}

.bubble.white {
  background: rgba(255, 255, 255, 0.9);
}

.bubble.sky {
  background: radial-gradient(circle, #8fd3ff, #3fa9f5);
}

/* FLOATING */
@keyframes floatAround {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(25px, -25px);
  }
  100% {
    transform: translate(-20px, 20px);
  }
}


.HomeSection{
background: url(../images/banner-images/main-background.png);
  background-repeat: no-repeat;
  background-size: cover;
}


.homeBannerSecRight img {
  width: 100%;
  /* margin-top: 30px; */
}



.HomeBannerSection .homeBannerSecLeft h1 {
  font-family: Rubik;
  font-weight: 700;
  font-size: 50px;
  color: #fff;
  letter-spacing: 2px;
  vertical-align: middle;
  padding-top: 150px;
}
.HomeBannerSection .homeBannerSecLeft h1 span{
   /* font-family: 'Carattere', cursive; */
   /* font-size: 50px; */
    /* text-transform: capitalize !important; */
}
.text-gradient {
  background: linear-gradient(90deg,
      #724fff 0%,
      #d873ff 50%,
      #dd00b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 500;
  font-family: Rubik;
  /* text-transform: uppercase; */
    
}

.HomeBannerSection .homeBannerSecLeft p {
  font-family: Lato;
  font-weight: 400;
  color: #fff;
  font-size: 18px;
  padding: 10px 0;
}

.bannerBtn {
  padding: 10px 0;
  display: flex;
  gap: 20px;
}

.bannerBtn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  /* same width for both */
  text-align: center;
  box-sizing: border-box;
}

.bannerBtn .bannerBtnWithBgcolor {
  color: #fff;
  font-size: 15px;
  background: linear-gradient(90deg,
      #724fff 0%,
      #d873ff 50%,
      #dd00b8 100%);
  font-weight: 600;
  text-decoration: none;
  padding: 12px 20px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: rubik;
  transform: skew(-20deg);
}


.bannerBtn .bannerBtnWithoutBgcolor {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-image: linear-gradient(90deg,
      #724fff 0%,
      #d873ff 50%,
      #dd00b8 100%);
  border-image-slice: 1;
  text-transform: uppercase;
  transform: skew(-20deg);
}


.bannerBtn .bannerBtnWithBgcolor:hover {
  box-shadow:
  0 0 2px rgba(114, 79, 255, 0.7),
  0 0 8px rgba(216, 115, 255, 0.55),
  0 0 14px rgba(221, 0, 184, 0.45);

}

.bannerBtn .bannerBtnWithoutBgcolor:hover {
  box-shadow:
  0 0 2px rgba(114, 79, 255, 0.7),
  0 0 8px rgba(216, 115, 255, 0.55),
  0 0 14px rgba(221, 0, 184, 0.45);

}


/* counter in banner  */
.counter-section {
  background: none;
}

.counter-box {
  padding: 10px 0;
  border-radius: 12px;
  background: none;
}

.counter-box h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.counter-box p {
  font-size: 16px;
  margin-top: 10px;
  color: #555;
}


/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ banner section css  end here  @@@@@@@@@@@@@@@@@@@ */


/* Hide offcanvas on desktop */
@media (min-width: 992px) {
  .mobile-offcanvas {
    display: none !important;
  }
}

/* Optional: hide navbar toggler on desktop */
@media (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }
}


/* @@@@@@@@@@@@ toggle for mobile css start herev @@@@@@@@@@@@ */
.mobile-offcanvas {
  width: 100vw !important;
  height: 100vh !important;
  /* Glass / blur effect */
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff !important;
}

.offcanvas-body {
  padding: 30px;
}

.offcanvas-body .nav-link {
  font-size: 20px;
  padding: 12px 0;
}




/* @@@@@@@@@@@@@@@@@@@@@@@@@@@ marque sec start from here @@@@@@@@@@@@@@@@@@@@@@@ */
.star{
  background: linear-gradient(45deg, #724FFF, #D873FF, #DD00B8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 6px rgba(216, 115, 255, 0.6);
  margin-right: 10px;
}
/* STATS */
.stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stats h3 {
  font-size: 28px;
  color: #9f6bff;
}

.stats span {
  font-size: 14px;
  opacity: 0.85;
}

/* IMAGE */
.hero-image img {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}

/* MARQUEE */
.marquee-wrap {
  background: rgba(255, 255, 255, 0.05);
  padding: 18px 0;
  overflow: hidden;
  transform: skewY(0deg);
  border: 1px solid #646161;
  margin-top: 0px;
  /* margin-bottom: 23px; */
}

.marquee {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
}

.marquee span {
  font-weight: 700;
  font-size: 18px;
  font-family: rubik;
  letter-spacing: 2px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* @@@@@@@@@@@@@@@@@@@@@@@@@@ marque sec css end here @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@  */

/* @@@@@@@@@@@@@@@@@@@@ maxtra in number section css start from here  @@@@@@@@@@@@@ */
.maxtraInNumber {
  padding: 20px 0;
}

.maxtraInNumber h2 {
  font-size: 32px;
  letter-spacing: 1px;
  text-transform: capitalize;
  padding-bottom: 10px;
  font-family: rubik;
  font-weight: 700;
  line-height: 38px;
}
.maxtraInNumber h2 span{
   font-family: 'Carattere', cursive;
   font-size: 50px;
}

.maxtraInNumberLeft {
  display: flex;
  gap: 25px;
}

.maxtraInNumberLeftBox {
  border: 1px solid #dddddd3a;
  width: 50%;
  min-height: 385px;
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
  background: rgba(255, 255, 255, 0.096);
  /* white transparent */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.maxtraInNumberLeftBox .counter {
  font-size: 45px;
  font-weight: 800;
  font-family: Nunito;
}

.maxtraInNumberLeftBox img {
  width: 80px;
  margin-bottom: 10px;
}

.maxtraInNumberLeftBox p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: Nunito;
}

.maxtraInNumberRightBox {
  border: 1px solid #dddddd3a;
  min-height: 100px;
  border-radius: 20px;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
  background: rgba(255, 255, 255, 0.096);
  /* white transparent */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.maxtraInNumberRightBox img {
  margin-bottom: 10px;
  width: 50px;
}

.maxtraInNumberRightBox p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: Nunito;
}

.maxtraInNumberRightBox .counter {
  font-size: 45px;
  font-weight: 800;
  font-family: Nunito;
}

.maxtraInNumberRightBox .counter-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.maxtraInNumberRightBox2 {
  border: 1px solid #dddddd3a;
  min-height: 385px;
  border-radius: 20px;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
  background: rgba(255, 255, 255, 0.096);
  /* white transparent */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.maxtraInNumberRightBox2 img {
  margin-bottom: 20px;
  width: 50px;
}

.maxtraInNumberRightBox2 .counter-box {
  transform: rotate(-90deg);
  transform-origin: center;
  display: inline-block;
}

.maxtraInNumberRightBox2 p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: Nunito;
}

.maxtraInNumberRightBox2 .counter {
  font-size: 45px;
  font-weight: 800;
  font-family: Nunito;
}

/* @@@@@@@@@@@@@@@@@@@@ maxtra in number section css end here  @@@@@@@@@@@@@ */

/* @@@@@@@@@@@@@@@@@@@@@@@@@@ DIGITAL SOLUTIONS section css start from here @@@@@@@@@@@@@@@@@@@ */
.digitalSolutions {
  padding: 20px 0;
}

.digitalSolutions h3 {
  font-size: 32px;
  letter-spacing: 1px;
  text-transform: capitalize;
  padding-bottom: 10px;
  font-family: rubik;
  font-weight: 700;
  line-height: 38px;
}
.digitalSolutions h3 span{
   font-family: 'Carattere', cursive;
   font-size: 50px;
}

.digitalSolutionsBox .bannerBtnWithBgcolor {
  color: #fff;
  font-size: 14px;
  background: linear-gradient(90deg,
      #724fff 0%,
      #d873ff 50%,
      #dd00b8 100%);
  font-weight: 600;
  text-decoration: none;
  padding: 12px 20px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  font-family: rubik;
  display: block;
  transform: skew(-20deg);
}

.digitalSolutionsBox .bannerBtnWithBgcolor:hover{
box-shadow:
  0 0 2px rgba(114, 79, 255, 0.7),
  0 0 8px rgba(216, 115, 255, 0.55),
  0 0 14px rgba(221, 0, 184, 0.45);
}


.digitalSolutionsBox {
  border: 1px solid #dddddd3a;
  min-height: 490px !important;
  border-radius: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.096);
  /* white transparent */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.digitalSolutionsBox:hover {
  box-shadow:
    0 0 12px rgba(114, 79, 255, 0.6),
    0 0 24px rgba(216, 115, 255, 0.5),
    0 0 40px rgba(221, 0, 184, 0.45);
}

.digitalSolutionsBox h6 {
  font-family: Rubik;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  padding-top: 20px;
}

.digitalSolutionsBox p {
  font-family: lato;
  font-size: 18px;
  color: #fff;
  padding: 10px 0;
  font-weight: 500;
  justify-content: center;
}

.digitalSolutionsBox img {
  height: 220px !important;
  object-fit: cover;
  border-radius: 10px !important;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@ DIGITAL SOLUTIONS section css end here @@@@@@@@@@@@@@@@@@@ */

/* @@@@@@@@@@@@@@@@@@@@@@ result oriented section start from here @@@@@@@@@@@@@@ */
.typing-text-erase::after {
  content: "|";
  margin-left: 4px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}
.resultOriented {
  padding: 80px 0;
}

.resultOrientedInner {
  border: 1px solid #dddddd3a;
  height: 420px;
  border-radius: 10px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.096);
  /* white transparent */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.roRight {
  padding: 10px 0;
}

.roRight h3 {
  font-size: 40px;
  letter-spacing: 1px;
  text-transform: capitalize;
  padding: 10px 0;
  font-family: rubik;
  font-weight: 700;
}
.roRight h3 span{
 font-family: 'Carattere', cursive;
 font-size: 50px;
}

.roRight .bannerBtnWithBgcolor {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  background: linear-gradient(90deg,
      #724fff 0%,
      #d873ff 50%,
      #dd00b8 100%);
  text-decoration: none;
  padding: 12px 26px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;

  transform: skew(-20deg);
}
.roRight .bannerBtnWithBgcolor:hover{
box-shadow:
  0 0 2px rgba(114, 79, 255, 0.7),
  0 0 8px rgba(216, 115, 255, 0.55),
  0 0 14px rgba(221, 0, 184, 0.45);
}
.roRight p {
  font-size: 18px;
  padding-bottom: 10px;
  font-family: lato;
  font-weight: 500;
  text-align: justify;
}

.roRight i {
  padding-left: 10px;
}

.roLeft img {
  /* height: 494px !important; */
  object-fit: contain;
  /* width: 546px; */
  width: 520px;
  height: 350px;
}

/* @@@@@@@@@@@@@@@@@@@@@@ result oriented section end here @@@@@@@@@@@@@@ */


/* @@@@@@@@@@@@@ case studies section start from here @@@@@@@@@@@@@@@@ */
@keyframes colorLoop {
  0% {
    background-color: #150e19; 
  }
  33% {
    background-color: #3b1a36; 
  }
  66% {
    background-color: #66225549; 
  }
  100% {
    background-color: #150e19; 
  }
}
 

.animated-bg {
  animation: colorLoop 6s ease-in-out infinite;
}
.caseStudies {
  padding: 20px 0;
}

.caseStudies h3 {
  font-size: 32px;
  letter-spacing: 1px;
  /* text-transform: uppercase; */
  padding-bottom: 10px;
  font-family: rubik;
  font-weight: 700;
}
.caseStudies h3 span{
   font-family: 'Carattere', cursive;
   font-size: 50px;
}

.caseStudies p {
  font-size: 18px;
  padding-bottom: 10px;
  font-family: lato;
  font-weight: 500;
  color: #f1f1f1;
}

.caseStudiesInner {
  border: 1px solid #dddddd3a;
  min-height: 100px;
  border-radius: 10px;
  /* padding: 30px; */
  background: rgba(255, 255, 255, 0.096);
  /* white transparent */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.caseStudiesInnerLeft {
  padding: 30px;
}

.caseStudiesInnerLeft h3 {
  font-size: 25px;
  letter-spacing: 1px;
  padding-bottom: 10px;
  font-family: rubik;
  font-weight: 500;
  padding-top: 20px;
}

.caseStudiesInnerLeft p {
  font-size: 17px;
  padding-bottom: 10px;
  font-family: rubik;
  font-weight: 400;
  color: #f1f1f1;
  text-align: justify;
}

.caseStudiesInnerLeft span {
  font-size: 17px;
  padding-bottom: 10px;
  font-family: lato;
  font-weight: 500;
  color: #f1f1f1;
}

.noneulBullet li {
  list-style: none
}

.noneulBullet {
  padding: 0 !important;
  padding-bottom: 40px !important;
}

.caseStudiesInnerLeft .bannerBtnWithBgcolor {
  display: inline-block;
  /* 🔥 IMPORTANT */
  color: #fff;
  font-size: 15px;
  background: linear-gradient(90deg,
      #724fff 0%,
      #d873ff 50%,
      #dd00b8 100%);
  font-weight: 700;
  text-decoration: none;
  padding: 12px 20px;
  text-transform: uppercase;
  font-family: 'Rubik', sans-serif;
  transform: skew(-20deg);
}
.caseStudiesInnerLeft .bannerBtnWithBgcolor:hover{
box-shadow:
  0 0 2px rgba(114, 79, 255, 0.7),
  0 0 8px rgba(216, 115, 255, 0.55),
  0 0 14px rgba(221, 0, 184, 0.45);
}
.rowbgColor {
  border: 1px solid #D9D9D933;
  min-height: 100px;
  border-radius: 10px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.027);
  /* white transparent */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 49%;
}

.caseStudiesInnerRight {
  padding: 0px;
}

.csInnerRightBox2 {
  border: 1px solid #dddddd00;
  min-height: 186px;
  height: 175px;
  border-radius: 10px;
  padding: 10px;
  background: #D187FF33;
}
.csInnerRightBox2:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    background: linear-gradient(135deg, #150e19, #82579b);
}
.csInnerRightBox h3 {
  font-size: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* padding-bottom: 10px; */
  padding-top: 15px;
  font-family: rubik;
  font-weight: 700;
}

.csInnerRightBox2 h6 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  letter-spacing: 1px;
  font-family: Rubik;
  font-weight: 700;
}

.csInnerRightBox2 h6 i {
  font-size: 12px;
  width: 30px;
  height: 30px;
  background: #B43BFF;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
}

.csInnerRightBox2 p {
  font-size: 14px;
  letter-spacing: 1px;
  font-family: lato;
  font-weight: 400;
  color: #f1f1f1;
  line-height: 17px;
  padding-top: 10px;
  /* text-align: justify; */
}

.caseStudiesInnerRight img {
  width: 100%;
  height: 400px;
  border: 2px solid #FFFFFF;
  border-radius: 10px;
}

/* @@@@@@@@@@@@@ case studies section end here @@@@@@@@@@@@@@@@ */

/* **** Our AI Development Services Start *****  */
.Industries {
  padding: 20px 0;
}

.Industries h2 {
  font-size: 32px;
  letter-spacing: 1px;
  text-transform: capitalize;
  padding-bottom: 10px;
  font-family: rubik;
  font-weight: 700;
}
.Industries h2 span{
   font-family: 'Carattere', cursive;
   font-size: 50px;
}
.box-area {
  display: flex;
  gap: 16px;
  width: 100%;
  height: 420px;
}

/* base box */
.box-area .box {
  position: relative;
  flex: 0.7;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: flex 0.6s ease;
}

/* default big (3rd box) */
.box-area .box.active-slider {
  flex: 3;
}

/* hover logic */
.box-area:hover .box {
  flex: 0.7;
}

.box-area .box:hover {
  flex: 3;
}

/* image */
.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.box:hover img,
.box.active-slider img {
  transform: scale(1.05);
}

/* 🔥 ICON */
.box i {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  color: #fff;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  z-index: 3;
  border: 1px solid #fff;
  padding: 5px 10px;
  border-radius: 50px;
}

/* 🔥 HEADING */
.box h4{
  position: absolute;
  top: 24px;
  left: 24px;
  color: #fff;
  font-size: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 3;
  font-family: lato;
  font-weight: 700;
  text-transform: capitalize;
}

/* 👇 show content on active / hover */
.box:hover i,
.box.active-slider i,
.box:hover h4,
.box.active-slider h4 {
  opacity: 1;
  transform: translateY(0);
}

/* overlay for readability */
.box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.box:hover::after,
.box.active-slider::after {
  opacity: 1;
}


@media (max-width: 500px) {
  .vertical-line{
    display: none;
  }
  .box h4 {
    font-size: 12px;
    left: 12px;
  }
  .box i {
    font-size: 6px;
    padding: 7px 8px;
}

  .box-area {
    display: flex;
    flex-direction: row;
    height: 260px;
  }

  .box {
    flex: 1;
    transition: flex 0.5s ease;
  }

  /* ONLY active one expands */
  .box.active-slider {
    flex: 3;
  }

  /* content visible */
  .box h2,
  .box i {
    opacity: 1;
    transform: translateY(0);
  }

  .box::after {
    opacity: 1;
  }
}



/* **** Our AI Development Services End *****  */


/* @@@@@@@@@@@@@@@@@@@@@  blog section css start from here @@@@@@@@@@@@@@@@@@@@@@@@@@ */
.blogSection {
  padding: 20px 0;
}

.blogSection h3 {
  font-size: 35px;
  letter-spacing: 1px;
  text-transform: capitalize;
  padding-bottom: 10px;
  font-family: rubik;
  font-weight: 700;
}
.blogSection h3 span{
   font-family: 'Carattere', cursive;
   font-size: 50px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  min-height: 200px;
}

.blog-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}

.blog-card h5 {
  font-size: 17px;
  margin-bottom: 6px;
  color: #fff;
  background-color: #08123c;
  padding: 10px 14px;
  border-radius: 6px;
  display: inline-block;
}

.blog-card p {
  font-size: 17px;
  color: #111;
  font-family: Roboto;
  font-weight: 600;
  padding: 10px 0;
}

.blog-card span {
  font-size: 14px;
  color: #333;
  font-family: Roboto;
  font-weight: 600;
  padding: 10px 0;
}

/* Nav Buttons */
.blog-nav button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  margin: 0 6px;
  background: linear-gradient(90deg, #724fff, #d873ff, #dd00b8);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.blog-nav button:hover {
  opacity: 0.85;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ blog section css end here @@@@@@@@@@@@@@@@@@@@@ */


/* @@@@@@@@@@@@@@@@@@@@ get in touch section css start from here @@@@@@@@@@@@@@@@@@@ */
.getInTouch {
  /* background: url(../images/getintouch/getintochBackground.png); */
  /* background-image: url(../images/getintouch/GETINTOUCHiMAGE.png); */
  background-image:
    url("../images/getintouch/getintochBackground.png");
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
  height: 200px;
  background-position: bottom;
}

.bg-image-box {
  background-image: url(../images/getintouch/GETINTOUCHiMAGE.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 200px;
  height: 200px;
}

.getInTouchContent {
  padding: 20px;
}

.getInTouchContent h3 {
  font-size: 30px;
  letter-spacing: 1px;
  text-transform: capitalize;
  padding-bottom: 10px;
  font-family: poppins;
  line-height: 40px;
  font-weight: 700;
}


.getInTouch2{
  padding: 30px 0;
}
.getInTouchContent2{
  background: url(../images/cta-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  border-radius: 20px;
}
.getInTouchContent2 h3 {
  font-size: 30px;
  letter-spacing: 1px;
  text-transform: capitalize;
  padding-bottom: 10px;
  font-family: poppins;
  line-height: 40px;
  font-weight: 700;
}


.Getarrow-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: #08123c;
  /* padding: 10px 10px 10px 22px; */
  padding: 5px 10px 5px 22px;
  border-radius: 50px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Right Circle */
.Getarrow-btn .arrow-circle {
  width: 36px;
  height: 36px;
  background: #2C1D66;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* Hover Effect */
.Getarrow-btn:hover {
  transform: translateY(-2px);
}

.Getarrow-btn:hover .arrow-circle {
  transform: translateX(4px);
}

/* @@@@@@@@@@@@@@@@@@@@@@@ get in touch section end here @@@@@@@@@@@@@@@@@@@@@@ */


/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ portfolio section css strat from here @@@@@@@@@@@@@@@@@@@@@@@@ */
.portfolioMain {
  padding: 20px 0;
}

.portfolioMain h3 {
  font-size: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* padding-bottom: 10px; */
  padding-top: 15px;
  font-family: rubik;
  font-weight: 700;
}

/* Portfolio Specific Styles */
.portfolio-wrapper {
  position: relative;
  width: 100%;
  /*padding: 80px 0;*/
  /*background: #0f0f1a; */
  overflow: hidden;
}

.portfolio-nav-menu {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 15px 30px;
  border-radius: 50px;
  display: flex;
  gap: 20px;
  width: max-content;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 25px;
}

.portfolio-nav-item {
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.1);
  /*border: 2px solid transparent;*/
  text-transform: uppercase;
  font-size: 0.9rem;
  color: white;
  border: 1px solid white;
  transform: skew(-20deg);
  border: 1px solid transparent;
  border-image: linear-gradient(to bottom, #6f42ec, #f61fda) 1;
}

.portfolio-nav-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.portfolio-nav-item.active {
  background: linear-gradient(to right, #6f42ec, #f61fda);
  transform: skew(-20deg) !important;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid white !important;
  /*border-image: linear-gradient(to bottom, #6f42ec, #f61fda) 1;*/
  /*border-color: #fff;*/
  transform: scale(1.05);
}

.portfolio-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.portfolio-section {
  position: absolute;
  width: 100%;
  /* height: 100%; */
  top: 0;
  left: 0;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio-section.active {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-slide-container {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-first-div {
  width: 90%;
  max-width: 1140px;
  height: 440px;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)),
    url('../images/portfolio/slide1.png');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  margin: auto;
  padding: 3rem;
  color: #fff;
  text-align: left;
  border-radius: 20px;
  border: 2px solid #fff;
}



/* .portfolio-four { */
.portfolio-first-content h6 {
  font-size: 20px;
  line-height: 1.4;
}

.portfolio-first-content h5 {
  font-weight: 900;
}

.portfolio-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;

}

.portfolio-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.vertical-line {
  width: 1px;
  background: grey;
  height: 55px;
  margin: 0 20px;
}

/* Background variations */
.portfolio-sec {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)),
    url('../images/portfolio/slide2.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

.portfolio-sec-two {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)),
    url('../images/portfolio/slide3.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-sec-three {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)),
    url('../images/portfolio/slide3.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-third {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)),
    url('../images/portfolio/slide4.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-four {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)),
    url('../images/portfolio/slide5.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-five {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)),
    url('../images/portfolio/slide2.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .portfolio-first-div {
    height: 500px;
    padding: 2rem;
  }

  .portfolio-nav-menu {
    flex-wrap: wrap;
    padding: 10px;
  }
}


/* Active state */
.portfolio-nav-item.active {
  color: white;
}

/* Down Arrow */
.portfolio-nav-item.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 8px;
  height: 5px;
  background-color: white;
  border-radius: 0px 0px 20px 20px;
  animation: halfCircleFade 0.3s ease;
}

/* Animation */
@keyframes arrowFade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@ portfolio section css end here @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */




/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ information Details section css start from here @@@@@@@@@@@@@@@@@@ */
.infoDetails {
  background: #fff;
  padding: 30px 0 5px 0;
  
}

.infoDetailsInner img {
  width: 185px;
  margin-top: 20px;
}

.infoDetailsInner h6 {
  color: #111;
  font-family: Rubik;
  font-weight: 600;
  font-size: 18px;
}

.infoDetailsInner p {
  font-size: 14px;
  font-weight: 500;
  font-family: poppins;
  color: #333;
  padding-top: 10px;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ information Details section end from here @@@@@@@@@@@@@@@@@@ */

/* @@@@@@@@@@@@@@@@@@@@@@@@@ footer sction css start from here @@@@@@@@@@@@@@@@@@@@@@@@@@@ */
.footer-bg {
     background-color: rgba(15, 8, 49, 1);
 }

 footer {
     color: rgba(255, 255, 255, 1);
 }

 .new {
     width: 100%;
 }

 .new input {
        border-radius: 0px;
    padding: 12px 10px;
    border: 2px solid transparent;
    border-image: linear-gradient(to bottom, #6f42ec, #f61fda) 1;
    width: 250px;
    font-size: 13px;
    background: transparent;
}
/*.new input {*/
/*    border-radius: 0px;*/
/*    padding: 5px 10px;*/
/*    border: 2px solid transparent;*/
/*    border-image: linear-gradient(to bottom, #6f42ec, #f61fda) 1;*/
/* }*/

 .new button {
     border: 2px solid white;
       padding: 12px 21px;
         font-size: 13px;
 }

 .footer-first {
     background-color: rgba(29, 2, 43, 1);
 }

 .vertical-line {
     width: 1px;
     height: 140px;
     background: rgba(255, 255, 255, 0.5);
     padding-left: 0px;
     padding-right: 0%;
 }

 

 /* .track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 32s linear infinite;
} */
 .track1 {}

 .track1 img {
     height: 30px;
     margin: 10px;
 }

 .explore-btn {
     display: inline-block;
     position: relative;
     padding: 15px 50px;
     color: white;
     text-decoration: none;
 }

 .explore-btn:before {
     position: absolute;
     z-index: -1;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     content: "";
     border: none;
     background: linear-gradient(to right, #6f42ec, #f61fda);
     width: 100%;
     height: 100%;
     transition: .2s;
     -webkit-backface-visibility: hidden;
 }

 .explore-btn h6 {
     font-weight: bold;
     font-size: 20px;
     color: white;
     margin-bottom: 0px;
     text-transform: uppercase;
     background-clip: text;
     -webkit-background-clip: text;
     /* color: transparent; */
     /* -webkit-text-fill-color: transparent; */
 }

 @keyframes marquee {
     from {
         transform: translateX(0);
     }

     to {
         transform: translateX(-50%);
     }
 }

 .footer-links h3 {
     text-transform: uppercase;
     font-family: 'Rubik', sans-serif;
     font-weight: 600;
     font-size: 19px;
 }

 .footer-links ul {
     padding-left: 0%;
     list-style-type: none;

 }

 .footer-links a {
     font-size: 14px;
     color:grey;
     text-decoration: none;
 }
.footer-links a:hover{
    color:white;
}
 .footer-deatil p {
     font-size: 14px;
 }

 .footer-deatil-p p {
     margin-bottom: 5px;
 }

 .footer-deatil-p a {
     text-decoration: none;
     color: white;
 }
 .footer-bg a{
  color: #fff !important;
    text-decoration: none;
 }

 .social-media-links h3 {
     text-transform: uppercase;
     font-family: 'Rubik', sans-serif;
     font-weight: 600;
     font-size: 18px;
 }

 .social-media-icon i {
     padding: 5px 7px;
     font-size: 20px;
     border-radius: 50%;
     border: 1px solid white;
     background-color: white;
     color: rgba(65, 10, 99, 1);
     margin: 3px;

 }

 .footer-links-first {
     padding-left: 20px;
 }

/* @@@@@@@@@@@@@@@@@@@@@@@@@ footer sction end from here @@@@@@@@@@@@@@@@@@@@@@@@@@@ */




/* @@@@@@@@@@@@@@@@@@@@@@@@@ quote section css start from herew @@@@@@@@@@@@@@@@@ */
.quote-box {
  margin: 50px auto;
  padding: 40px 30px;
  border: 1px solid #823aff;
  /* border-radius: 8px; */
  text-align: center;
  color: #fff;
  background-color: rgba(128, 128, 128, 0.2);
}

.quote-box h2 {
  font-size: 30px;
  font-weight: bolder;
  margin-bottom: 5px;
  font-family: 'Roboto', sans-serif;
}

.sub {
  color: white;
  margin-bottom: 25px;
  font-size: 18px;
}

.input-group {
  position: relative;
  margin-bottom: 15px;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 14px 12px 14px 42px;
  /* border-radius: 8px; */
  background: #fff;
  font-size: 14px;
  border-radius: 10px;
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}

.input-group textarea {
  height: 70px;
  resize: none;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 14px 12px 14px 42px;
  /* border-radius: 8px; */
  background: #fff;
  font-size: 14px;
  border-radius: 10px;
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}

.input-group textarea {
  height: 70px;
  resize: none;
}

.input-group .icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #555;
}

.textarea-group .icon {
  top: 30px;
}

.sub-centered-explore-btn3 button {
  /* border: none;
  position: relative;
  text-align: center;
  color: white; */

  display: inline-block;
    color: #fff;
    font-size: 15px;
    background: linear-gradient(90deg, #724fff 0%, #d873ff 50%, #dd00b8 100%);
    font-weight: 700;
    text-decoration: none;
    padding: 12px 20px;
    text-transform: uppercase;
    font-family: 'Rubik', sans-serif;
    transform: skew(-20deg);
    border: none;
}
.sub-centered-explore-btn3 button:hover{
  box-shadow:
  0 0 2px rgba(114, 79, 255, 0.7),
  0 0 8px rgba(216, 115, 255, 0.55),
  0 0 14px rgba(221, 0, 184, 0.45);
}


.sub-centered-explore-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15px;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@ quote section css end here @@@@@@@@@@@@@@@@@ */


/* @@@@@@@@@@@@@@@@@@@@@ testimonial section css start from here @@@@@@@@@@@@@@@@@@@@@@@ */
/* Force dots to be visible */
.testimonial-section .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.testimonial-section .owl-dot span {
  width: 12px;
  height: 12px;
  background: #aaa;
  /* visible color */
  display: block;
  border-radius: 50%;
  margin: 5px;
  transition: 0.3s;
}

.testimonial-section .owl-dot.active span {
  background: #ff00c8;
  /* active dot color */
}


.testimonial-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #555;
  text-transform: uppercase;
}

.section-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: #666;
  font-size: 16px;
}

.testimonial-slider {
  position: relative;
  /* overflow: hidden; */
  margin: 0 auto;
}

.testimonial-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-group {
  display: flex;
  min-width: 100%;
  gap: 30px;
  /* padding-top: 40px;
            position: relative; */
}

.top-icon {
  padding-top: 40px;
  position: relative;
}

.testimonial-slide {
  flex: 1;
  padding: 40px;
  background-color: rgba(128, 128, 128, 0.2);
  ;
  border: 1px solid #FFFFFF33;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  min-height: 335px;
  position: relative;
  overflow: visible !important;
}



/* .testimonial-slide .owl-carousel.owl-drag .owl-item{
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 40px 0 0px !important;
   overflow: visible !important;
} */
 .testimonial-section {
  overflow-x: hidden;
}
.testimonial-section .owl-stage-outer {
  overflow: visible !important;
}

/* Owl item should not clip */
/* 3️⃣ Allow card to let image escape */
/* ✅ ONLY testimonial section carousel */



.stars {
  margin-bottom: 20px;
  font-size: 24px;
  color: white;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: white;
  text-align: justify;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.client-avatar{
 display: flex;
  gap: 20px;
}
.client-avatar img{
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: bold;
  color: #6c757d;
  font-size: 20px;
 
}

.client-details h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: white;
}

.client-details p {
  color: white;
  font-size: 14px;
}

.slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.slider-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-dot.active {
  background: linear-gradient(to right, #6f42ec, #f61fda);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  display: none;
}

.arrow {
  background-color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s;
}

.arrow:hover {
  background-color: #f0f0f0;
}

/* Mobile view - single column */
@media (max-width: 768px) {
  .resultOriented {
    padding: 30px 0;
}
  .testimonial-group {
    flex-direction: column;
  }

  .section-header h1 {
    font-size: 28px;
  }

  .testimonial-slide {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 16px;
  }
}

/* .test-img {
  position: absolute;
  top: -30px;          
  right: 30px;       
  height: 100%;
   z-index: 10;         
  pointer-events: none;
} */

.test-img {
  position: absolute;
  top: -30px;
  right: 0px;
  height: 100%;
   transform: translateX(-50%);
   z-index: 2;
}

.test-img img {
  width: 80px !important;
}


.testimonial-section {
  max-width: 1200px;
  margin: 0 auto;
  /*background-color: #14050b;*/
  padding: 60px 20px;
  position: relative;
  /* This is important to position the image relative to the section */
}

.testimonial-section img {
  width: 60px;
  height: auto;
  /*border-radius: 50%;*/
}

.client-avatar img {
  border-radius: 50%;
}

.verified {
  position: relative;
  /* right: -130px; */
  color: white;
  font-size: 12px;
  display: flex;
}

/* .verified img {
  height: 20px;
  width: 20px;
  margin-right: 5px;
} */

/* tick icon */
.verified span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("../images/testimonial/verfied.png") no-repeat center;
  background-size: contain;
}

.verified span {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  font-weight: 500;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  color: rgb(221, 218, 218);
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

hr .hr-tag {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}



.testimonialMain {
  padding-top: 50px;
}

.testimonialMain h2 {
  color: #fff;
  text-transform: capitalize;
  font-family: Rubik;
  font-weight: 500;
  /* line-height: 20px; */
  font-size: 35px;
}
.testimonialMain h2 span{
   font-family: 'Carattere', cursive;
   font-size: 50px;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@ testimonial section css end here @@@@@@@@@@@@@@@@@@@@@@@@ */


/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ technology section css start from here @@@@@@@@@@@@@@@ */
.technology-section {
  padding: 20px 0 30px;
  /* background: linear-gradient(
    135deg,        
    #3b1a36ab 0%,    
    #150e19 100%   
); */
}

.tech-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
}

.technology-section h2 {
  font-size: 32px;
  letter-spacing: 1px;
  /* text-transform: uppercase; */
  padding-bottom: 10px;
  font-family: rubik;
  font-weight: 700;
}
.technology-section h2 span{
   font-family: 'Carattere', cursive;
   font-size: 50px;
}
/* LEFT */
.tech-left {
  width: 45%;
}

.tech-left h5 {
  color: #b7b7ff;
}

.tech-left h2 span {
  color: #ff4fd8;
}

.tech-buttons {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* grid-template-columns: 1fr; */
  gap: 15px;
}

.tech-btn {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #883e7d;
  background: none;
  cursor: pointer;
  font-weight: 600;
  font-size: Rubik;
  font-size: 14px;
  font-weight: 500;
  color: #fff; 
  text-align: left;
}
.tech-btn h3{
  text-align: left;
  font-size: 18px;
}
.tech-btn p{
  text-align: left;
  font-size: 13px !important;
  font-weight: 400 !important;
  text-transform: capitalize;
}

/* .tech-btn.active {
  color: #fff;
  border: 2px solid transparent;
    border-image: linear-gradient(90deg, #724fff 0%, #d873ff 50%, #dd00b8 100%);
    border-image-slice: 1;
    text-transform: uppercase;
    background: none;
    border-radius: 8px !important;
} */
.tech-btn.active {
  width: 100%;
  display: block;
  background: #fff !important;
  text-transform: uppercase;
  /* background: url(../images/technology/technology-btn.png) center no-repeat; */
  background-size: 100% 100%;
  border-radius: 8px;
  min-height: 56px;
  color: #000;
}
.tech-btn.active h3{
  color: #662255;
}


/* RIGHT */
.tech-right {
  width: 50%;
  display: flex;
  justify-content:end;
}

.main-tech {
  position: relative;
  width: 420px;
  height: 420px;
}

/* CIRCLES */
.big-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
border: 2px solid #fff;
  /* border: 2px solid rgba(255, 255, 255, 0.6); */
  /* 👈 visible circle */

  animation: rotate 25s linear infinite;
}

.circle {
  position: absolute;
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;

  border: 2px solid rgba(255, 255, 255, 0.4);
  /* 👈 visible circle */

  animation: rotateReverse 18s linear infinite;
}

/* ICON */
.icon-block {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-block img {
  width: 60%;
  animation: Rotate-reverse 20s linear infinite;
}

/* CENTER */
.center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.center-content img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
}

/* ANIMATIONS */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateReverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

/* @@@@@@@@@@@@@@@@@ technology section end here @@@@@@@@@@@@@@@@@@@@@@@@@ */



/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image img {
    margin: 40px auto 0;
  }

  .stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  nav {
    display: none;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero {
    padding: 60px 0 30px;
  }

  .btn-primary,
  .btn-outline {
    display: block;
    margin: 12px auto;
    width: fit-content;
  }

  .stats {
    gap: 25px;
  }

  .stats h3 {
    font-size: 24px;
  }

  .marquee span {
    font-size: 14px;
  }

  .bannerBtn .bannerBtnWithBgcolor {
    font-size: 12px;
    padding: 12px 10px;
  }

  .bannerBtn .bannerBtnWithoutBgcolor {
    font-size: 12px;
    padding: 12px 10px;
  }

  .bannerBtn a {
    min-width: 127px;
  }

  .HomeBannerSection .homeBannerSecLeft p {
    font-size: 12px;
  }
  .HomeBannerSection .homeBannerSecLeft .counter-box p {
    font-size: 10px;
  }

  .maxtraInNumberRightBox .counter {
    padding-top: 13px;
  }
}















/* =========================================================
   GLOBAL RESPONSIVE FIXES
========================================================= */

/* Prevent horizontal scroll on all devices */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}


/* =========================================================
   LARGE TABLETS (≤ 1200px)
========================================================= */
@media (max-width: 1200px) {

  .tech-wrapper {
    gap: 30px;
  }

  .main-tech {
    width: 360px;
    height: 360px;
  }

  .circle {
    width: 240px;
    height: 240px;
  }

  .icon-block {
    width: 52px;
    height: 52px;
  }
}


/* =========================================================
   TABLETS (≤ 992px)
========================================================= */
@media (max-width: 992px) {

  /* TECHNOLOGY SECTION */
  .tech-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .tech-left,
  .tech-right {
    width: 100%;
  }

  .tech-buttons {
    grid-template-columns: 1fr 1fr;
    justify-content: center;
  }

  .main-tech {
    width: 320px;
    height: 320px;
  }

  .circle {
    width: 220px;
    height: 220px;
  }

  .icon-block {
    width: 48px;
    height: 48px;
  }

  .center-content img {
    width: 120px;
    height: 120px;
  }

  /* BANNER */
  .HomeBannerSection .homeBannerSecLeft h1 {
    font-size: 38px;
  }
.homeBannerSecRight{
    z-index: 2;
}
  .homeBannerSecRight img {
    width: 380px;
    margin: auto;
  }

  /* MAXTRA SECTION */
  /* .maxtraInNumberLeft {
    flex-direction: column;
  } */

  .maxtraInNumberLeftBox {
    width: 100%;
    min-height: auto;
    padding: 30px;
  }
}


/* =========================================================
   MOBILE (≤ 768px)
========================================================= */
@media (max-width: 768px) {
  .homeBannerSecRight img {
    width: 100%;
    margin-top: -38px !important;
  }

  .navbar-brand img {
    width: 115px;
  }

  /* TECHNOLOGY SECTION */
  .technology-section {
    padding: 20px 0;
  }

  .tech-left h2 {
    font-size: 26px;
  }

  .tech-buttons {
    grid-template-columns: 1fr;
  }

  .tech-btn {
    padding: 14px;
    font-size: 14px;
  }

  .main-tech {
    width: 260px;
    height: 260px;
  }

  .circle {
    width: 180px;
    height: 180px;
  }

  .icon-block {
    width: 42px;
    height: 42px;
  }

  .center-content img {
    width: 100px;
    height: 100px;
  }

  /* BANNER */
  .HomeBannerSection {
    padding: 30px 0;
  }

  .HomeBannerSection .homeBannerSecLeft h1 {
    font-size: 22px;
  }

  .bannerBtn {
    /* flex-direction: column; */
    align-items: center;
  }

  /* DIGITAL SOLUTIONS */
  .digitalSolutionsBox img {
    height: 120px !important;
    width: 100%;
  }

  /* CASE STUDIES */
  .caseStudiesInner {
    margin-bottom: 20px;
  }

  /* TESTIMONIAL */
  .testimonial-slide {
    padding: 25px;
  }
}







/* =========================================================
   SMALL MOBILE (≤ 480px)
========================================================= */
@media (max-width: 480px) {

  /* TECHNOLOGY */
  .main-tech {
    width: 220px;
    height: 220px;
  }

  .circle {
    width: 150px;
    height: 150px;
  }

  .icon-block {
    width: 36px;
    height: 36px;
  }

  .icon-block img {
    width: 60%;
  }

  .center-content img {
    width: 80px;
    height: 80px;
  }

 
 

  /* FOOTER */
  .footerSec {
    text-align: center;
  }

  .footerSocialIcons {
    justify-content: center;
  }
}


.homeBannerSecLeft .counter-section{
  padding-top: 50px;
}
.digitalSolutionsCarousel{
  display: none;
}
@media (max-width: 767px) {

  /* ================= NAV + DOTS WRAPPER ================= */

  .digitalSolutionsCarousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }

  /* DOT STYLE */
  .digitalSolutionsCarousel .owl-dot span {
    width: 8px;
    height: 8px;
    background: #cfcfcf;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  /* ACTIVE DOT */
  .digitalSolutionsCarousel .owl-dot.active span {
    background: #000000;
    transform: scale(1.2);
  }

  /* ================= NAV BUTTONS ================= */

  .digitalSolutionsCarousel .owl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
  }

  .digitalSolutionsCarousel .owl-nav button {
    background: #ffffff !important;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #000000 !important;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .digitalSolutionsCarousel .owl-nav button:hover {
    background: #f2f2f2;
  }

  .digitalSolutionsCarousel .owl-nav button:focus {
    outline: none;
  }
}


@media (max-width: 767px) {
  .technology-section .tech-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
}


@media (max-width: 767px) {

  .Industries .box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* ICON – center but thoda upar */
  .Industries .box i {
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
  }

  /* HEADING – ALWAYS visible, vertical bottom → top */
  .Industries .box h4 {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);

    writing-mode: vertical-rl;     /* real vertical text */
    text-orientation: mixed;

    white-space: nowrap;
    margin: 0;
    text-align: center !important;
    font-size: 15px;
    font-weight: 600;

     opacity: 1;           /* hamesha visible */
  visibility: visible;
  display: block;
  }

  .Industries .box.active-slider h4 {
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  text-align: center !important;
}
}

.maxtraInNumberLeftBox {
  position: relative;
  /* background: linear-gradient(
    180deg,
    rgba(46, 24, 114, 0.85) 0%,   
    rgba(46, 24, 114, 0.45) 25%,
    rgba(255, 255, 255, 0.096) 60%,
    rgba(255, 255, 255, 0.096) 100%
  ); */
  background: linear-gradient(
    180deg,
    rgba(21, 14, 25, 0.95) 0%,    
    rgba(21, 14, 25, 0.75) 30%,    
    rgba(72, 42, 90, 0.3) 60%,     
    rgba(255, 255, 255, 0.05) 100% 
);
}
.maxtraInNumberRightBox{
   position: relative;
  /* background: linear-gradient(
    180deg,
    rgba(46, 24, 114, 0.85) 0%,  
    rgba(46, 24, 114, 0.45) 25%,
    rgba(255, 255, 255, 0.096) 60%,
    rgba(255, 255, 255, 0.096) 100%
  ); */
  background: linear-gradient(
    180deg,
    rgba(21, 14, 25, 0.95) 0%,     
    rgba(21, 14, 25, 0.75) 30%,    
    rgba(72, 42, 90, 0.3) 60%,     
    rgba(255, 255, 255, 0.05) 100% 
);
}

.maxtraInNumberRightBox2{
   position: relative;
  /* background: linear-gradient(
    180deg,
    rgba(46, 24, 114, 0.85) 0%,   
    rgba(46, 24, 114, 0.45) 25%,
    rgba(255, 255, 255, 0.096) 60%,
    rgba(255, 255, 255, 0.096) 100%
  ); */
  background: linear-gradient(
    180deg,
    rgba(21, 14, 25, 0.95) 0%,     
    rgba(21, 14, 25, 0.75) 30%,    
    rgba(72, 42, 90, 0.3) 60%,     
    rgba(255, 255, 255, 0.05) 100% 
);
}

@media (max-width: 768px) {

  /* parent section */
  /* .testing-portfolio-section {
    min-height: 100vh;
    height: 100vh;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
  } */
   .testing-portfolio-section {
    min-height: 700px !important;
    height: 700px !important;
     /* overflow: hidden; */
  }

   
  /* pin state */
  .testing-portfolio-section.testing-pinned {
    height: 70vh !important;
    min-height: 70vh !important;
    padding: 0 !important;
  }

  /* slides absolute hain – ensure no extra flow */
  .testing-slide {
    margin: 0 !important;
  }
}


.quote-now-img img{
  width: 450px;
  margin-top: 45px;
}






/* =======================
   SECTION
======================= */
.priyaAiTabs-section{
  padding:20px;
  background:#150e19;
  overflow:hidden;
}

/* =======================
   TABS
======================= */
.priyaAiTabs-tabs{
  margin-bottom:16px;
}

/* VERY IMPORTANT */
.priyaAiTabs-tabs .owl-item{
  pointer-events:auto;
}

.priyaAiTabs-tab{
  position:relative;
  background:transparent;
  border:none;
  color:#9cc9ff;
  font-size:13px;
  padding:10px 16px;
  white-space:nowrap;
  cursor:pointer;
  pointer-events:auto; /* 🔥 click enable */
}

/* underline hidden */
.priyaAiTabs-tab::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:0;
  height:2px;
  background:#ffffff;
  transform:translateX(-50%);
  transition:width 0.3s ease;
}

/* ACTIVE TAB */
.priyaAiTabs-tab.is-active{
  color:#ffffff;
}

.priyaAiTabs-tab.is-active::after{
  width:70%;
}

/* =======================
   CARDS
======================= */
.priyaAiTabs-card{
  background: #2E1872;
  border-radius:22px;
  padding:20px;
  color:#ffffff;
}

.priyaAiTabs-logo{
  width:80px !important;
  margin-bottom:14px;
}
.oneCard{
  background: linear-gradient(
      rgba(0,0,0,0.6),
      rgba(0,0,0,0.6)
    ), url(../images/portfolio/slide1.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.twoCard{
  background: linear-gradient(
      rgba(0,0,0,0.6),
      rgba(0,0,0,0.6)
    ), url(../images/portfolio/slide2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.threeCard{
  background: linear-gradient(
      rgba(0,0,0,0.6),
      rgba(0,0,0,0.6)
    ), url(../images/portfolio/slide3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.fourCard{
  background: linear-gradient(
      rgba(0,0,0,0.6),
      rgba(0,0,0,0.6)
    ), url(../images/portfolio/slide4.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.fiveCard{
  background: linear-gradient(
      rgba(0,0,0,0.6),
      rgba(0,0,0,0.6)
    ), url(../images/portfolio/slide5.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.sixCard{
  background: linear-gradient(
      rgba(0,0,0,0.6),
      rgba(0,0,0,0.6)
    ), url(../images/portfolio/slide1.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.priyaAiTabs-text{
  font-size:13px;
  line-height:1.5;
}

/* features */
.priyaAiTabs-features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin:14px 0;
}

.priyaAiTabs-features div{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:12px;
}

/* button */
.priyaAiTabs-btn{
  display:block;
  text-align:center;
  background:#ffffff;
  color:#0b3c7a;
  padding:10px;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
}

/* ===== DESKTOP → HIDE ===== */
.priyaAiTabs-section{
  display:none;
}

/* ===== MOBILE → SHOW ===== */
@media (max-width: 768px){
  .priyaAiTabs-section{
    display:block;
  }
}

/* ===============================
   WHITE DOTS – ALL VISIBLE
================================ */
.priyaAiTabs-cards .owl-dots{
  display: flex !important;
  justify-content: center;
  margin-top: 16px;
}

.priyaAiTabs-cards .owl-dot{
  width: 8px;
  height: 8px;
  background: #ffffff !important;
  border-radius: 50%;
  margin: 0 6px;
  opacity: 0.6;
}

.priyaAiTabs-cards .owl-dot.active{
  width: 22px;
  border-radius: 12px;
  background: #ffffff !important;
  opacity: 1;
}







@media screen and (max-width: 500px) {
  .testimonialMain p{
    font-size: 9px;
  }
  .blogSection p{
    font-size: 12px;
  }
  .technology-section p{
    font-size: 12px;
  }
  .testimonialMain h2 span {
    font-size: 30px;
}
  .blogSection h3 span {
    font-size: 30px;
}
  .technology-section h2 span {
    font-size: 35px;
}
  .caseStudies h3 span {
    font-size: 38px;
}
  .roRight h3 span {
    font-size: 25px;
}
  .Industries p{
    font-size: 12px;
  }
  .testing-title span {
    font-size: 27px !important;
}
  .Industries h2 span {
    font-size: 27px;
}
  .HomeBannerSection .homeBannerSecLeft h1 span {
    font-size: 27px;
}
.maxtraInNumber h2 span {
    font-size: 25px;
}
.digitalSolutions h3 span {
    font-size: 27px;
}
.digitalSolutions p{
  font-size: 12px;
}
.maxtraInNumber p{
  font-size: 12px;
}
  .getInTouchContent2 h3 {
    font-size: 17px;
    line-height: 23px;
}
  #testingPortfolioSection{
    display: none;
  }
  .bg-color img {
  width: 200px;
  display: block;
  margin: 0 auto;   /* 👈 left & right center */
}
  .client-avatar {
    display: flex;
    gap: 0px;
}
  .digitalSolutionsBox .bannerBtnWithBgcolor {
    color: #fff;
    font-size: 12px;
  }
  #digitalSolDesktop{
    display: none;
  }
  
  .maxtraInNumberLeftBox img {
    width: 25px;
    margin-bottom: 0px;
    margin-top: 20px;
}
.maxtraInNumberLeftBox .counter {
    font-size: 25px;
}
    .maxtraInNumberLeftBox {
        width: 100%;
        min-height: auto;
        padding: 10px 30px;
    }
    .maxtraInNumberRightBox img {
    margin-bottom: 0px;
    width: 25px;
    margin-top: 20px;
}
.maxtraInNumberRightBox .counter {
    font-size: 25px;
}
.maxtraInNumberRightBox p {
    font-size: 13px;
    padding-top: 10px;
}
.maxtraInNumberRightBox2 {
    min-height: 160px;
}
.maxtraInNumberRightBox2 img {
    margin-bottom: 0px;
    width: 25px;
}
.maxtraInNumberRightBox2 .counter {
    font-size: 25px;
}
.maxtraInNumberRightBox2 p {
    font-size: 13px;
}
.maxtraInNumberRightBox {
    padding: 0px;
}
.maxtraInNumberLeftBox p {
    font-size: 13px;
}
  .maxtraInNumberLeft {
  display: flex !important;
  gap: 25px;
}
  .caseStudiesInnerLeft ul{
    padding: 0 !important;
  }
  .tech-right {
  width: 100%;
  display: flex;
  justify-content:center !important;
}
  .marquee-wrap {
    margin-top: 0px;
    margin-bottom: -23px;
}
  .homeBannerSecLeft .counter-section {
    padding-top: 25px;
}
  .HomeBannerSection .homeBannerSecLeft h1{
    padding-top: 5px;
  }
  .quote-box {
    padding: 25px 20px;
  }
  .testing-overlay-content p{
    font-size: 12px !important;
  }
  .testing-overlay-logo img {
    width: 62px !important;
    margin-bottom: 15px !important;
}
  .infoDetailsInner img {
    width: 160px;
    margin-top: 5px;
}
.client-details p {
    font-size: 11px;
}
  .client-details h3{
    font-size: 14px !important;
    padding-top: 10px;
  }
  .testimonialMain h2{
    font-size: 21px;
  }
  .testimonial-text{
    font-size: 14px !important;
    line-height: 1.5;
  }
  .rowbgColor {
    width: 86%;
        margin-left: 25px !important;
        margin-bottom: 15px;;
        padding: 15px;
  }
  .csInnerRightBox2 h6 {
    font-size: 16px;
}
.caseStudiesInnerLeft .bannerBtnWithBgcolor {
    font-size: 12px;
}
  .caseStudies p {
    font-size: 12px;
    padding-top: 0;
  }
  .testing-info-box span{
    font-size: 13px !important;
  }
  .testing-info-box strong{
    font-size: 10px !important;
  }
  .testing-overlay-btn{
    font-size: 10px !important;
  }
  .digitalSolutions h3 {
    font-size: 18px !important;
        line-height: 25px !important;
  }
  .maxtraInNumber h2 {
    font-size: 23px;
  }

  .box-area {
    height: 245px !important;

  }
  .subheadeingCasestudy{
    font-size: 17px !important;
  }
  .csInnerRightBox2 {
    min-height: 147px;
    height: 140px;
  }
.Industries h2 {
    font-size: 22px;
}
.digitalSolutionsBox p {
    font-size: 13px;
    padding: 0px;
}
.digitalSolutionsBox h6 {
    font-size: 18px;
}
.digitalSolutionsBox {
    min-height: 334px !important;
}
  .roLeft img {
    height: 105px !important;
        object-fit: cover;
        width: 125px;
  }
  .roRight {
    padding: 15px 0;
}
.roRight p {
    font-size: 13px;
    padding-bottom: 0px;
    font-family: lato;
    font-weight: 500;
    justify-content: center;
}
.testing-tab {
        padding: 4px 2px !important;
        font-size: 5px !important;
    }
    .testing-tabs {
    gap: 5px !important;
        margin-bottom: 30px;
    }
    .testing-overlay-content{
      left: 0 !important;
      right: 0 !important;
    }

  .resultOrientedInner {
    padding: 15px;
  }

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

  .caseStudiesInnerLeft ul li {
    font-size: 13px;
  }

  .caseStudiesInnerRight img {
    width: 100%;
    height: 175px;
  }

  /* .bg-color img {
   width: 100%;
    height: 300px;
  } */
  .quote-box h2{
    font-size: 23px;
  }
.sub {
    margin-bottom: 15px;
    font-size: 15px;
}
.blogSection h3 {
    font-size: 25px;  
    padding-bottom: 0px;
}
.testimonialMain {
    padding-top: 35px;
}
  .submit-btn img {
    height: 40px;
    width: 150px;
  }

  .getInTouchContent {
    padding: 20px;
  }

  .new input {
    border-radius: 0px;
    padding: 12px 10px;
    border: 2px solid transparent;
    border-image: linear-gradient(to bottom, #6f42ec, #f61fda) 1;
    width: 155px;
    font-size: 10px;
    background: transparent;
  }
.new button {
    border: 2px solid white;
    padding: 12px 21px;
    font-size: 10px;
}
  .testimonial-slide {
    padding: 25px;
    min-height: 360px;
  }
  .infoDetailsInner p {
    font-size: 13px;
  }
  .caseStudiesInnerLeft h3{
    padding-top: 0;
  }
  .caseStudies h3 {
    font-size: 23px;
  }
  .caseStudiesInnerLeft h3{
    font-size: 18px !important;
    padding: 0 !important;
  }
  .caseStudiesInnerLeft span {
    font-size: 13px;
    font-weight: 600;
  }
.roRight h3 {
    font-size: 21px;
}
    .testing-title {
        font-size: 26px !important;
    }
  .client-avatar {
    width: 180px;
  }

  .portfolio-first-content h6 {
    font-size: 14px;
    line-height: 1.4;
  }

  .portfolio-btn {
    display: inline-block;
    margin-top: 25px;
    font-size: 13px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  }

  .portfolio-nav-menu {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    /* 👈 2 buttons per row */
    gap: 12px !important;
    width: 100%;
    padding: 12px;
    justify-items: center;
  }

  .portfolio-nav-item {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
  }

  .getInTouchContent h3 {
    font-size: 14px !important;
        line-height: 20px;
  }

  .maxtraInNumberRightBox2 {
    margin-top: 20px;
  }
      .tech-left h2 {
        font-size: 23px;
        padding-bottom: 0px !important;
    }
    .getInTouch {
    /* height: 387px; */
    height: 200px;
}
.footerSecInner h4{
  font-size: 20px;
}
}



/* glow effect  */
/* Header glow */
/* .sticky-top {
  position: relative;
  overflow: hidden;
}

.sticky-top::before {
  content: "";
  position: absolute;

  top: -420px;
  left: -420px;

  width: 1300px;
  height: 1300px;

  background: url("../images/gloweffect.png") no-repeat center;
  background-size: cover;

  border-radius: 50%;
  opacity: 0.6;
  filter: blur(90px);  
  pointer-events: none;

  z-index: 0;
} */


.sticky-top {
  position: relative;
  overflow: hidden;
}

.sticky-top::before {
  content: "";
  position: absolute;

  /* Push glow outside */
  top: -500px;
  left: -500px;

  /* 🔥 Very large circle */
  width: 700px;
  height: 1500px;

  /* 🎨 COLOR GLOW */
  background: radial-gradient(circle,
  rgba(50, 5, 12, 0.55) 0%,
  rgba(50, 5, 12, 0.40) 25%,
  rgba(50, 5, 12, 0.25) 45%,
  rgba(50, 5, 12, 0.12) 60%,
  transparent 72%
);


  border-radius: 50%;
  filter: blur(110px);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

/* Keep navbar content above glow */
#mainNavbar {
  position: relative;
  z-index: 1;
}




.HomeBannerSection {
  position: relative;
  overflow: hidden;
}

.HomeBannerSection::before {
  content: "";
  position: absolute;

  /* Push glow outside */
  top: -700px;
  left: -500px;

  /* 🔥 Very large circle */
  width: 1000px;
  height: 1500px;

  /* 🎨 COLOR GLOW */
 background: radial-gradient(circle,
  rgba(50, 5, 12, 0.55) 0%,
  rgba(50, 5, 12, 0.40) 25%,
  rgba(50, 5, 12, 0.25) 45%,
  rgba(50, 5, 12, 0.12) 60%,
  transparent 72%
);


  border-radius: 50%;
  filter: blur(110px);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}






.testimonialMain {
  position: relative;
  overflow: hidden;
}

.testimonialMain::before {
  content: "";
  position: absolute;

  /* Push glow outside */
  top: -700px;
  right: -700px;

  /* 🔥 Very large circle */
  width: 1000px;
  height: 1500px;

  /* 🎨 COLOR GLOW */
  background: radial-gradient(circle,
  rgba(50, 5, 12, 0.55) 0%,
  rgba(50, 5, 12, 0.40) 25%,
  rgba(50, 5, 12, 0.25) 45%,
  rgba(50, 5, 12, 0.12) 60%,
  transparent 72%
);


  border-radius: 50%;
  filter: blur(110px);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}



.bg-color {
  position: relative;
  overflow: hidden;
}

.bg-color::before {
  content: "";
  position: absolute;

  /* Push glow outside */
  top: -800px;
  left: -500px;

  /* 🔥 Very large circle */
  width: 1000px;
  height: 1500px;

  /* 🎨 COLOR GLOW */
  background: radial-gradient(circle,
  rgba(50, 5, 12, 0.55) 0%,
  rgba(50, 5, 12, 0.40) 25%,
  rgba(50, 5, 12, 0.25) 45%,
  rgba(50, 5, 12, 0.12) 60%,
  transparent 72%
);


  border-radius: 50%;
  filter: blur(110px);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}





.technology-section {
  position: relative;
  overflow: hidden;
}

.technology-section::before {
  content: "";
  position: absolute;

  /* Push glow outside */
  bottom: -700px;
  left: -500px;

  /* 🔥 Very large circle */
  width: 1300px;
  height: 1600px;

  /* 🎨 COLOR GLOW */
  background: radial-gradient(circle,
  rgba(50, 5, 12, 0.55) 0%,
  rgba(50, 5, 12, 0.40) 25%,
  rgba(50, 5, 12, 0.25) 45%,
  rgba(50, 5, 12, 0.12) 60%,
  transparent 72%
);


  border-radius: 50%;
  filter: blur(110px);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}


.HomeBannerSection {
  position: relative;
  overflow: hidden;
}

.HomeBannerSection::before {
  content: "";
  position: absolute;

  /* Push glow outside */
  top: -700px;
  left: -500px;

  /* 🔥 Very large circle */
  width: 1000px;
  height: 1500px;

  /* 🎨 COLOR GLOW */
 background: radial-gradient(circle,
  rgba(50, 5, 12, 0.55) 0%,
  rgba(50, 5, 12, 0.40) 25%,
  rgba(50, 5, 12, 0.25) 45%,
  rgba(50, 5, 12, 0.12) 60%,
  transparent 72%
);


  border-radius: 50%;
  filter: blur(110px);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}


.digitalSolutions {
  position: relative;
  overflow: hidden;
}

/* LEFT GLOW */
/* .digitalSolutions::before {
  content: "";
  position: absolute;
  top: -700px;
  left: -600px;

  width: 700px;
  height: 1500px;

  background: radial-gradient(circle,
      rgba(221, 0, 184, 0.55) 0%,
      rgba(221, 0, 184, 0.30) 25%,
      rgba(221, 0, 184, 0.15) 45%,
      rgba(221, 0, 184, 0.08) 60%,
      transparent 72%);

  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
} */

/* RIGHT GLOW */
.digitalSolutions::after {
  content: "";
  position: absolute;
  top: -1000px;
  right: -600px;

  width: 800px;
  height: 2300px;

 background: radial-gradient(circle,
  rgba(50, 5, 12, 0.55) 0%,
  rgba(50, 5, 12, 0.40) 25%,
  rgba(50, 5, 12, 0.25) 45%,
  rgba(50, 5, 12, 0.12) 60%,
  transparent 72%
);


  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

/* Content above glow */
.digitalSolutions>* {
  position: relative;
  z-index: 1;
}




.Industries {
  position: relative;
  overflow: hidden;
}

.Industries::before {
  content: "";
  position: absolute;

  /* Push glow outside */
  top: -400px;
  left: -500px;

  /* 🔥 Very large circle */
  width: 1300px;
  height: 1500px;

  /* 🎨 COLOR GLOW */
  background: radial-gradient(circle,
  rgba(50, 5, 12, 0.55) 0%,
  rgba(50, 5, 12, 0.40) 25%,
  rgba(50, 5, 12, 0.25) 45%,
  rgba(50, 5, 12, 0.12) 60%,
  transparent 72%
);


  border-radius: 50%;
  filter: blur(110px);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}






.resultOriented {
  position: relative;
  overflow: hidden;
}

/* RIGHT GLOW */
.resultOriented::after {
  content: "";
  position: absolute;
  top: -800px;
  right: -600px;

  width: 800px;
  height: 1800px;

  background: radial-gradient(circle,
  rgba(50, 5, 12, 0.55) 0%,
  rgba(50, 5, 12, 0.40) 25%,
  rgba(50, 5, 12, 0.25) 45%,
  rgba(50, 5, 12, 0.12) 60%,
  transparent 72%
);


  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none; 
  z-index: 0;
}

/* Content above glow */
.digitalSolutions>* {
  position: relative;
  z-index: 1;
}






/* testin portfolio section  */

/* =========================
   RESET + BASE
========================= */


/* =========================
   PORTFOLIO SECTION
========================= */
.testing-portfolio-section {
  height: 760px;
  /* height: 125vh; */
  padding: 20px 0 !important; 
  position: relative;
  /* background: #2d1e6b; */
  background:#150e19;
}

.testing-container {
  width: 85%;
  margin: auto;
}

/* =========================
   TITLE
========================= */
.testing-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 35px;
  font-family: Rubik;
     text-transform: capitalize !important;

}

.testing-title span {
  color: #8b5cf6;
   font-family: 'Carattere', cursive;
   font-size: 50px;
   text-transform: capitalize !important;
}

/* =========================
   TABS
========================= */
.testing-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.testing-tab {
  padding: 12px 26px;
  /* border-radius: 30px; */
  background: transparent;
 border: 1px solid transparent;
    border-image: linear-gradient(90deg, #724fff 0%, #d873ff 50%, #dd00b8 100%);
    border-image-slice: 1;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: skew(-20deg);
}

.testing-tab:hover,
.testing-tab.active {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  border-color: transparent;
  transform: skew(-20deg);
}

/* =========================
   CARD WRAPPER
========================= */
.testing-card {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;
}

/* =========================
   IMAGE SCROLL BOX
========================= */
.testing-image-wrapper {
  height: 480px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
    border: 1px solid #fff;
}

/* =========================
   EACH SLIDE (FULL BG IMAGE)
========================= */
.testing-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: translateY(100%);
  transition: transform 0.12s linear;
}

.testing-slide.active {
  transform: translateY(0);
}

/* =========================
   DARK OVERLAY
========================= */
.testing-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.15));
  z-index: 1;
}

/* =========================
   TEXT ON IMAGE
========================= */
.testing-overlay-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  width: 100%;
  top: 60px;
}

.testing-overlay-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.testing-overlay-content p {
  font-size: 30px;
  line-height: 1.2;
  color: #e5e7eb;
  font-family: roboto !important;
  font-weight: 400;
  text-align: justify;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .testing-image-wrapper {
    height: 420px;
  }

  .testing-overlay-content {
    left: 25px;
    bottom: 25px;
  }

  .testing-title {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .testing-image-wrapper {
    height: 375px;
  }

  .testing-overlay-content h3 {
    font-size: 22px;
  }

  .testing-overlay-content p {
    font-size: 14px;
  }

  .testing-tab {
    padding: 10px 20px;
    font-size: 13px;
  }
}


/* SECTION PIN */
.testing-portfolio-section.testing-pinned {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

/* IMAGE WRAPPER MUST ACCEPT SCROLL */
.testing-image-wrapper {
  pointer-events: auto;
}

/* TABS MUST BE CLICKABLE */
.testing-tabs,
.testing-tab {
  pointer-events: auto;
  z-index: 1000;
}


/* SKIP TAB */
.testing-skip-tab {
  background: transparent;
  border: 1px dashed #fff;
  opacity: 0.8;
}

.testing-skip-tab:hover {
  background: #fff;
  color: #000;
}

/* NEVER BLANK */
.testing-slide {
  opacity: 0;
}

.testing-slide.active {
  opacity: 1;
}



.testing-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.testing-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  /* 👈 overlay ke upar */
  color: #fff;
  max-width: 420px;
}

.testing-content h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

.testing-content p {
  opacity: 0.9;
  line-height: 1.6;
}

.testing-slide {
  will-change: transform;
  backface-visibility: hidden;
}






/* ===============================
   OVERLAY CONTENT WRAPPER
================================ */
.testing-overlay-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;

  z-index: 5;
  width: 100%;
  padding: 0 40px;

  color: #fff;
  box-sizing: border-box;
}

/* ===============================
   LOGO
================================ */
.testing-overlay-logo img {
  width: 110px;
  margin-bottom: 18px;
}

/* ===============================
   DESCRIPTION
================================ */
.testing-overlay-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #e6e6e6;
  margin-bottom: 26px;
}

/* ===============================
   INFO ROW
================================ */
.testing-overlay-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}

/* ===============================
   INFO BOX
================================ */
.testing-info-box {
  padding-right: 24px;
}

.testing-info-box:not(:last-child) {
  border-right: 2px solid rgba(255, 255, 255, 0.3);
}
.testing-info-box span {
  display: block;
  font-size: 19px;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 400;
  font-family: Roboto;
  padding: 10px 0;
}

.testing-info-box strong {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  font-family: Roboto;
}

/* ===============================
   CTA BUTTON
================================ */
.testing-overlay-btn {
 display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 26px;
border-radius: 999px;
border: 2px solid rgba(255, 255, 255, 0.5);

/* 🔥 WHITE BLUR GLOW */
box-shadow:
  0 0 30px rgba(255, 255, 255, 0.35),
  0 0 60px rgba(255, 255, 255, 0.15),
  rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
  rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;

color: #ffffff;
text-decoration: none;
font-size: 15px;
background: rgba(0, 0, 0, 0.35);
backdrop-filter: blur(10px);
transition: all 0.35s ease;
font-weight: 600;
font-family: roboto;
  
}

.testing-overlay-btn:hover {
  background: linear-gradient(135deg, #ff4ecd, #7b61ff);
  border-color: transparent;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .testing-overlay-content {
    left: 20px;
    right: 20px;
    bottom: 24px;
    max-width: 100%;
  }

  .testing-overlay-info {
    gap: 10px;
  }
}






