.logo-img {
    width: 140px;
}
h2.services-size {
    font-size: 2.5rem;
}

p.text-justify-welcome-top {
    padding-top: 20px;
}

.h2-faq{
    padding-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 36px;
}
.h2-faq{
    padding-bottom: 36px;
}

footer {
    background: #061429 !important;
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

/* start scroll brand gletus */
   .tech-section-logo {
      background-color: black !important;
      text-align: center;
      padding: 75px 20px;
    }

    .tech-section-logo h2 span {
      color: #00bfff;
    }

    .tech-section-logo p {
      color: #ffffff !important;
      max-width: 700px;
      margin: 10px auto 40px;
      font-size: 16px;
    }

/* end scroll brand gletus */

    .services-list {
      text-align: justify;
      padding-top: 10px;
      color: #716f6f;
      font-size: 14px;
    }

    .services-list span {
      margin: 0 5px;
      display: inline-block;
    }

    .highlight {
      color: orange;
    }

/* start latest-news */
.latest-news {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.latest-news h2 {
  font-size: 2.5rem;
}

.latest-news .highlight {
  color: #00acee;
}

.latest-news .subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.news-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: left;
}

.news-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.news-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.news-card .date {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.news-card p {
  font-size: 15px;
  color: #444;
}

.news-card .read-more {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 15px;
  background: #e0f4ff;
  color: #00acee;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
}

/* start testimonial */

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  height: 320px; /* 🔹 fixed height */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* keeps text top + client-info bottom */
}

.testimonial-text {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* show max 5 lines */
  -webkit-box-orient: vertical;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.client-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #000, #0a0a0a);
  color: white;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 2.5rem;
  color: white;
}

.testimonial-section h2 span {
  color: #00acee;
}

.subtitle {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 40px;
}

.testimonial-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonial-scroll-container::-webkit-scrollbar {
  display: none; /* hide scrollbar */
}

.testimonial-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.03);
}

.stars {
  color: #ff9529;
  font-size: 18px;
  margin-bottom: 10px;
}

.logo {
  width: 100px;
  margin: 0 auto 15px;
}

