* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Manrope', sans-serif;
}
html {
  scroll-behavior: smooth;
}

.container {
  width: 85%;
  margin: auto;
}
.navbar {
  position: sticky;
  top: 0;
  height: 6rem;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
  z-index: 1000;
}
.menuIcon{
    display: none;
}
.subNavMob {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 6rem);
    background: #000000;
    z-index: 1;
    margin-top: 6rem;
    padding: 2rem 10%;
    display: none; 
    flex-direction: column;
    gap: 3rem;
    opacity: 0; 
    transform: translateY(-20px); 
    transition: opacity 0.3s ease, transform 0.3s ease; 
}
.subNavMob.active {
    display: flex; 
    opacity: 1; 
    transform: translateY(0); 
}
.navbar.hidden {
  transform: translateY(-6rem);
}
.navbar.scrolled {
  background: #000000;
}
.navbarContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
}
/* .navItems{
    display: flex;
    gap: 3rem;
    font-size: 14px;
    font-weight: 500px;
    line-height: 19.12px;
    color: #fff;
    align-items: start;
} */

.navItems {
  display: flex;
  gap: 4rem;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.12px;
  color: #fff;
  align-items: start;
  width: 80%;
  justify-content: flex-end;
}
.navItems p {
  cursor: pointer;
}