.testimonial-text {
  text-align: justify;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.client-photo {
  width: 40px !important;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}


/* start faq */
.faq-section {
  padding: 50px 110px;
  text-align: center;
}

.sub-title {
  color: #00acee;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

h2 {
  font-size: 2rem;
  color: #0b0b3b;
  /* margin-bottom: 40px; */
}

.faq-columns {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.faq-column {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #f4f5f8;
  border-radius: 5px;
  overflow: hidden;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question {
  background: #f4f5f8;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  position: relative;
  width: 100%;
  text-align: left;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-question.active::after {
  content: '-';
}

.faq-answer {
  display: none;
  padding: 10px 20px 20px;
  font-size: 14px;
  color: #555;
}


/* start ux */
.ux-section {
  padding: 50px 20px;
  text-align: center;
  background: #f8f9fc;
}

.ux-section h2 {
  font-size: 2rem;
  color: #1a1a1a;
}

.ux-section h2 span {
  color: #007bff;
}

.ux-section p {
  max-width: 700px;
  margin: 10px auto 40px;
  font-size: 1rem;
  color: #555;
}

.ux-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.ux-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: 0.3s ease;
}

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

.ux-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.ux-card h4 {
  margin: 10px 0;
  font-size: 1.1rem;
  color: #222;
}

.ux-card p {
  font-size: 0.95rem;
  color: #555;
}

.ux-card a {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 15px;
  color: #000;
  border: 1px solid #000;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.ux-card a:hover {
  background-color: #000;
  color: #fff;
}

/* start industry */

.industries {
  padding: 50px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #fff8f0, #fce6f4);
}

.industries h2 {
  font-size: 2.5rem;
  /* color: #1d1d1d; */
  margin-bottom: 10px;
}

.industries p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #666;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.industry-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 15px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.industry-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}

.industry-card span {
  font-weight: 600;
  color: #2a2a2a;
}


/* end industry */




.result-color {
    font-size: 40px !important;
    font-family: fantasy;
}
h2.why-choose.why-choose-font.theme-text {
    font-weight: 700;
    font-family: cursive;
}

.theme-text {
    color: #050748 !important;
}
.theme-bg {
    background-color: #050748 !important;
}

.text-black {
color: #000 !important;
}
.text-white {
color: #ffffff !important;
}
/* start why choose us */
.why-choose-font {
  font-size: 2rem;
  text-align: center;
  margin-top: 40px;
}

h2.why-choose {
  color: #00bfff;
}

p.why-choose {
  justify-self: center;
  text-align: center !important;
  max-width: 873px;
  margin: 10px 20px 30px;
  font-size: 1.2rem;
  color: #ffffff;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
  margin: 30px auto;
  max-width: 1215px;
}

.stat-box {
  border: 2px groove #0075b1;
  background: #050f23;
  padding: 20px 40px;
  border-radius: 10px;
  text-align: center;
  width: 200px;
  box-shadow: 0 0 37px rgb(0 103 137 / 20%);
}

.stat-box h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.technology {
  background-image: linear-gradient(176deg, #000000 0%, #050748 100%);
  /* background-color: black; */
  background-color: #111;
  padding: 50px 20px;
  margin-top: 30px;
}

.tech-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 65px;
  max-width: 1131px;
  margin: auto;
}

.card {
  border: 3px groove #0c0a10;
  /* border: groove; */
  background: #000000;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 11px #357edc;
}

.card h4 {
  text-align: center;
  color: #00bfff;
  margin-bottom: 10px;
  font-size: 1.2rem;
}


/* end why choose us */

  /* start scroll brand gletus */
   .tech-section {
      background-color: aliceblue;
      text-align: center;
      padding: 75px 20px;
    }

    .tech-section h2 span {
      color: #00bfff;
    }

    .tech-section p {
      color: #000000;
      max-width: 700px;
      margin: 10px auto 40px;
      font-size: 16px;
    }

    .logo-strip {
      overflow: hidden;
      position: relative;
      width: 100%;
      /* background: #fff; */
      padding: 10px 0;
    }

    .logo-track {
      display: flex;
      width: max-content;
      animation: scroll 5s linear infinite;
    }
     .logo-track-brand {
      display: flex;
      width: max-content;
      animation: scroll 5s linear infinite;
    }
     .logo-track-brand {
      display: flex;
      width: max-content;
      animation: scroll 20s linear infinite;
    }

    .logo-track-brand img {
      height: 147px !important;
      margin: 0 30px;
      background: #e0e4ff;
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0 0 5px rgba(0,0,0,0.05);
    }
  .logo-track img {
      height: 71px;
      margin: 0 30px;
      background: #e0e4ff;
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0 0 5px rgba(0,0,0,0.05);
    }
    @keyframes scroll {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .logo-track img {
        height: 40px;
        margin: 0 20px;
      }
 .logo-track-brand img {
        height: 40px;
        margin: 0 20px;
      }
    }
    /* end scroll  brand */

section.services-section-bg {
    /* margin-bottom: 50px; */
    margin-top: 50px;
    background-image: linear-gradient(90deg, #000000 0%, #050748 100%);
    background-color: black;
}
p.text-color-white {
    color: white;
}
a.btn.btn-dark {}

a.btn.btn-dark-center {
    align-self: center;
    width: fit-content;
}
h3.serices {
    font-family: auto;
    font-size: 45px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 22px;
}
.services-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
a.btn.btn-dark:hover {
    background-color: green;
}
a.btn.btn-dark {
    background-color: #050748;
}
.image-icon {
    display: inline-flex;
    border-radius: 100%;
    background: #f5f7ff;
    width: 60px;
    height: 60px;
    align-items: center;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 385px;
  display: flex;
  flex-direction: column;

  padding-bottom: 20px;
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img {
  width: 100%;
  height: 240px;
  /* object-fit: cover; */
}

h3 {
  padding: 10px 20px 0;
  margin: 0;
  color: #1e1e1e;
}

.tags {
  padding: 0 20px;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.icons {
  padding: 0 20px;
  font-size: 22px;
  color: #4a90e2;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.description {
  text-align: justify;
  padding: 0 20px;
  font-size: 14px;
  color: #444;
  flex-grow: 1;
}

.read-more {
  padding: 0 20px;
  text-decoration: none;
  color: #28a745;
  font-weight: bold;
  margin-top: auto;
}

.prasss p
{
margin:0 !important;
color:#fff !important;
font-size:14px !important;
}
.prasss
{
    padding:5px 0 !important;
   
}
span.welcome {
    font-size: 16px;
    color: #050748;
}
.text-center {
    text-align: center !important;
}

.bgcclrssd
{
    background-color:#00000026 !important;
}
.logosssd img
{
width:126px !important;
}
.listssd  li a:hover{
    font-weight:700 !important;
}
.listssd  li a{
    margin:0 30px !important;
    color:#fff;
    font-size:18px;


}
#mainHeader {
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.listssd 
{
    float:right;
}
.mrgin30ss
{
    margin-top: -84px;
}
.py-60
{
    padding-top:60px;
    /* padding-bottom:60px; */
}
.py-20
{
    padding-top:20px;
    /* padding-bottom:20px; */
}
.py-40
{
    padding-top:40px;
    /* padding-bottom:40px; */
}
.py-80
{
    padding-top:80px;
    /* padding-bottom:80px; */
}
.bgcblck h3{
        font-size: 45px;
    font-weight: 700;
    color: #2b2b2b;
}
.bgcblck
{
    box-shadow:1px 2px 3px 4px #d4d4d4 !important;
    padding:20px;
    background-color:#fafafa !important;
}
.sticky-top
{
    background-color:#000;
}
.wdsssd  a
{
    font-weight:700 !important;
    color:#000;
}
.wdsssd h3 a
{
    font-weight:600 !important;
    color:#000;
    text-decoration: none;
}
.wdsssd  p
{
    margin:10px  0 !important;
    font-size:14px;
    color:#000;
}
.wdsssd h3{
    font-size:16px !important;
    font-weight:600 !important;
    margin-bottom:0 !important;
}
.wdsssd img
{
width:100% !important;
}

.bgcwhit
{
    background-color:#fff !important;
    padding:10px;
}

.bgcabut a
{
    padding:10px 20px;
    color:#fff !important;
    background-color:#000 !important;

}


.bgcimgsssd img
{
    width:100% !important;
}
.bgcabut p
{
    font-size:16px !important;
}
.bgcabut h3
{
        font-family: 'FontAwesome';
        font-size: 45px;
        color: #050748;
        text-transform: uppercase;
        font-weight: 900;
        margin-bottom: 22px;
}

.listfutr li a
{
color:#fff !important;
font-size:16px !important;

text-transform: uppercase;
}

.pb-80
{
    padding-bottom:80px;
}

.listfutr li{
    list-style:none !important;
    line-height:40px;
}


.bgcdrksssd
{
    background-color:#484848 !important;

}
.lgggfutr ol
{
 margin-top:20px;
 display:inline-block;
}
.lgggfutr ol  li
{
    float:left;
    margin:0 10px;
    border-radius:100%;
    height:40px;
    line-height:40px;
    width:40px;
    border:1px solid #fff !important;
    list-style:none !important;
}
.lgggfutr ol  li a
{ 
    color:#fff !important;
}
.lgggfutr ul  li
{
list-style:none !important;
margin:15px 0 !important;
font-size:20px;
color:#fff !important;
}

.lgggfutr img
{
width:150px;
margin:0 auto !important;
}
/* end header section */
/* start footer section */
.futmenusss li
{
list-style:none !important;
float:left;
text-transform: uppercase;
margin:0 20px !important;

}
.futmenusss
{
    margin:0 !important;
}
.futmenusss li a:hover
{
    text-decoration: none !important;
}
.futmenusss li a
{
    color:#fff !important;
    font-size:14px !important;
} 
.pt-80
{
    padding-top:80px !important;
}
.py-20
{
    padding-top:20px;
    /* padding-bottom:20px; */
}
.brddtop 
{
    border-top:1px solid #fff !important;
}
/* end footer section */


@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1200px;
    }
}




h3.welcome-blue.text-center {
    color: #050748;
    font-size: 23px;
    font-weight: 700;
}

.col-lg-5.bgcimgsssd {
    align-content: center;
}

.text-justify {
    text-align: justify !important;
}

.text-justify-welcome {
    text-align: center !important;
}

.about-padding {
    padding-bottom: 60px;
    padding-top: 60px;
}

.welcome-padding {
    padding-top: 60px;
}
.prasss p
{
margin:0 !important;
color:#fff !important;
font-size:14px !important;
}
.prasss
{
    padding:5px 0 !important;
   
}
span.welcome {
    font-size: 16px;
    color: #00acee;
}
.text-center {
    text-align: center !important;
}

.bgcclrssd
{
    background-color:#00000026 !important;
}
.logosssd img
{
width:126px !important;
}
.listssd  li a:hover{
    font-weight:700 !important;
}
.listssd  li a{
    margin:0 30px !important;
    color:#fff;
    font-size:18px;


}
#mainHeader {
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.listssd 
{
    float:right;
}
.mrgin30ss
{
    margin-top: -84px;
}
.py-60
{
    /* padding-top:10px !important; */
    padding-bottom:60px;
}
.py-20
{
    padding-top:20px;
    /* padding-bottom:20px; */
}
.py-40
{
    padding-top:40px;
    /* padding-bottom:40px; */
}
.py-80
{
    padding-top:80px;
    /* padding-bottom:80px; */
}
.bgcblck h3{
        font-size: 45px;
        font-weight: 700;
        color: #050748;
}
.bgcblck
{
    padding-top: 0px !important;
    box-shadow:1px 2px 3px 4px #d4d4d4 !important;
    padding-left: 20px !important;
    background-color: #aed7ff66 !important;
    padding-right: 20px !important;
    padding-bottom: 20px !important;
}
.sticky-top
{
    background-color:#000;
}
.wdsssd  a
{
    font-weight:700 !important;
    color:#000;
}
.wdsssd h3 a
{
    font-weight:600 !important;
    color:#000;
    text-decoration: none;
}
.wdsssd  p
{
    margin:10px  0 !important;
    font-size:14px;
    color:#000;
}
.wdsssd h3{
    font-size:16px !important;
    font-weight:600 !important;
    margin-bottom:0 !important;
}
.wdsssd img
{
width:100% !important;
}

.bgcwhit
{
    background-color:#fff !important;
    padding:10px;
}

.bgcabut a
{
    padding:10px 20px;
    color:#fff !important;
    background-color:#000 !important;

}


.bgcimgsssd img
{
    width:100% !important;
}
.bgcabut p
{
    font-size:16px !important;
}
.bgcabut h3
{
        padding: 10px 0px 0;
        font-family: auto;
        font-size: 45px;
        color: #050748;
        text-transform: uppercase;
        font-weight: 900;
        margin-bottom: 22px;
}

.listfutr li a
{
color:#fff !important;
font-size:16px !important;

text-transform: uppercase;
}

.pb-80
{
    padding-bottom:80px;
}

.listfutr li{
    list-style:none !important;
    line-height:40px;
}


.bgcdrksssd
{
    background-color:#484848 !important;

}
.lgggfutr ol
{
 margin-top:20px;
 display:inline-block;
}
.lgggfutr ol  li
{
    float:left;
    margin:0 10px;
    border-radius:100%;
    height:40px;
    line-height:40px;
    width:40px;
    border:1px solid #fff !important;
    list-style:none !important;
}
.lgggfutr ol  li a
{ 
    color:#fff !important;
}
.lgggfutr ul  li
{
list-style:none !important;
margin:15px 0 !important;
font-size:20px;
color:#fff !important;
}

.lgggfutr img
{
width:150px;
margin:0 auto !important;
}
/* end header section */
/* start footer section */
.futmenusss li
{
list-style:none !important;
float:left;
text-transform: uppercase;
margin:0 20px !important;

}
.futmenusss
{
    margin:0 !important;
}
.futmenusss li a:hover
{
    text-decoration: none !important;
}
.futmenusss li a
{
    color:#fff !important;
    font-size:14px !important;
} 
.pt-80
{
    padding-top:80px !important;
}
.py-20
{
    padding-top:20px;
    padding-bottom: 40px !important;
}
.brddtop 
{
    border-top:1px solid #fff !important;
}
/* end footer section */

/* old */
.SliderArea{background-image:url('../image/top-background.jpeg');min-height:100vh;position:relative;background-size:cover;display: flex;align-items: center;padding: 0 50px;}


.topText {
    text-align-last: center;
    font-size: 84px;
    font-weight: 900;
    display: inline-block;
    background: linear-gradient(90deg, #af6dff 0, #ff448e 25%, #ff9d57 50%, #ff38d3 75%, #00ffdc 100%);
    background-size: cover;
    background-position: center;
   
    background-clip: text;
    color: transparent;
 
}

.gradiColor {
    text-shadow: -1px 1px #050748;
    text-align-last: center;
    font-size: 45px;
    font-weight: 900;
    display: inline-block;
    background: linear-gradient(
340deg, #9d003a 0, #858200 25%, #ab0000 50%, #fb00ff 75%, #204540 100%);
    background-size: cover;
    background-position: center;
    background-clip: text;
    color: transparent;
}

.topTextBelow {
    margin-bottom: 20px;
    text-align-last: left;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    margin-top: 16px;
    padding:0;
    display:block;
}

.topTextNormal {
    margin-top: 85px;
    font-size: 45px;
    font-weight: 900;
    display: inline-block;
   
    max-width: 82%;
    color: white;
}
.getintouch{
    
color: white;
    
background-color: transparent;
    
font-family: "Inter", Sans-serif;
    
font-size: 21px;
    
font-weight: 400;
    
line-height: 40px;
    
background-image: linear-gradient(90deg, #7900FF 0%, #FF8B00 100%);
    
border-style: solid;
    
border-width: 2px 2px 2px 2px;
    
border-color: #FFFFFF;
    
border-radius: 60px 60px 60px 60px;
    
padding: 13px 45px 13px 45px;
}




@media only screen and (max-width: 768px)
{
    #mainHeader
    {
        background-color:#000 !important;
    }

    .text-justify-welcome {
    text-align: justify !important;
}

h3.welcome-blue.text-center {
    color: #050748;
    font-size: 13px;
    font-weight: 700;
}

.gradiColor {
    text-align-last: center;
    font-size: 27px;
    font-weight: 900;
    display: inline-block;
    background: linear-gradient(90deg, #af6dff 0, #ff448e 25%, #ff9d57 50%, #ff38d3 75%, #00ffdc 100%);
    background-size: cover;
    background-position: center;
    background-clip: text;
    color: transparent;
}

.topTextBelow {
    margin-bottom: 20px;
    text-align-last: left;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    margin-top: 16px;
    padding:0;
    display:block;
}
    
.welcome-padding {
    padding-top: 1px !important;
}
.about-padding {
    padding-top: 10px !important;
}


.prasss
{
    background-color:#5b5b5b;
    padding-left:15px !important;
    padding-right:15px !important;
}


.bgcabut h3
{
    padding: 10px 0px !important;
    font-size:32px !important;
    margin-top:30px;
}


.bgcimgsssd
{
    margin:30px 0 !important;
}

.mblsssright
{
    position:relative;
    text-align:left !important;
}
.mblmnusssd 
{
    position:absolute;
    background-color:#000;
    left:0 !important;
    width:100%;
    
}
.psinsssnd button
{
    position:absolute;
    right: 0;
}
.psinsssnd button
{
    top:30% !important;
}
.psinsssnd
{
    position:relative;
}

.mblmnusssd
{
    
}

.listssd
{
    width:100% !important;
}


.prasss p
{
    font-size:12px !important;
}
.mrgin30ss
{
    margin-top:0 !important;
}
.mblsssright
{
    text-align:right;
}
 #mainHeader i
 {
    color:#fff !important;
 }


 .topText {
    text-align-last: center;
    font-size: 40px;
    font-weight: 900;
    display: inline-block;
    background: linear-gradient(90deg, #af6dff 0, #ff448e 25%, #ff9d57 50%, #ff38d3 75%, #00ffdc 100%);
    background-size: cover;
    background-position: center;

    background-clip: text;
    color: transparent;
   
}

.topTextBelow {
    margin-bottom: 20px;
    text-align-last: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    margin-top: 16px;
    padding:0;
    display:block;
}

.topTextNormal {
    text-align: center;
    margin-top: 0px;
    font-size: 25px;
    font-weight: 900;
    display: inline-block;
 
    max-width: 100%;
    color: white;
}
.getintouch{
    
padding: 13px 46px 13px 45px;
    
background-color: transparent;
    
font-family: "Inter", Sans-serif;
    
font-size: 12px;
    
font-weight: 400;
    
line-height: 40px;
    
background-image: linear-gradient(90deg, #7900FF 0%, #FF8B00 100%);
    
border-style: solid;
    
border-width: 2px 2px 2px 2px;
    
border-color: #FFFFFF;
    
padding: 13px 30px 13px 45px;
    
padding: 13px 45px 13px 45px;
}

.py-60
{
    padding-top:10px !important;
    /* padding-bottom:60px; */
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 385px;
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  margin-right: 10px;
  padding-bottom: 20px;
  transition: transform 0.2s ease;
}
.brand-size {
    font-size: 27px;
}
.SliderArea{background-image:url('../image/top-background.jpeg');min-height: 44vh;max-height: -107vh;position:relative;background-size:cover;display: flex;align-items: center;padding: 0 23px;}

.tech-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1131px;
    margin: auto;
}

.stats {
    display: flex
;
    justify-content: center;
    gap: 27px;
    flex-wrap: wrap;
    margin: 30px auto;
    max-width: 1215px;
}
.stat-box {
    background: #1b1b1b;
    padding: 0px 0px;
    border-radius: 10px;
    text-align: center;
    width: 145px;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
}
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 15px;
    /* max-width: 1000px; */
    margin: 0 auto;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;
}


.latest-news h2 {
  font-size: 2rem;
}
.testimonial-section h2 {
  font-size: 2rem;
  color: white;
}

h2.services-size {
    padding-top: 40px;
    color: #0b0b3b;
    font-size: 1.9rem;
}

h3.serices {
    font-family: auto;
    font-size: 31px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 22px;
}
p.why-choose {
  max-width: 873px;
  margin: 10px 20px 30px;
  font-size: 1.2rem;
  color: #ffffff;
}

.industries h2 {
  font-size: 2rem;
  color: #0b0b3b;
  margin-bottom: 10px;
}
.faq-section {
  padding: 40px 20px;
  text-align: center;
}

section.services-section-bg {
    /* margin-bottom: 50px; */
    margin-top: 10px;
    background-image: linear-gradient(90deg, #000000 0%, #050748 100%);
    background-color: black;
}

}
/* end mobile responsive section */