.hero {
  /*background: url('assets/Hero.png') no-repeat;*/
  background-size: cover;
  height: 100vh;
  margin-top: -6rem;
  position: relative;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*filter: blur(15px); */
  z-index: -1; /* Send the blurred background behind the content */
}
.heroContainer {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.heroContainer2 {
  display: flex;
  /* /* align-items: center; */
  /* padding-top: 102px; */
}

.heroText {
  width: 550px;
  height: 285px;
}

.herohead {
  color: #fff;
  font-weight: bold;
  font-size: 45px;
}

.heropara {
  font-size: 23px;
  line-height: 57.4px;
  color: #d7d7d7;
  font-weight: 300;
}
.heropara2 {
  font-size: 15px;
  color: #d8d5d5;
  line-height: 25.5px;
  font-weight: 400;
  text-align: justify;
}

.buttons {
  margin-top: 28px;
  display: flex;
  gap: 1rem;
}

.herobutton {
  cursor: pointer;
  padding-left: 74px;
  padding-right: 74px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-radius: 30.16px;
  border: 1px solid #d6b15f;
  background: none;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.herobutton:hover {
  /*padding-left: 74px;*/
  /*padding-right: 74px;*/
  /*padding-top: 16px;*/
  /*padding-bottom: 16px;*/
  /*border-radius: 30.16px;*/
  background: #d6b15f;
  /*color: #fff;*/
  /*font-size: 16px;*/
  /*line-height: 24px;*/
  /*font-weight: 700;*/
}
/*=================================*/
/*.moving-circles {*/
/*  background-color: #000000;*/
/*  margin: 0;*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  visibility: visible;*/
/*  overflow: hidden;*/
/*}*/

.moving-circles {
  background-image: url('./assets/hero6.png');
  background-size: cover;
  background-position: top; 
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: visible;
  overflow: hidden;
}

@media (max-width: 768px) {
    .moving-circles {
        filter: brightness(0.5) !important;
    }
    .messageForm.container {
    display: flex !important;
    flex-direction: column-reverse !important;
}
}

.circle1,
.circle2,
.circle3,
.circle4,
.circle5,
.circle6,
.circle7,
.circle8,
.circle9,
.circle10 {
  border-radius: 50%;
  position: absolute;
  background: rgba(180, 45, 153, 0.2);
  pointer-events: none; /* Prevent interaction with the circles */
  -webkit-filter: blur(20px);
  -moz-filter: blur(20px);
  -o-filter: blur(20px);
  filter: blur(20px);
}

.circle2 {
  width: 150px;
  height: 150px;
  background: #4133ff33;
}

.circle3 {
  width: 200px;
  height: 200px;
  background: #9300ff33;
}

.circle4 {
  width: 250px;
  height: 250px;
  background: #0035ff33;
}

/*.circle5 {*/
/*  width: 130px;*/
/*  height: 130px;*/
/*  background: rgba(100, 29, 134, 0.45);*/
/*}*/

/*.circle6 {*/
/*  width: 200px;*/
/*  height: 200px;*/
/*  background: rgba(220, 29, 134, 0.75);*/
/*}*/

/*.circle7 {*/
/*  width: 80px;*/
/*  height: 80px;*/
/*  background: rgba(40, 210, 134, 0.34);*/
/*}*/

/*.circle8 {*/
/*  width: 180px;*/
/*  height: 180px;*/
/*  background: rgba(150, 29, 134, 0.75);*/
/*}*/

/*.circle9 {*/
/*  width: 100px;*/
/*  height: 100px;*/
/*  background: rgba(36, 210, 134, 0.55);*/
/*}*/

/*.circle10 {*/
/*  width: 500px;*/
/*  height: 500px;*/
/*  background: rgba(180, 180, 180, 0.25);*/
/*}*/
.heroImageDiv img {
  height: 55vh;
}
.heroimgK{
    border-radius: 16px;
    width: 100%;
}
.heroContainerTextMain {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-right: 20px;
}
/*====================================*/

.about {
  background: url('./assets/aboutBanner.png') no-repeat;
  background-size: cover;
  height: auto;
  padding: 0 0 6rem 0;
}
.aboutContainerMain{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.aboutContainer {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.aboutHeading {
    padding: 4rem 0;
    color: #ffffff;
    text-align: center;
}
/*======= About ===========*/

.aboutCardContainer{
    display: grid;
    grid-template-columns: 1fr 1fr ;
    gap: 2rem;
}
.aboutCard {
    padding: 4rem 3rem;
    border: 1px solid  #3E3E3E;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.3);
      border-radius: 20px;
}
h2.aboutCardHead {
    color: #ffffff;
    padding-bottom: 1.5rem;
    font-size: 24px;
    font-weight: 700;
    line-height: 32.78px;
    letter-spacing: -0.03em;

}
p.aboutCardPara {
    color: #b2b3b4;
font-size: 15px;
font-weight: 400;
line-height: 25.5px;
letter-spacing: -0.01em;
text-align: justify;

}

.messageForm.container{
        display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.servicesHeadContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 5rem;
  margin-bottom: 4rem;
}

.Kimgright{
    width: 100%;   
    padding-left: 3rem;
}

.contactFormImgK{
    width: 100%;  
    border-radius: 25px;
}

.servicesContainer {
  height: 100%;
  justify-content: center;
}

.servicesHeading {
  font-weight: 700;
  font-size: 46.13px;
  line-height: 56px;
  white-space: nowrap;
}

.servicesPara {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
}

.section1 {
  display: flex;
  background-color: #f6f9fc;
  display: flex;
  gap: 2.8rem;
  justify-content: space-between;
  padding-top: 53px;
  padding-left: 37px;
  padding-bottom: 38px;
  border-color: #cbd6e0;
  border-style: solid;
  border-radius: 8px;
}

.FooterAddK{
 color: white;    
 padding-bottom: 10px;
}

.footerareaK {
    padding-left: 1rem;
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 10rem;
}

.section2 {
  display: flex;
  background-color: #f6f9fc;
  gap: 2.8rem;
  justify-content: space-between;
  border-color: #cbd6e0;
  border-style: solid;
  border-radius: 8px;
  padding: 3rem;
}

.sectionhead {
  font-weight: 700;
  font-size: 27.02px;
  line-height: 36px;
  letter-spacing: -2%;
}

.sectionLeft {
  width: 50%;
  padding-right: 45px;
}

.sectionLeft2 {
  width: 50%;
  padding-right: 45px;
  display: flex;
  justify-content: center;

  flex-direction: column;
}

.sectionRight {
  /*width: auto;*/
  /*margin: auto;*/
  width: 50%;
}
.sectionRight1 {
  width: fit-content;
  margin: auto;
}
.sectionPara {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.2px;
  padding: 1.5rem 0;
}
.sectionParaTog{
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.2px;
  padding: 1.5rem 0 0 0;

}

/*.sectionParaTog{*/
/*  max-height: 0;*/
/*  overflow: hidden;*/
/*  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;*/
/*  opacity: 0;*/
/*}*/
/*.sectionParaTog.show{*/
/*  height: auto;*/
/*  opacity: 1;*/
/*}*/
/*.customWallet img {*/
/*  transition: transform 0.3s ease-in-out;*/
/*}*/

/*img.rotate {*/
/*  transform: rotate(180deg);*/
/*}*/
img#toggleIcon1,
img#toggleIcon2 {
  object-fit: contain;
}

.customWallet {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  padding: 18px 0;
  border-bottom: 2px solid #CBD6E0;
}
.customWalletHeadSec{
    display: flex;
    gap: 1rem;
    align-items: center;
}

.sectionHead {
  font-size: 18px;
  font-weight: 700;
}


.collapsibleDiv {
  width: 100%;
  background: #0000ff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem 0;
  justify-content: space-between;
  color: #ffffff;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  position: absolute;
  bottom: 0;
  height: 50px; /* Set initial height */
  transition: height 0.3s ease;
}

.collapsibleDivContent {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-height: 0;
  overflow: hidden;
}
.securityContainer img {
  transition: transform 0.3s ease;
}

.collapsibleDiv:hover {
  height: 50%;
}
.collapsibleDiv:hover .securityContainer img {
  transform: rotate(180deg);
}

.collapsibleDiv:hover .collapsibleDivContent {
  opacity: 1;
  transform: translateY(0); 
  max-height: 100px; 
}

.focusedHeading {
  font-weight: 700;
  font-size: 29.15px;
  line-height: 35px;
  letter-spacing: -3%;
  padding-bottom: 55px;
}
.focusedHeading1 {
  font-weight: 700;
  font-size: 29.15px;
  line-height: 35px;
  letter-spacing: -3%;
  padding-bottom: 14px;
}

.focusedPara {
  font-family: Helvetica Neue;
  font-size: 20.27px;
  font-weight: 400;
  line-height: 26.35px;
  letter-spacing: -0.02em;
  text-align: left;
  display: flex;
  padding-bottom: 2rem;
}
/*.{*/
/*        font-family: Helvetica Neue;*/
/*    font-size: 20.27px;*/
/*    font-weight: 400;*/
/*    line-height: 26.35px;*/
/*    letter-spacing: -0.02em;*/
/*    text-align: left;*/
/*    display: flex;*/
/*    padding-bottom: 2rem;*/
/*    margin-bottom: 50px;*/
/*}*/
.securityContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.regularPara {
  font-size: 18px;
  font-weight: 700;
  line-height: 24.3px;
  letter-spacing: -0.01em;
  text-align: left;
  color: #a9a9a9;
  padding-bottom: 20px;
}

.getInTouch {
  background: #000000;
  background-size: cover;
  padding-bottom: 3rem;
}

.getInTouch h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 73px;
  text-align: center;
  color: #ffffff;
  padding: 3rem 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  padding-right: 2rem;
}

.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  justify-content: space-between;
}

.form-group label {
  color: #757575;
  font-weight: 400;
}

.form-group input[type='text'],
.form-group input[type='email'],
.form-group input[type='tel'] {
  margin-right: 20px;
  flex: 1;
  background: transparent;
}

.form-group textarea {
  width: 100%;
  background: transparent;
}

.submitDiv {
display: flex;
    background: #4a3aff;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30.6px;
    cursor: pointer;
    transition: background 0.3s;
    width: fit-content;
    gap: 1rem;
}
.submitBtn{
  font-size: 18.19px;
  font-weight: 600;
  line-height: 22.02px;
  text-align: center;
      background: none;
    outline: none;
    border: none;
    color:#ffffff;
    cursor: pointer;
}
.form-group input[type='text'],
.form-group input[type='email'],
.form-group input[type='tel'],
.form-group textarea {
  margin-right: 20px;
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 3px solid #757575; 
  outline: none;
  padding: 7px 0; 
  box-shadow: none; 
  color: #ffffff;
}

.form-group input[type='text']:focus,
.form-group input[type='email']:focus,
.form-group input[type='tel']:focus,
.form-group textarea:focus {
  border-bottom: 3px solid #007bff;
}
.contactMap{
    background: #000000 url(assets/contactMap.svg) no-repeat;
    height: 50vh;
    width: 100%;
    background-position: center;
    background-size: contain;
}

.namePart {
  display: flex;
  flex-direction: column;
  width: 22rem;
  gap: 1rem;
}
.namePartK {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}
.messagePart {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /*width: 21rem;*/
}

.getintouch {
  background: url('assets/hero2.svg') no-repeat;
  background-size: cover;
  height: 300vh;
}


.frequentlyHeader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 3rem auto 0;
      background: #4A3AFF;
      color: #ffffff;
      padding: 2rem 0px;
      border-radius: 30px;
}

.frequentlyCards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem; 
  padding: 4rem 0 0 0; 
  margin-bottom: 5rem;
}

.frequentlycard {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 16px;
  box-shadow: 0px 5px 16px 0px #080f340f;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 44px;
  padding-right: 44px;
  /*temp*/
  border: 1px solid transparent;
}

.frequentlycard-header {
  display: flex;
  justify-content: space-between; /* Align items on opposite sides */
  align-items: center; /* Center-align the text and icon vertically */
  width: 100%;
}

.frequentlycard h2 {
  margin: 0; /* Remove default margins */
  font-size: 18px; /* Adjust font size as needed */
}

.frequentlycard img {
  cursor: pointer; /* Change cursor to pointer to indicate it's clickable */
  margin-left: 10px; /* Add some space between the text and the icon */
}

.description {
   height: 0;
   overflow: hidden;
   transition: height 0.3s ease;
  margin-top: 20px;
  font-size: 14px;
  color: #333;
  /*temp*/
  /*border: 1px solid ;*/
}

.expanded .description {
  height: auto;
}
.frequentlycard.expanded .description {
  display: block;
  
}


.cardPara {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  padding-top: 14px;
}

.frequentlyHeader p {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  padding-top: 14px;
  text-align: center;
}

.footer {
  background: #000000;
  /*margin-top: 3rem;*/
}

.copyright {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 24.59px;
  text-align: center;
  padding-bottom: 1rem;
}
.CardsContainerMain {
  margin: 1rem auto;
}
.social img {
    border: 1px solid #ffffff;
    border-radius: 50%;
}
:root {
  --card-height: 40vw;
  /*--card-margin: 4vw;*/
  --card-top-offset: 0;
  --numcards: 2;
  --outline-width: 0px;
}

#cards {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(var(--numcards), var(--card-height));
  gap: 3rem;
  padding-bottom: calc(var(--numcards) * var(--card-top-offset));
  margin-bottom: 3rem;
}

#card-1 {
  --index: 1;
}

#card-2 {
  --index: 2;
}

#card-3 {
  --index: 3;
   margin-bottom: 0;   
}
.card {
  position: sticky;
  top: 0;
  /*padding-top: calc(var(--index) * var(--card-top-offset));*/
  margin-bottom: 4rem;
}

.card-content {
  background: #f6f9fc;
  overflow: hidden;
  margin: 1.4em 0px 0 1.4em;
  width: -webkit-fill-available;
}

.card-content > div {
  width: 100%;
}
#card-3 .section2{
    padding: 4rem 0 4rem 2.5rem;
}



@supports (animation-timeline: works) {
  @scroll-timeline cards-element-scrolls-in-body {
    source: selector(body);
    scroll-offsets: selector(#cards) start 1, selector(#cards) start 0;
    start: selector(#cards) start 1;
    end: selector(#cards) start 0;
    time-range: 4s;
  }

  .card {
    --index0: calc(var(--index) - 1);
    --reverse-index: calc(var(--numcards) - var(--index0));
    --reverse-index0: calc(var(--reverse-index) - 1);
  }

  .card__content {
    transform-origin: 50% 0%;
    will-change: transform;

    --duration: calc(var(--reverse-index0) * 1s);
    --delay: calc(var(--index0) * 1s);

    animation: var(--duration) linear scale var(--delay) forwards;
    animation-timeline: cards-element-scrolls-in-body;
  }

  @keyframes scale {
    to {
      transform: scale(calc(1.1 - calc(0.1 * var(--reverse-index))));
    }
  }
}

.typing-container {
    white-space: pre-wrap;
    border: 1px solid #ddd;
    max-width: auto;
    margin: auto;
    position: relative;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(199deg, #cecece 27%, #ffffff 58%, #ffffff 45%);
    border-radius: 10px;
}
.cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background-color: #000;
  animation: blink 0.7s step-start infinite;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cardVsTyping {
  position: relative;
}
.vscodeImg {
  position: absolute;
  top: 40%;
  left: 50%;
  height: 30vh;
  width: auto;
}

.techMainCont {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 70vh;
  gap: 1rem;
  width: fit-content;
  margin: auto;
}
.techone,
.techthree {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.techtwo {
  margin: auto 0;
}

.tech img {
  width: 155px;
  height: 155px;
  transition: all 0.5s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  animation: shadowPulse 2s infinite alternate;
  border-radius: 8px;
}

@keyframes shadowPulse {
  0% {
    /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);*/
    /*box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
    /*box-shadow: 0px 30px 45px -30px #32325D40;*/
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  }
  100% {
    /*box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);*/
    /*box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;*/
    box-shadow: 0px 18px 36px -18px #0000001a;
  }
}

.social {
  display: flex;
  gap: 2rem;
}

.industriesMain{
    background: url(assets/industriesBanner.png) no-repeat;
    background-size: cover;
    background-position: center;
    margin: 5rem 0;
    padding: 4rem 0;
}
.IndustriesHead{
font-size: 43.91px;
font-weight: 700;
line-height: 48.3px;
letter-spacing: -0.025em;
color: #ffffff;

}
.industriesContainer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}
.industriesCard{
    border-radius: 10.13px;
    color: #ffffff;
    padding: 3rem;
    border-bottom: 2px solid #d6b15f;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 8.44px 8.44px 42.22px 2.53px #275c8d1f;
    border-radius: 5px;
        display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}
.industriesHead{
font-size: 29.15px;
font-weight: 700;
line-height: 35px;
letter-spacing: -0.03em;

}
.industriesPara{
font-size: 20.27px;
font-weight: 400;
line-height: 26.35px;
letter-spacing: -0.02em;
    text-align: justify;
}


/*.industriesCards {*/
/*    padding: 3rem;*/
/*    border: 1px solid #cdcddc;*/
/*    border-radius: 10px;*/
/*    background: linear-gradient(45deg, black 61%, #674c0f);*/
/*    color: white !important;*/
/*}*/

.ComplainceSecurityMain h2{
font-size: 43.91px;
font-weight: 700;
line-height: 48.3px;
letter-spacing: -0.025em;
padding-bottom: 2rem;
}

.CSHead{
font-size: 25px;
font-weight: 700;
line-height: 39.35px;
letter-spacing: -0.01em;
padding-bottom: 1rem;
}
.CSPara{
font-size: 20.27px;
font-weight: 400;
line-height: 26.35px;
letter-spacing: -0.02em;
text-align: left;
padding-bottom: 2rem;
color: #7f7f98;
}
.GITBar{
background: #4A3AFF;
border-radius: 30px;
padding: 2rem;
margin-top: 3rem ;
color: #ffffff;
display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
}
.GITBarHead{
font-size: 18px;
font-weight: 400;
line-height: 27px;
padding-bottom: 10px;
}
.GITBarPara{
font-size: 16.5px;
font-weight: 600;
line-height: 19.97px;
}
.section1 {
    display: flex;
    background-color: #4a3aff;
    display: flex;
    gap: 2.8rem;
    justify-content: space-between;
    padding-top: 53px;
    padding-left: 37px;
    padding-bottom: 38px;
    border-color: #4a3aff;
    border-style: solid;
    border-radius: 8px;
    color: white !important;
}

img#toggleIcon1, img#toggleIcon2 {
    object-fit: contain;
    filter: brightness(4.5);
}

.section2 {
    display: flex;
    background-color: #4a3aff;
    gap: 2.8rem;
    justify-content: space-between;
    border-color: #7a6eff;
    border-style: solid;
    border-radius: 8px;
    padding: 3rem;
    color: white !important;
}

.typing-container {
    white-space: pre-wrap;
    border: 1px solid #ddd;
    max-width: auto;
    margin: auto;
    position: relative;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(199deg, #ecf3ff 27%, #fbfcff 58%, #ffffff 45%);
    border-radius: 10px;
    color: black !important;
}

.about {
    background: url(./assets/j1.jpg) no-repeat;
    background-size: cover;
    height: auto;
    padding: 0 0 6rem 0;
    background: linear-gradient(179deg, #000000, #0000008a, transparent), url(./assets/j1.jpg) no-repeat;
}

p.aboutCardPara {
    color: #fbfbfb;
    font-size: 15px;
    font-weight: 400;
    line-height: 25.5px;
    letter-spacing: -0.01em;
    text-align: justify;
}

.industriesMain {
    background: url(assets/j2.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    margin: 5rem 0;
    padding: 4rem 0;
    background: linear-gradient(28deg, #000000e6, transparent), url(assets/j2.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
}
#ComplainceSecurityMain, #PartnershipsAndIntegrations {
    display: flex;
    gap: 4rem;
}

.CSCardMain{
   flex: 1;
}
.CSCardImage{
   flex: 1;
}
.ComplainceSecurityImg{
    height: 100%;
    width: 100%;
}
#PartnershipsAndIntegrations{
    margin: 6rem auto;
}

@media (max-width: 1440px) {
  .herohead {
    font-size: 45px;
  }
  .heropara {
    font-size: 22px;
  }
  .card {
      top: 0;
    }
}
@media (max-width: 1024px) {
.heroImageDiv img {
    height: 30vh;
}
.container {
    width: 90%;
}
.heroContainerTextMain {
    width: 70%;
}
.herohead {
        font-size: 35px;
    }
        .heropara {
        font-size: 18px;
        line-height: 20px;
    }
    .sectionLeft {
    width: 70%;
    padding-right: 0;
}
.sectionhead {
    font-size: 20.02px;
}
.sectionRight1 img {
    height: 50vh;
}
    
}


@media (max-width: 900px) {
.navItems {
    display: none;
}
.hero{
    position: relative;
        height: fit-content;
}
.heroContainer{
    display: flex;
        align-items: center;
        height: auto;
        margin-top: 6rem;
        flex-direction: column;
        gap: 2rem;
}
    .heroContainerTextMain {
        width: 100%;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    .herobutton {
    padding: 10px 20px;
}
.aboutContainerMain {
    grid-template-columns: 1fr;
}
.servicesHeading {
    font-size: 23px;
}
.servicesPara {
    font-size: 16px;
}
.sectionhead {
        font-size: 18px;
    }
    .sectionPara {
    font-size: 16px;
}
.sectionRight {
    display: none;
}
.sectionLeft2{
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
}
.section1 {
    display: block;
    padding: 1rem;
    min-height: 50vh;
}
.industriesContainer {
    grid-template-columns: 1fr;
    gap: 4rem;
}
.sectionLeft {
        width: 100%;
    }
    .form-group {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 2rem;
}
.frequentlyCards {
    grid-template-columns: 1fr;
}
.GITBar {
    background: #4A3AFF;
    border-radius: 30px;
    padding: 2rem;
    margin-top: 3rem;
    color: #ffffff;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: start;
}
.navbarContainer {
    flex-wrap: wrap;
}
.card-content {
    margin: 1.4em 0px 0 0;
}
.IndustriesHead {
    font-size: 23px;
    text-align: center;
}
.ComplainceSecurityMain h2{
    font-size: 23px;
    text-align: start;
    padding-bottom: 4rem;
}
.getInTouch h2{
     font-size: 23px;
     line-height: 30px;
}
.industriesHead, .CSHead {
    font-size: 20px;
}
.industriesPara, .CSPara {
    font-size: 16px;
}
.frequentlyHeader p {
    font-size: 16px;
    text-align: justify;
    padding: 1rem;
}
:root {
  --card-height: 50vh;
  /*--card-margin: 4vw;*/
  --card-top-offset: 3em;
  --numcards: 2;
  --outline-width: 0px;
}
.card {
    position: sticky;
    top: 4rem;
    padding-top: calc(var(--index)* var(--card-top-offset));
    margin-bottom: 4rem;
}
#cards {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(var(--numcards), var(--card-height));
  gap: 3rem;
  padding-bottom: calc(var(--numcards) * var(--card-top-offset));
  margin-bottom: 3rem;
}
.section2 {
    padding: 1rem;
    min-height: 50vh;
}
#card-3 .section2 {
    padding: 1rem;
}
.menuIcon{
    display: block;
    width: 30px;
    height: auto;
}
.herobutton:hover {
    padding: 10px 20px;
    border-radius: 30.16px;
    background: #d6b15f;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

#ComplainceSecurityMain {
    display: flex;
    gap: 1rem;
    flex-direction: column-reverse;
}
 #PartnershipsAndIntegrations {
        display: flex;
        gap: 1rem;
        flex-direction: column;
        margin: 4rem auto;
}
.about {
    background-size: cover;
}
.servicesHeadContainer {
    margin-bottom: 0rem;
}
.frequentlycard {
    padding: 1rem;
}
}

.about {
    background: url(./assets/j1.jpg) no-repeat;
    background-size: cover;
    height: auto;
    padding: 0 0 6rem 0;
    background: linear-gradient(179deg, #000000, #0000008a, transparent), url(./assets/j1.jpg) no-repeat;
    background-size: cover;
}

#ComplainceSecurityMain, #PartnershipsAndIntegrations {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.heroContainerTextMain {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-right: 60px;
}
@media (max-width: 600px) {
.heroContainerTextMain {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-right: 0px;
}
    .GITBar {
    background: #4A3AFF;
    border-radius: 30px;
    padding: 2rem;
    margin-top: 3rem !important;
    color: #ffffff;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    margin-bottom: 45px !important;
    align-content: center;
    display: flex !important;
    flex-direction: column;
}
}

@media (min-width: 600px) {
.GITBar {
    background: #4A3AFF;
    border-radius: 30px;
    padding: 2rem;
    margin-top: 3rem !important;
    color: #ffffff;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    margin-bottom: 45px !important;
}
}

.herobutton {
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 30.16px;
    border: 1px solid #d6b15f;
    background: none;
    color: #fff;
    font-size: 15px;
    line-height: 24px;
    font-weight: 700;
}
.industriesMain {
    background: url(assets/j2.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    margin: 5rem 0 0;
    padding: 4rem 0;
    background: linear-gradient(28deg, #000000e6, transparent), url(assets/j2.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    /*margin-bottom: 150px;*/
}


/*=======================*/

#PartnershipsAndIntegrations {
    margin: 0px auto;
}
.industriesMain {
    background: url(assets/j2.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    margin: 5rem 0;
    padding: 4rem 0;
    background: linear-gradient(28deg, #000000e6, transparent), url(assets/j2.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    margin-bottom: 0px !important;
}
.commonPara{
    font-size: 20px !important;
}

@media (max-width: 1440px) {
.techMainCont {
    height: 67vh;
}
}
@media (max-width: 1024px) {
:root {
     --card-height: auto; 
    /* --card-margin: 4vw; */
    --card-top-offset: 0;
    --numcards: 2;
    --outline-width: 0px;
}    
.techMainCont {
        height: 77vh;
    }
    .sectionRight {
    width: 80%;
}
.section2{
    gap: 0;
}
.sectionLeft2 {
    padding-right: 0;
}
}

