/* Landing Page Styles Starts */

body{
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-weight: 400; 
    /* background-color: #fbfbfb; */
    background-color: #ffffff;
    overflow-x: hidden;
    
}
html, body {
    overflow-x: hidden;
  }
body,html, *{
    box-sizing: border-box;
}
:root{
    --font-weight-light:300;
    --font-weight-regular:400;
    --font-weight-medium: 500;
    --font-weight-semi-bold:600;
    --font-weight-bold: 700;
    --text-color:#2a2727;
    --heading-color:#2b1437;
    --nav-font:#705481;
}
@font-face {
    font-family: 'Guminert';
    src: url('fonts/Guminert-Bold.ttf');
    font-weight: 700; /* bold */
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Guminert';
    src: url('fonts/Guminert-Semi-Bold.ttf');
    font-weight: 600; /* Semi-bold */
    font-style: normal;
    font-display: swap; 
}
@font-face {
    font-family: 'Guminert';
    src: url('fonts/Guminert-Medium.ttf');
    font-weight: 500; /* meduim */
    font-style: normal;
    font-display: swap; 
}
@font-face {
    font-family: 'Guminert';
    src: url('fonts/Guminert-6Y5gD.ttf');
    font-weight: 400; /* regular */
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Guminert";
    src: url("fonts/Guminert-Regular-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

a{
    position: relative;
    z-index: 5;
}

h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
}
p{
    margin: 0;
}
a{
    color: inherit;
    text-decoration: none;
    margin: 0;
}

.preloaded-image {
    opacity: 0;            
    transition: opacity 0.3s ease; 
}
.preloaded-image.loaded {
    opacity: 1;              
}

.blog-details-page-container{
    height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.case-study-rbl-page-container{
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.home-page-container{
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.about-page-container{
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.blogs-page-container{
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.case-studies-page-container{
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.contact-us-page-container{
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.portfolio-page-container{
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.services-page-container{
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}




.idlp-header{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fbfbfb;
    transition: background 0.25s ease;
}
.idlp-header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 120px 24px 138px;
    
    width: 100%;
}

.idlp-header.scrolled{
    background: #fff;
}
.id-header-brand a{
    display: flex;
    justify-content: center;
    align-items: center;
}

.id-nav{
    display: flex;
    justify-content: center;
    color: var(--nav-font);
    gap: 18px;
    font-weight: var(--font-weight-semi-bold);
    padding-left: 47px;
}
.id-nav-item{
    padding: 5px 10px;
    border-radius: 3px;
    transition: background-color 0.3s ease-in-out;
}
.id-nav-item:hover{
    background-color:#ece6f8;
    cursor: pointer;
}
.id-nav-item-div{
    display: flex;
    justify-content: center;
    gap: 4px;
    position: relative;
}
.id-nav-item-div img{
    margin-top: 4px;
}
.id-nav-item a p,
.id-nav-item a id-nav-item-div p{
    color: var(--nav-font);
    font-size: 15px;
}
.id-nav-item a .id-nav-item-div{
    display: flex;
    justify-content: center;
}

.id-header-btn a div{
    padding: 11px 32px;
    border-radius: 50px;
    background-color: #2a1437;
    color: #fff;
    font-weight: var(--font-weight-medium);
    font-size: 16px;
}

.id-header-btn a div p{
    color: #ffffff;
    font-weight: 300;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    display: block;
    width: 100%;
}

.nav-collapsed{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width:fit-content;
    height: auto;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 37px;
    padding-top: 35px;
    padding-bottom: 40px;
    padding-left: 25px;
    position: absolute;
    top: 78px;
    left: 51%;
    transform: translateX(-51%);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    cursor:default;
}
.nav-collapsed.active{
    opacity: 1;
    visibility: visible;
}
.nav-collapsed-d1,
.nav-collapsed-d2,
.nav-collapsed-d3,
.nav-collapsed-d4{
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width:250px;
}

.nav-col a{
    display: flex;
    gap: 3px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.nav-col div{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.nav-collapsed div .nav-col a img{
    align-self: flex-start !important;
    margin-top: 1px;
}
.nav-collapsed div h6{
    color: #6E6E6E;
    font-size: 12px;
    font-weight: var(--font-weight-semi-bold);
}
.nav-collapsed div .nav-col div h4{
    color: #281438;
    font-size: 15px;
}
.nav-collapsed div .nav-col div p{
    color: #6E6E6E;
    font-size: 12px;
    font-weight: var(--font-weight-regular);
    max-width: 180px;
    line-height: 19px;
}

.id-header-actions{
    display: flex;
    align-items: center;
    gap: 12px;
}


.hamburger{
    display: none;
    cursor: pointer;
}

.hamburger img{
    width: 22px;
    display: block;
}


.hover-bridge {
    position: absolute;
    bottom: -32px;
    left: 0;
    width: 100%;
    height: 32px;
    background: transparent;
}


.idlp-s1{
    width: 100%;
    margin-bottom: 162px;
    background-color: #fbfbfb;
    /* background: #FBFBFB url(assets/images/home/Vector-1.svg) no-repeat top right; */
}
.idlp-s1-inner{
    display: flex;
    justify-content: space-around;
    padding: 20px 100px;
    padding-top: 102px;
    padding-right: 140px;
    padding-left: 95px;
    padding-bottom: 130px;
    gap: 0px;
    background: #FBFBFB url(images/home/Vector-1.svg) no-repeat top right;
    overflow: hidden;
}
.idlp-s1-left{
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 10px;
}
.idlp-s1-left h1{
    font-family: 'Guminert', sans-serif;
    font-weight: 700;
    font-size: 54px;
    color: #2b1437;
    max-width: 550px;
    line-height: 66px;
}

.idlp-s1-left p{
    font-weight: var(--font-weight-regular);
    color: #272727;
    font-size: 18px;
    line-height: 28px;
    max-width: 500px;
}


.idlp-s1-left div{
    display: flex;
    gap: 15px;
}

.talk-2-expert-btn{
    padding: 15px 32px;
    border-radius: 50px;
    background-color: #9e2ffa;
    color: #fff;
    font-weight: var(--font-weight-regular);
    font-size: 16px;
    flex-wrap: nowrap;
    box-shadow: 0 10px 30px rgba(158, 47, 250, 0.3);
}
.learnMore-btn{
    padding: 14px 30px;
    border-radius: 50px;
    background-color: #fff;
    color: #2a2727;
    border: 1px solid #2a2727;
    font-weight: var(--font-weight-medium);
    font-size: 16px;
}

.talk-2-expert-btn,
.learnMore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}





.idlp-s1-right{
    display: flex;
    gap: 10px;
    padding-top:10px;
    margin-left: 40px;
}
.idlp-s1-right .idlp-s1-right-images{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.idlp-s1-right img{
    max-height: 379px;
    max-width: 126px;
}
.idlp-s1-right-images #idlp-s1-right-Img2{
    max-width: 247px;
    max-height: 272px;
}
 .idlp-s1-right-images div {
    background-color:#fefcfc;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
    /* max-width: 207.4px;
    max-height: 75.5px; */
    padding: 12px 23px;
    display: flex;
}

.idlp-s1-right-images div img:nth-child(1){
   margin-top: 4px;
}



.idlp-s2{
    background-color: #ffffff;
    text-align: center;
    padding-bottom: 150px;
}
.idlp-s2-d1{
    padding:0 30px;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}
.idlp-s2-d1-h1{
    font-family: 'Guminert', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: 20px;
    line-height: 28px;
    color: rgb(43, 20, 55);
    margin-left: 10px;
}
.idlp-s2-d1-p1{
    font-weight: var(--font-weight-regular);
    font-size:16px;
    line-height: 24px;
    color: #535353;
    margin-left: 10px;
}
.logo-marquee {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}


@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}



.idlp-s3{
    display: flex;
    flex-direction: column;
    gap: 80px;
    background-color: #ffffff;
    padding: 0 90px;
    padding-right: 80px;
    padding-bottom: 150px;
}
.idlp-s3-d1{
    display: flex;
    justify-content: space-around;
    gap: 75px;
}
.idlp-s3-d1 h1{
    font-family: 'Guminert', sans-serif;
    font-weight:700;
    font-size: 40px;
    line-height: 52px;
    color: #281438;
    flex: 55%;
    max-width: 543px;
}
.idlp-s3-d1 p{
    font-weight: var(--font-weight-regular);
    font-size: 16px;
    line-height: 26px;
    color: #535353;
    flex: 45%;
    display: flex;
    justify-content: center;
    max-width: 400px;
    padding-top:10px;
}

.idlp-s3-d2{
    display: flex;
    gap: 25px;
    padding: 0 40px;
    
}

.idlp-s3-d2-card{
    padding: 50px 20px;
    background: #f9f2fb;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    transition: background-image 0.3s ease-in-out, color 0.3s ease-in-out;
    cursor: pointer;
}
.idlp-s3-d2-card h1{
    font-weight: var(--font-weight-medium);
    font-size: 60px;
    line-height: 50px;
    color: #281438;
}
.idlp-s3-d2-card h1 span{
    font-weight: var(--font-weight-semi-bold);
    font-size: 30px;
    line-height: 40px;
    margin: 0;
    margin-left: -15px;
}
.idlp-s3-d2-card p{
    font-weight:var(--font-weight-regular);
    font-size: 16px;
    line-height: 26px;
    color: #281438;
    width: 100%;
    max-width: 262px;
}

.idlp-s3-d2-card:hover {
    background-image: linear-gradient(to bottom, #040101 30%, #631e9a 100%);
}
.idlp-s3-d2-card:hover  h1,
.idlp-s3-d2-card:hover p{
    color: #fff;
}


.idlp-s4{
    background: #030000 url("images/home/ids4-arc.svg") no-repeat top left;
    background-size: cover; 
    overflow: hidden;
}


.idlp-s4-content{
    padding: 50px 138px;
    position:relative;
}
.idlp-s4-content-d1{
    margin-top: 50px;
    display: flex;
    gap: 200px;
}
.idlp-s4-content-d1-ovals{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.idlp-s4-content-d1-imgContainer{
    flex: 1;
}
.idlp-s4-content h1{
    font-family: 'Guminert', sans-serif;
    font-weight: 500;
    color: #ffffff;
    font-size: 40px;
    line-height: 50px;
    max-width:500px;
}
.idlp-s4-oval-d1{
    display: flex;
    justify-content: space-between;
}
.idlp-s4-oval-d1 p{
    font-family: 'Guminert', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
}
.idlp-s4-oval-d2{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.idlp-s4-oval-d2 p{
    font-weight: var(--font-weight-regular);
    font-size: 16px;
    line-height: 26px;
    color: #281438;
}
.idlp-s4-oval-d2 a{
    display: flex;
    gap: 10px;
}
.idlp-s4-oval-d2 a p{
    color:#9e2ffa; 
    font-family: 'Guminert', sans-serif;
    font-weight: 600;
}


.idlp-s4-content-d1-oval{
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 25px 28px;
    border-radius: 50px;
    border: 1px solid #4a4747;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}



.idlp-s4-oval-d2 {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.idlp-s4-content-d1-oval.active .idlp-s4-oval-d2 {
    max-height: fit-content;
    opacity: 1;
    margin-top: 15px;
}
.idlp-s4-content-d1-oval.active{
    background-color: #fff;
    border-radius: 30px;
}


.idlp-s4-content-d1-oval.active .idlp-s4-oval-d1 p{
    color: #281438;
}



.idlp-s4-content-d1-imgContainer {
    position: relative;       
    width: 100%;
    height: 469px;        
    overflow: hidden;
    border-radius: 10px;
    max-height:460px;
    max-width:426px;
}

/* Main image fills container */
.idlp-s4-content-d1-imgContainer > img {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* makes it fill nicely without distortion */
    display: block;
}

/* Absolute overlay */
.idlp-s4-content-d1-imgCon-d1 {
    position: absolute;
    bottom:-5px;                 
    left: -5px; 
    height: 100%;
    width: 100%;     
    max-width: 170px;
    max-height: 170px;        
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius:20px;
}
.idlp-s4-content-d1-imgCon-d1 div{
    height: 100%;
    width: 100%;
    max-width: 140px;
    max-height: 140px;
    background: linear-gradient(to bottom right, #d5a4fa, #fefcfc);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.idlp-s4-content-d1-imgCon-d1 div img{
    flex: 1;
    padding: 20px;
}

/* Main image and icon transition */
.idlp-s4-content-d1-imgContainer > img,
.idlp-s4-content-d1-imgCon-d1 img {
    transition: opacity 0.3s ease; /* smooth fade */
}


.idlp-s5{
    display: flex;
    flex-direction: column;
    padding: 70px 137px;
    gap: 10px;
    background-color:#fefcfc;
}

.idlp-s5-d1 h1{
    font-family: 'Guminert', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 52px;
    color: #281438;
    
}
.idlp-s5-d1 p{
    font-size: 16px;
    line-height: 26px;
    color: #535353;
}






.idlp-s5-d2 {
  position: relative;
  width: 100%;
  height: 8px; 
  background-color: #f0eded; 
  margin: 42px auto;
  border-radius: 4px;
}

.idlp-s5-d2-progress-line{
  position: absolute;
  height: 100%;
  background-color: #000000;
  width: 0%; 
  border-radius: 4px;
  transition: width 0.3s ease;
  top: 0;
  left: 0;
  z-index: 1;
}

.idlp-s5-d2-dots {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  transform: translateY(-50%);
  z-index: 2;
}

.idlp-s5-d2-dot {
  width: 22px; 
  height: 22px;
  background-color: #d9d9d9;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 2;
}

.idlp-s5-d2-dot.active {
  background-color: #000000;
}
.idlp-s5-d2-d3{
    position: absolute;
    top: 42px;
    left: 10px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    transform: translateY(-50%);
    z-index: 2;
}
.idlp-s5-d2-d3 p{
    font-family: 'Guminert', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #281438;
}

.idlp-s5-d3{
    margin-top: 60px;
    display: flex;
    gap: 105px;
}

.idlp-s5-d3-imgContain{
    max-width: 353px;
    max-height: 394px;
    border-radius: 20px;
    margin-top: 20px;
    flex: 1;
}
.idlp-s5-d3-imgContain img{
    width: 100%;
    height: 100%;
    object-fit: cover;   
    display: block;
    border-radius: 20px;
}
.idlp-s5-d3-d2{
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}
.idlp-s5-d3-d2 h1{
    font-family: 'Guminert', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
    color: #281438;
}

.idlp-s5-d3-d2-d1{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.idlp-s5-d3-d2-d1-inn{
    display: flex;
    gap: 20px;
}
.idlp-s5-d3-d2-d1-inn img{
    max-height: 69px;
    max-width: 69px;
}
.idlp-s5-d3-d2-d1-inn div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.idlp-s5-d3-d2-d1-inn div p:nth-child(1){
    font-size: 16px;
    line-height: 28px;
    font-weight: var(--font-weight-semi-bold);
    color: #281438;
}
.idlp-s5-d3-d2-d1-inn div p:nth-child(2){
    color: #535353;
    font-size: 16px;
    line-height: 26px;
}


.idlp-s5-d3 {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.idlp-s5-d3.active {
  display: flex;
  opacity: 1;
}


.idlp-s6{
    background: #faf7f7;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 77px 140px;
    padding-right: 120px;
}
.idlp-s6-d1{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.idlp-s6-d1 h1{
    font-family: 'Guminert', sans-serif;
    font-weight: 600;
    color: #281438;
    font-size: 40px;
    line-height: 52px;
    max-width: 900px;
}
.idlp-s6-d1 p{
    color: #535353;
    font-size: 16px;
    line-height: 26px;
    max-width: 810px;
}
.idlp-s6-d2{
    margin-top: 30px;
}

.idlp-s6-d2-card,
.idlp-s6-d3-card{
    background: linear-gradient(
  to bottom right,
  #e8dfeb 0%,
  #fefcfc 100%
);

}
.idlp-s6-d2-card-d1 h6,
.idlp-s6-d3-card-d1 h6{
    font-family: 'Guminert', sans-serif;
    font-weight: 600;
    color: #281438;
    font-size: 20px;
    line-height: 28px;
}
.idlp-s6-d2-card-d1 p:nth-child(2),
.idlp-s6-d3-card-d1 p:nth-child(2){
    color: #281438;
    font-size: 16px;
    line-height: 26px;
}
.idlp-s6-d2-card-d1 a,
.idlp-s6-d3-card-d1 a {
    display: flex;
    gap: 10px;
}
.idlp-s6-d2-card-d1 a p,
.idlp-s6-d3-card-d1 a p{
    color: #9e2ffa;
    font-size: 16px;
    line-height: 26px;
}

.idlp-s6-firstCard {
    background: #281438;
}
.idlp-s6-firstCard .idlp-s6-d2-card-d1 h6,
.idlp-s6-firstCard .idlp-s6-d2-card-d1 p:nth-child(2){
    color: #fff;
}


/* I have this just in case Amit wants the hover effect */
/* .idlp-s6-d2-card svg path {
    fill: url(#paint0_linear_3315_122); 
}
.idlp-s6-d3-card svg path {
    fill: url(#paint0_linear_3315_122); 
} */

/* .idlp-s6-d2-card:nth-child(2) svg{
    
}
.idlp-s6-d3-card svg {
    
} */
.idlp-s6-d2, 
.idlp-s6-d3{
    display: flex;
    gap: 15px;
}

.idlp-s6-d2-card:nth-child(1){
    flex: 59%;
}
.idlp-s6-d2-card:nth-child(2){
    flex: 41%;
}
.idlp-s6-d3-card:nth-child(1){
    flex: 1;
}
.idlp-s6-d3-card:nth-child(2){
    flex: 1;
}
.idlp-s6-d2-card:nth-child(2),
.idlp-s6-d3-card:nth-child(1),
.idlp-s6-d3-card:nth-child(2){
    border: 1px solid #fff;
}
.idlp-s6-d2-card,
.idlp-s6-d3-card{
    display: flex;
    padding: 50px 0;
    padding-left: 40px;
    border-radius:20px;
    position: relative;
}
.idlp-s6-d3-card{
    padding-bottom: 80px;
}
.idlp-s6-d2-card .idlp-s6-d2-card-d1,
.idlp-s6-d3-card .idlp-s6-d3-card-d1{
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.idlp-s6-d2-card svg{
    position: absolute;
    bottom: 0;
    right: 0;
}

.idlp-s6-d3-card svg{
    position: absolute;
    bottom: 15px;
    right: 30px;
}

.idlp-s6-d2-card:nth-child(2) svg{
    bottom: 21px;
    right: 37px;
}

.idlp-s6-d4{
    display: flex;
    justify-content: center;
}
.idlp-s6-d4 a{
    padding: 15px 30px;
    font-size: 16px;
    color: #faffff;
    background: #9e2ffa;
    border-radius: 30px;
}


.idlp-s7 {
    background-color: #000000;
    background-image: 
        url("images/home/idlp-s7-backgroundArc-left.svg"),
        url("images/home/idlp-s7-backgroundArc-right.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: left bottom, right bottom;
    background-size: auto, auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 150px;
    padding-bottom: 200px;
}


.idlp-s7 h1{
    font-family: 'Guminert', sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 40px;
    line-height: 50px;
    text-align: center;
}
.idlp-s7 .idlp-s7-quote{
    position: relative;
    margin-bottom: 40px;
}
.idlp-s7 .idlp-s7-quote img{
    position: absolute;
    top: -8px;
    left: -25px;
}
.idlp-s7 .idlp-s7-quote h3{
    font-weight: 400;
    color: #fff;
    font-size: 24px;
    line-height: 40px;
    width: 100%;
    max-width: 780px;
    text-align: center;
}

.idlp-s7-name-job p:nth-child(1){
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}
.idlp-s7-name-job p:nth-child(2){
font-size: 16px;
    line-height: 26px;
    color: #A6A6A6;
    font-weight: 400;
    text-align: center;
}


.idlp-s7-clients{
    width: 100%;
    max-width: 450px;
    display: flex;
    justify-content: space-between;
    margin: 60px 0;
}
.idlp-s7-client{
    height: 90px;
    width: 90px;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
}

.idlp-s7-client.active{
    border: 1px solid #fff;
    background-color:#2b1437;
}

.idlp-s7-client img{ 
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.idlp-s7-imageOverlay{
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 77px;
    width: 77px;
    border-radius: 50%;
    background-color: #00000094;
    transition: 0.3s ease;
}
.idlp-s7-client.active .idlp-s7-imageOverlay{
    opacity: 0;
}


.idlp-s7-quote h3 {
    display: none;
}

.idlp-s7-quote h3.active {
    display: block;
}

.idlp-s7-name-job > div {
    display: none;
}

.idlp-s7-name-job > div.active {
    display: block;
}


.idlp-s8{
    padding: 85px 130px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.idlp-s8 h1{
    font-family: 'Guminert', sans-serif;
    font-weight: 600;
    font-size: 40px;
    color: #281438;
    width: 100%;
    
}
.idlp-s8 p{
    color: #535353;
    font-weight: 400;
    font-size: 16px;
    max-width: 800px;
}
.idlp-s8-card h5{
    color: #281438;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}
.idlp-s8-card-d1 div p{
    color: #6E5583;
    font-size: 14px;
}
.idlp-s8-card-d2 a p{
    color: #272727;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
}

.idlp-s8-cards{
    display: flex;
    margin-top: 20px;
    gap: 20px;
}
.idlp-s8-card{
    background: #f4eff9;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    padding: 20px;
    gap: 20px;
}
.idlp-s8-card img{
    height: 100%;
    width: 100%;
    max-width: 309px;
    max-height: 158px;
}

.idlp-s8-card-d1{
    display: flex;
    gap: 10px;
}
.idlp-s8-card-d1 div{
    padding: 3px 13px;
    border: 1px solid #E5DEED;
    border-radius: 20px;
}

.idlp-s8-card-d2 a {
    display: flex;
    gap: 10px;
    align-items: center;
}

.idlp-s8-allCaseStudies{
    background: #271438;
    padding: 12px 30px;
    border-radius: 22px;
    max-height: 42px;
    max-width: 212px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    color: #fff;
    font-size: 16px;
    margin-top: 20px;
}

.idlp-s8-card:hover{
    outline: 1px solid #882ad5;
    cursor: pointer;
}
.idlp-s8-card:hover .idlp-s8-card-d2 a p{
    color: #b362fc;
}
.idlp-s8-card:hover .idlp-s8-card-d2 a svg path {
    stroke: #b362fc;
}

.idlp-s9{
    background:
        radial-gradient(
            ellipse at left bottom,
            rgba(157, 48, 253, 0.33) 0%,
            rgba(157, 48, 253, 0.2) 30%,
            rgba(157, 48, 253, 0.1) 50%,
            transparent 70%
        ),
        #030000;
    display: flex;
    padding: 50px 60px;
    justify-content: space-between;
    gap: 100px;
    width: 80%;
    margin: 0 auto;
    border-radius: 30px;
}

.idlp-s9-left{
    flex: 1;
}


.idlp-s9-left h1:nth-child(1){
    font-family: "Guminert", sans-serif;
    font-style: italic;
    font-weight: 400;
    color: #9D30FD;
    font-size: 40px;
    line-height: 52px;
}
.idlp-s9-left h1:nth-child(2){
    color: #fff;
    font-family: "Guminert", sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
}
.idlp-s9-left-reviews{
    margin-top: 40px;
}
.idlp-s9-left-review{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.idlp-s9-left-review-d1{
    display: flex;
    gap: 20px;
}
.idlp-s9-left-review-d1 img{
    height: 100%;
    width: 100%;
    max-height: 53px;
    max-width: 53px;
}
.idlp-s9-left-review-d1 div{
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.idlp-s9-left-review p{
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    width: 100%;
    max-width: 411px;
}
.idlp-s9-left-review-d1 div p{
    font-weight: 600;
    color: #A875D5;
    font-size: 16px;
    line-height: 28px;
}
.idlp-s9-left-review-d1 div p:nth-child(2){
    font-weight: 300;
    color: #8762A7;
    font-size: 16px;
    line-height: 28px;
}
.idlp-s9-dots{
    display: flex;
    gap: 10px;
    margin-top: 20px;

}
.idlp-s9-dot{
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #8762A7;
    cursor: pointer;
}
.idlp-s9-dot.active{
    background-color: #fff;
}
.idlp-s9-right{
    flex: 1;
    display: flex;
    justify-content: center;
}



.contact-form h2{
    color: #FFFFFF;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
}

.contact-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.form-group {
    width: 100%;
}

.contact-form {
    width: 100%;
    max-width: 354px;
}
.form-group input[type="text"],
.form-group input[type="email"]{
    padding: 10px 25px;
    width: 100%;
    border-radius: 30px;
    border: none;
    outline: none;
    font-weight: 400;
    color: #281438;
    font-size: 17px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
}

.form-group input[type="tel"]{
    background: transparent;
    border: none;
    outline: none;
    border: 1px solid #7d7a7a;
    padding: 10px 20px;
    width: 100%;
    border-radius: 30px;
    font-weight: 400;
    color: #fff;
    font-size: 17px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
}

.form-group textarea{
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 1px solid #7d7a7a;
    padding:0px 20px;
    padding-top: 10px;
    width: 100%;
    border-radius: 30px;
    font-weight: 400;
    color: #fff;
    font-size: 17px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
    max-height: 130px;
    font-weight: 300;
    resize: none;
}
.form-group textarea {
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.form-group textarea::-webkit-scrollbar {
  display: none;
}


.contact-form button{
    background: #9e2ffa;
    border: none;
    outline: none;
    border: 1px solid #7d7a7a;
    padding: 10px 20px;
    width: 100%;
    border-radius: 30px;
    font-weight: 400;
    color: #fff;
    font-size: 17px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
    cursor: pointer;
}


.idlp-s9-left-review {
    display: none;
}
.idlp-s9-left-review.active {
    display: flex;
}

.idlp-footer{
    padding: 100px 130px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: rgb(251,251,251);
    margin-top: 103px;
}
.idlp-footer-d1{
    display: flex;
    gap:40px;
    margin-bottom: 60px;
}
.idlp-footer-d1-d1{
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 400px;
}

.idlp-footer-d1-d2,
.idlp-footer-d1-d3,
.idlp-footer-d1-d4{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.idlp-footer-d1-d1-d1 a {
    display: flex;
    gap: 10px;
}
.idlp-footer-d1-d1-d1 a p{
    font-weight: 600;
    font-size: 26px;
    color: #281438;
}
.idlp-footer-d1-d1 p{
    color: #281438;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    width: 100%;
    max-width: 304px;
}

.idlp-footer-d1-d1-d2 a{
    font-weight: 600;
    color: #281438;
    font-size: 16px;
    line-height: 26px;
}

.idlp-footer-d1-d2{
    min-width: 130px;
}
.idlp-footer-d1-d3{
    min-width: 160px;

}
/* .idlp-footer-d1-d4{
    max-width:;
} */
.idlp-footer-d1-d2 a h6,
.idlp-footer-d1-d3 a h6,
.idlp-footer-d1-d4 a h6{
    font-family: "Guminert", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: #281438;
    width: 100%;
    margin-bottom: 10px;
}
.idlp-footer-d1-d2 a p,
.idlp-footer-d1-d3 a p,
.idlp-footer-d1-d4 a p{
    color: #281438;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

.idlp-footer-d1-d4 #footer-numb h6,
    .idlp-footer-d1-d4 #footer-email h6{ 
    font-family: "Inter", sans-serif !important;
    text-decoration: underline;
}

.idlp-footer-line{
    height: 2px;
    width: 100%;
    background-color: #2b1437;
}

.idlp-footer-rights{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.idlp-footer-rights-p1,
.idlp-footer-rights-2 p{
    color: #535353;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
}

.idlp-footer-rights-2{
    display: flex;
    gap: 30px;
}

.idlp-footer-d1-d1-d2{
    display: flex;
    gap: 20px;
    max-width: 300px;
    flex-wrap: wrap;
}



/* Landing Page Styles End */


/* Services Page Styles Start */
.idsp-s1{
   width: 100%;
    background: url("images/services/idsp-s1-backgroundArc.svg") 
                no-repeat bottom right;
    background-size: auto;
    overflow: hidden;
    padding: 80px 138px;
    padding-bottom: 200px;
    padding-right: 120px;
    display: flex;
    gap: 0px;
}

.idsp-s1-d1{
    padding-top: 23px;
    display: flex;
    flex-direction: column;
    gap: 27px;
    flex: 48%;
}
.idsp-s1-d1 h1{
    font-family: "Guminert", sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 66px;
    color: #281438;
}
.idsp-s1-d1 p{
    color: #272727;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    width: 100%;
    max-width: 503px;
}
.idsp-s1-d1 div{
    display: flex;
    gap: 10px;
}
.idsp-s1-d2{
    flex: 52%;
}
.idsp-s1-d2 img{
    width: 100%;
    max-width: 569px;
}
.talk-2-expert-btn{
    width: 100%;
    max-width: 188px;
}
.learnMore-btn{
    width: 100%;
    max-width: 147px;
}


.idsp-s3{
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 130px;
    padding-bottom: 80px;
}

.idsp-s3-d1{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.idsp-s3-d1 h1{
    font-family: "Guminert", sans-serif;
    font-weight: 600;
    color: #281438;
    font-size: 40px;
    line-height: 52px;
}
.idsp-s3-d1 p{
    font-weight: 400;
    color: #535353;
    font-size: 16px;
    line-height: 26px;
    width: 100%;
    max-width: 976px;
}
.idsp-s3-d1-inner{
    display: flex;
    gap: 20px;
    overflow-x: auto;
     overflow-y: hidden; 
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.idsp-s3-d1-inner::-webkit-scrollbar {
    display: none; /* Chrome */
}

.idsp-s3-d2-card {
    flex: 0 0 auto;
     width: 343px;
     display: flex;
     flex-direction:column;
     gap: 20px;

}
.idsp-s3-d2-card-d2{
    display: flex;
    flex-direction:column;
    gap:15px;
}
.idsp-s3-d2-card-d1{
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        to bottom,
        #faf2fc,
        #f8f5f5
    );
    height: 252px;
    width: 343px;
    border-radius: 20px;
}
.idsp-s3-d2-card-d1 img{
    width: 252px;
    height: 166px;
}
.idsp-s3-d2-card .idsp-s3-d2-card-d2 h3{
    font-weight: 700;
    color: #281438;
    font-size: 20px;
}
.idsp-s3-d2-card .idsp-s3-d2-card-d2 p{
    color: #535353;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    width: 100%;
    max-width: 322px;
}


.idsp-s3-d3{
    display: flex;
    gap: 10px;
}

.idsp-s3-d3-left,
.idsp-s3-d3-right{
    width: 100%;
    min-width: 74px;
    background-color: #f9f2fb;
    cursor: pointer;
    padding: 13px 0;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.idsp-s3-d3-right svg path{
    fill:#c0aeca;
}
.idsp-s3-d3-right.active{
    background-color:#2b1437;
}
.idsp-s3-d3-right.active svg path{
    fill:#fff;
}
.idsp-s3-d3-left svg path {
    fill: #bfb0cc; /* default color */
}
.idsp-s3-d3-left.active {
    background-color: #2b1437;
}
.idsp-s3-d3-left.active svg path {
    fill: #fff;
}


.idsp-s3-d3{
    align-self:center;
}


.idsp-s3-d2-card:last-child {
    margin-right: 10px; 
}

.idsp-s3-d3{
    padding-right:50px;
}

.idsp-s4{
        background: url(images/services/idsp-s5-backgroundImg.svg) left top / contain no-repeat rgb(3, 0, 0);
        padding: 60px 130px;
        color: #fff;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-right: 0px;
}

.idsp-s4-h1{
    font-family: "Guminert", sans-serif;
    font-weight: 600;
    font-size: 40px;
}


.idsp-s4-d2 {
  position: relative;
  width: 90%;
  height: 8px;
  background-color: #322f2f; 
  margin: 42px 0;
  margin-left: 0;
  margin-right: auto;
  border-radius: 4px;
  padding-right: 130px;
}

.idsp-s4-d2-progress-line{
  position: absolute;
  height: 100%;
  background-color: #9e2ffa;
  width: 0%; 
  border-radius: 4px;
  transition: width 0.3s ease;
  top: 0;
  left: 0;
  z-index: 1;
  transition: width 0.3s ease, left 0.3s ease;
}

.idsp-s4-d2-dots {
  position: absolute;
  top: 50%;
  left: 0;
  width: 87%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 2;
}

.idsp-s4-d2-dot {
  width: 22px;   
  height: 22px;
  background-color: #454242;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 2;
}

.idsp-s4-d2-dot.active {
  background-color: #9e2ffa;
}

 .idsp-s4-d2-d3 p{
    top: 32px;
 }
.idsp-s4-d2-d3 p:nth-child(1){
    top: 32px;
    position: absolute;
    left: 0;
}
.idsp-s4-d2-d3 p:nth-child(2){
    position: absolute;
    left: 22%;
}
.idsp-s4-d2-d3 p:nth-child(3){
    position: absolute;
    left: 43%;
}
.idsp-s4-d2-d3 p:nth-child(4){
    position: absolute;
    left: 64%;
}
.idsp-s4-d2-d3 p:nth-child(5){
    position: absolute;
    left: 85%;
}

.idsp-s4-d2-d3 p{
    font-family: "Guminert", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}
.idsp-s4-d2-d3 p:nth-child(2){
    font-weight: 500;
}
.idsp-s4-d2-d3 p:nth-child(3){
    font-weight: 400;
}
.idsp-s4-d2-d3 p:nth-child(4){
    font-weight: 400;
}
.idsp-s4-d2-d3 p:nth-child(5){
    font-weight: 300;
}
.idsp-s4-cards{
    margin-top: 50px;
}
.idsp-s4-cards-inner{
    display: flex;
overflow-x: auto;
     overflow-y: hidden; 
    scroll-behavior: smooth;
    scrollbar-width: none;
    gap: 25px;
}
.idsp-s3-d1-inner::-webkit-scrollbar {
    display: none; 
}

.idsp-s4-card{
    display: flex;
    flex-direction:column;
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  height: 394px;
  width: 347px;
  flex: 0 0 auto;
  border-radius: 20px;
  border:1px solid #5b535c;
}
.idsp-s4-card-d2 p{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #B9B9B9;
}
.idsp-s4-card-d2 ul{
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: #B9B9B9;
    padding-left: 20px;
}

.idsp-s4-card:last-child{
    margin-right: 20px;
}
.idsp-s4-card:nth-child(3){
    gap: 0;
    gap: 12px;
    
}
.idsp-s4-card-d1{
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.idsp-s4-card-d1 h1{
    font-weight: 600;
    font-size: 20px;
}
.idsp-s4-card-d1 svg path{
    fill: #fff;
}

.idsp-s4-card.active{
  background: #fff;
  border:1px solid #5b535c;
}

.idsp-s4-card.active .idsp-s4-card-d2 p,
.idsp-s4-card.active .idsp-s4-card-d2 ul{
    color: #535353;
}

.idsp-s4-card.active .idsp-s4-card-d1 h1{
    font-weight: 600;
    font-size: 20px;
    color:#281438;
}
.idsp-s4-card.active .idsp-s4-card-d1 svg path{
    fill: #9D30FD;
}

.idsp-s5{
    padding: 60px 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.idsp-s5 h1{
    color: #281438;
    font-weight: 600;
    font-family: "Guminert", sans-serif;
    font-size: 40px;
    line-height: 52px;
    text-align: center;
}
.idsp-s5 p{
    color: #535353;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    width: 100%;
    max-width: 770px;
    text-align: center;
}

.idsp-s5-d1{
    display: flex;
    gap: 90px;
    margin-top: 60px;
}

.idsp-s5-d1-card,
.idsp-s5-d2-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.idsp-s5-d1-card p,
.idsp-s5-d2-card p{
    width: 100%;
    max-width: 271px;
    color: #535353;
    font-size: 16px;
    line-height: 26px;
}
.idsp-s5-d1-card svg,
.idsp-s5-d2-card svg{
    height: 42px;
}

.idsp-s5-d1-card h3,
.idsp-s5-d2-card h3{
    color: #281438;
    font-family: "Guminert", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
}


.idsp-s5-d2{
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
    margin-top: 30px;
}
.idsp-s5-d2-card:nth-child(1){
    flex: 0 0 46%;
    max-width: 343px;
}
.idsp-s5-d2-card:nth-child(1) p{
    width: 100%;
    width: 300px;
}
.idsp-s5-d2-card:nth-child(2){
    flex: 0 0 54%;
    max-width: 343px;
}



.idsp-s7{
    padding: 70px 130px;
    padding-right: 120px;
    display: flex;
    background:#fbf8f8;
}
.idsp-s7-d1{
    flex: 0 0 43%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 5;
}
.idsp-s7-faqs{
    flex:0 0 57%;
}
.idsp-s7-d1 h1{
    font-family: "Guminert", sans-serif;
    font-weight: 600;
    color: #2b1437;
    font-size: 40px;
    line-height: 52px;
}
.idsp-s7-d1-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width:353px;
    height: 100%;
    max-height: 388px;
     background: linear-gradient(to bottom, #e9e1ec 0%, #ffffff 100%);
     padding-top: 40px;
     padding-bottom: 80px;
     border-radius: 20px;
}
.idsp-s7-d1-card h4{
    color: #281438;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}
.idsp-s7-d1-card p{
    color: #535353;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    text-align: center;
    width: 100%;
    max-width: 250px;

}
.idsp-s7-d1-card button{
    width: 100%;
    max-width: 273px;
    outline: none;
    border: none;
    background-color: #9D30FD;
    padding: 15px 30px;
    border-radius: 30px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    cursor: pointer;
}

.idsp-s7-faqs{
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid #2b1437;
    padding-top: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}
.idsp-s7-faq{
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-bottom: 1px solid #ddd1e1;
    cursor: pointer;
    transition: padding-bottom 0.3s ease-in-out;
}
.idsp-s7-faq-d1{
    display: flex;
    justify-content: space-between;
    padding-right: 15px;
    gap: 40px;
}
.idsp-s7-faq-d1 img{
    max-width: 12px;
}
.idsp-s7-faq-d2 p{
    color: #281438;
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    width: 100%;
    max-width: 580px;
}

.idsp-s7-faq-d2 p{
    color: #535353;
    font-size:16px;
    line-height: 26px;
    font-weight: 400;
}
.idsp-s7-faq-d2{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}
.idsp-s7-faq.active{
    padding-bottom: 40px;
}
.idsp-s7-faq.active .idsp-s7-faq-d2 {
    max-height: 200px; 
    opacity: 1;
}

.idsp-s7-faq-d1 img {
    transition: transform 0.3s ease;
}

.idsp-s9{
    padding: 0 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 50px;
    width: 100%;
    max-width: 1092px;
    margin: 0 auto;
    border-radius: 30px;
    background:
        radial-gradient(
            100% 180% at left bottom,
            rgba(157, 48, 253, 0.6) 0%,
            rgba(157, 48, 253, 0.5) 15%,
            rgba(157, 48, 253, 0.4) 30%,
            /* rgba(157, 48, 253, 0.3) 45%, */
            rgba(157, 48, 253, 0.2) 50%,
            transparent 60%
        ),
        radial-gradient(
            100% 180%  at right top,
            rgba(157, 48, 253, 0.5) 0%,
            rgba(157, 48, 253, 0.25) 25%,
            transparent 40%
        ),
        #09020b;
}
.idsp-s9 h1{
    font-family: "Guminert", sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
    color: #FFFFFF;
    width: 100%;
    max-width: 387px;
    text-align: center;
}
.idsp-s9 p{
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF;
    text-align: center;
}
.idsp-s9 button{
    background-color: #9D30FD;
    border: none;
    outline: none;
    padding: 14px 30px;
    border-radius: 30px;
    width: 100%;
    max-width: 273px;
    cursor: pointer;
    color: #fff;
    font-size:16px;
    /* font-weight: 500; */
    font-family: "Inter", sans-serif;
}


/* Services Page Styles End */


/* Contact Us Page Styles Start */

.idcup-s1{
    display: flex;
    padding: 28px 0px;
    justify-content: space-between;
    gap: 30px;
    width: 80%;
    margin: 0 auto;
    border-radius: 30px;
    margin-top: 20px;
}

.idcup-s1-left{
    flex: 1;
    padding-top: 30px;
}


.idcup-s1-left h1:nth-child(1){
    font-family: "Guminert", sans-serif;
    font-weight: 700;
    color: #281438;
    font-size: 54px;
    line-height: 66px;
}
.idcup-s1-left-reviews{
    margin-top: 50px;
}
.idcup-s1-left-review{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.idcup-s1-left-review-d1{
    display: flex;
    gap: 20px;
}
.idcup-s1-left-review-d1 img{
    height: 100%;
    width: 100%;
    max-height: 53px;
    max-width: 53px;
}
.idcup-s1-left-review-d1 div{
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.idcup-s1-left-review p{
    color: #281438;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    width: 100%;
    max-width: 411px;
}
.idcup-s1-left-review-d1 div p{
    font-weight: 600;
    color: #281438;
    font-size: 16px;
    line-height: 28px;
}
.idcup-s1-left-review-d1 div p:nth-child(2){
    font-weight: 400;
    color: #6E5583;
    font-size: 16px;
    line-height: 26px;
}
.idcup-s1-dots{
    display: flex;
    gap: 10px;
    margin-top: 30px;

}
.idcup-s1-dot{
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #E5DEED;
    cursor: pointer;
}
.idcup-s1-dot.active{
    background-color: #281438;
}
.idcup-s1-right{
    flex: 1;
    display: flex;
    justify-content: center;
    background:
    radial-gradient(
        100% 180% at left bottom,
        rgba(90, 10, 160, 0.7) 0%,
        rgba(90, 10, 160, 0.55) 15%,
        rgba(90, 10, 160, 0.4) 30%,
        rgba(90, 10, 160, 0.2) 50%,
        transparent 60%
    ),
    radial-gradient(
        100% 180% at right top,
        rgba(90, 10, 160, 0.6) 0%,
        rgba(90, 10, 160, 0.3) 25%,
        transparent 40%
    ),
    #030006;


    padding: 50px 0;
    border-radius: 30px;
}



.idcup-s1-contact-form h2{
    color: #FFFFFF;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
}

.idcup-s1-contact-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    
}
.idcup-s1-form-group {
    width: 100%;
}

.idcup-s1-contact-form {
    width: 100%;
    max-width: 470px;
}
.idcup-s1-form-group input[type="text"],
.idcup-s1-form-group input[type="email"]{
    padding: 10px 25px;
    width: 100%;
    border-radius: 30px;
    border: none;
    outline: none;
    font-weight: 400;
    color: #281438;
    font-size: 17px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
}

.idcup-s1-form-group input[type="tel"]{
    background: transparent;
    border: none;
    outline: none;
    border: 1px solid #7d7a7a;
    padding: 10px 20px;
    width: 100%;
    border-radius: 30px;
    font-weight: 400;
    color: #fff;
    font-size: 17px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    background: rgba(37, 29, 43, 0.6);
}
.idcup-s1-form-group textarea{
    width: 100%;
    /* background: transparent; */
    border: none;
    outline: none;
    border: 1px solid #7d7a7a;
    padding:0px 20px;
    padding-top: 10px;
    width: 100%;
    border-radius: 30px;
    font-weight: 400;
    color: #fff;
    font-size: 17px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
    max-height: 130px;
    font-weight: 300;
    resize: none;
    background: rgba(37, 29, 43, 0.6);
}
.idcup-s1-form-group textarea {
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.idcup-s1-form-group textarea::-webkit-scrollbar {
  display: none;
}


.idcup-s1-contact-form button{
    background: #9e2ffa;
    border: none;
    outline: none;
    border: 1px solid #7d7a7a;
    padding: 10px 20px;
    width: 100%;
    max-width: 222px;
    border-radius: 30px;
    font-weight: 400;
    color: #fff;
    font-size: 17px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
    cursor: pointer;
}


.idcup-s1-left-review {
    display: none;
}
.idcup-s1-left-review.active {
    display: flex;
}

.idcup-s2{
    margin-top: 50px;
    padding: 0 130px;
    padding-bottom: 130px;
    display: flex;
    gap: 50px;
    flex-direction: column;

}

.idcup-s2-h{
    font-family: "Guminert", sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 52px;
}
.idcup-s2-cards{
    display: flex;
    gap: 20px;
}

.idcup-s2-card{
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.idcup-s2-card div{
    height: 38px;
    width: 38px;
    border-radius: 50%;
    background: #F0E9F5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.idcup-s2-card div p{
    color: #8A6DA1;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
}
.idcup-s2-card h4{
    color: #281438;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
}
.idcup-s2-card p{
    color: #535353;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.form-alert-idcup-s1-right {
    position: absolute;
    top: 45px;
    width: 100%;
    max-width: 450px;
    padding: 5px;
    background: rgba(40, 167, 69, 0.95);
    color: #fff;
    font-weight: 500;
    text-align: center;
    border-radius: 5px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 10;
}
.form-alert-idlp-s9-right {
    position: absolute;
    top: -8px;
    width: 100%;
    max-width: 350px;
    padding: 5px;
    background: rgba(40, 167, 69, 0.95);
    color: #fff;
    font-weight: 500;
    text-align: center;
    border-radius: 5px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 10;
}
/* .form-alert-idlp-s9-right{

} */

.form-alert.show {
    transform: translateY(0);
}

.idlp-s9-right,
.idcup-s1-right{
    position: relative;
}
/* Contact Us Page Styles End */

/* About us page styesl Start */

.idabp-s1{
    padding: 70px 130px 70px 137px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.idabp-s1::before{
    content: "";
    position: absolute;
    height: 638px;
    width: 660px;
    background-color:#CB91FF;
    opacity: 0.28;
    border-radius: 50%;
    right:-330px;
    top: 50%;
    transform: translateY(-20%);
    filter: blur(120px);
    z-index: 0;
}

.idabp-s1-d1{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.idabp-s1-d1 p{
    color: #9D30FD;
    font-size:18px;
    font-weight: 600;

}

.idabp-s1-d1 h1{
    color: #281438;
    font-size: 54px;
    font-family: 'Guminert', sans-serif;
    font-weight: 700;
    line-height: 70px;
}

.idabp-s1-d2{
    margin-top: 60px;
    display: flex;
    justify-content: center;
    padding-left: 10px;
    padding-bottom: 80px;
    border-bottom: 1px solid #D6D6D6;
}

.idabp-s1-d2-imgs{
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px 32px;
    place-items: center;
}
.idabp-s1-d2-imgs svg:first-child {
    justify-self: start;
}
.idabp-s1-d2-imgs svg:nth-child(5),
.idabp-s1-d2-imgs svg:nth-child(6),
.idabp-s1-d2-imgs svg:nth-child(7){
    margin-top: -20px;
}
.idabp-s1-d2-imgs svg:nth-child(8){
    margin-top: -5px;
}
.idabp-s1-d2-p{
    flex: 1;
    padding-left:100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 10px;
}
.idabp-s1-d2-p p{
    font-size: 16px;
    color: #535353;
    font-weight: light;
    line-height: 26px;
}

.idabp-s1-d3{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 190px 10px 0px ;
    border-bottom: 1px solid #D6D6D6;
}
.idabp-s1-d3-p1{
    color: #281438;
    font-size: 24px;
    line-height: 70px;
    font-family: 'Guminert', sans-serif;
    font-weight: 700;
}
.idabp-s1-d3-phone,
.idabp-s1-d3-email{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.idabp-s1-d3-phone p:nth-child(1),
.idabp-s1-d3-email p:nth-child(1){
    color: #535353;
    font-size: 16px;
    line-height: 26px;
}
.idabp-s1-d3-phone p:nth-child(2),
.idabp-s1-d3-email p:nth-child(2){
    color: #281438;
    font-size: 16px;
    font-weight: bold;
    line-height: 26px;
}

.idabp-s2{
    width: 100%;
    background-color: #000000;
}
.idabp-s2-wrapper{
    padding: 70px 130px 130px 137px;
    display: flex;
}
.idabp-s2-d1{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 70px;
}
.idabp-s2-d1-d1{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.idabp-s2-d1-d1 h1{
    color: #9D30FD;
    font-size: 40px;
    line-height: 52px;
    font-family: 'Guminert', sans-serif;
    font-weight: 600;
}
.idabp-s2-d1-d1 p{
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    width: 100%;
    max-width: 430px;
}

.idabp-s2-d2{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.idabp-s3{
    padding: 70px 120px 130px 137px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
    overflow: hidden;
}
.idabp-s3::before{
    content: "";
    position: absolute;
    width: 546px;
    height: 545px;
    background: #CB91FF;
    opacity: 0.28;
    border-radius: 50%;
    left: -273px;
    top: 50%;
    transform: translateY(-50%);
    filter: blur(120px);
    z-index: 0;
}
.idabp-s3-h1{
    color: #281438;
    font-size: 54px;
    line-height: 70px;
    font-family: 'Guminert', sans-serif;
    font-weight: 700;
    text-align: center;
}
.idabp-s3-d2{
    display: flex;
    justify-content: space-between;
}
.idabp-s3-d2-d1{
    padding-top: 13px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.idabp-s3-d2-d1 h1{
    color: #281438;
    font-size: 40px;
    line-height: 52px;
    font-family: 'Guminert', sans-serif;
    font-weight: 600;
    width: 100%;
    max-width: 340px;
}

.idabp-s3-d2-d1 p{
    color: #535353;
    font-size: 16px;
    line-height: 26px;
    width: 100%;
    max-width: 390px;
}
.idabp-s3-d2-d1 button{
    width: 100%;
    max-width: 157px;
    padding: 7px 30px;
    border: none;
    outline: none;
    border: 1px solid #271438;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.idabp-s3-d2-d1 button p{
    color: #271438;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

.idabp-s3-d2-d1 button:hover{
    background-color: #271438;
    border: 1px solid #fff;
}
.idabp-s3-d2-d1 button:hover p{
    color: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.idabp-s4{
    background: url(images/home/ids4-arc.svg) left top / cover no-repeat rgb(3, 0, 0);
    overflow: hidden;
}
.idabp-s4-wrapper{
    padding: 70px 130px 200px 137px;
    display: flex;
    flex-direction: column;
    gap: 100px;
    overflow: hidden;
}
.idabp-s4-d1{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.idabp-s4-d1 h1{
    color: #ffffff;
    font-size: 40px;
    line-height: 50px;
    font-family: 'Guminert', sans-serif;
    font-weight: 500;
}
.idabp-s4-d1 p{
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    width: 100%;
    max-width: 795px;
}
.idabp-s4-d2{
    display: flex;
    align-items: center;
    padding-left: 25px;
    justify-content: space-between;
}
.idabp-s4-d2-stats{
    display: flex;
    flex-direction: column;
    gap: 65px;
}
.idabp-s4-d2-stats p:nth-child(1){
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 300;
}
.idabp-s4-d2-stats p:nth-child(2){
    font-size: 80px;
    line-height: 50px;
    color: #ffffff;
    font-weight: 300;
}
.idabp-s4-d2-stats:nth-child(1),
.idabp-s4-d2-stats:nth-child(2),
.idabp-s4-d2-stats:nth-child(3){
    position: relative;
}
.idabp-s4-d2-stats:nth-child(1)::after,
.idabp-s4-d2-stats:nth-child(2)::after,
.idabp-s4-d2-stats:nth-child(3)::after{
    content: "";
    position: absolute;
    height: 110%;
    width: 1px;
    background-color: #373737;
    top: 0;
    right: 25px;
}
.idabp-s4-d2-stats:nth-child(1){
    flex: 27%;
}
.idabp-s4-d2-stats:nth-child(2){
    flex: 27%;
}
.idabp-s4-d2-stats:nth-child(3){
    flex: 27%;
}
.idabp-s4-d2-stats:nth-child(4){
    flex: 23%;
}

.idabp-s4-d2-stats:nth-child(2) p:nth-child(1),
.idabp-s4-d2-stats:nth-child(3) p:nth-child(1),
.idabp-s4-d2-stats:nth-child(4) p:nth-child(1){
    padding-left: 5px;
}

/* About us page styles End */

/* Portfolio Page Styles Start */
.idportp-s1{
    padding: 15px 122px 97px 138px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    /* border: 1px solid #D6D6D6; */
}
.idportp-s1::after{
    content: "";
    position: absolute;
    height: 1px;
    width: calc(100% - 255px);
    bottom: 0;
    transform: translateX(-50%);
    left: 50%;
    background-color:#D6D6D6;
}

.idportp-s1-d1{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
}
.idportp-s1-d1 p:nth-child(1){
    color: #9D30FD;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.idportp-s1-d1 h1:nth-child(2){
    color: #281438;
    font-size: 54px;
    line-height: 66px;
    font-family: 'Guminert', sans-serif;
    font-weight: 700;
    width: 100%;
    max-width: 500px;
}
.idportp-s1-d1 p:nth-child(3){
    color:#272727;
    font-size: 18px;
    line-height: 28px;
    font-weight: normal;
    width: 100%;
    max-width: 500px;
    padding-top: 15px;
}

.idportp-s1-d2{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}
.idportp-s1-d2 img{
    width: 100%;
    max-width: 546px;
}

.idportp-s2{
    padding: 42px 122px 97px 130px;
    display: flex;
    gap: 20px;
}
.idportp-s2-d1{
    flex: 25%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.idportp-s2-d1 p:nth-child(1){
    font-size: 26px;
    font-weight: 600;
    line-height: 52px;
    color: #281438;
    font-family: 'Guminert', sans-serif;
}
.idportp-s2-d1 .idportp-s2-d1-toggles{
    padding: 4px 12px;
    border-radius: 100px;
    background-color: #ffffff;
    width: fit-content;
    border: 1px solid #271438;
    cursor: pointer;
}
.idportp-s2-d1 .idportp-s2-d1-toggles p{
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #271438;
}
.idportp-s2-d1 .idportp-s2-d1-toggles.active{
    padding: 4px 12px;
    border-radius: 100px;
    background-color: #271438;
    width: fit-content;
}
.idportp-s2-d1 .idportp-s2-d1-toggles.active p{
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #ffffff;
}

.idportp-s2-display-D h1:nth-child(1){
    color: #281438;
    font-weight: 600;
    font-size: 40px;
    line-height: 52px;
    font-family: 'Guminert', sans-serif;
}


.idportp-s2-display{
    flex: 75%;
}
.idportp-s2-display-D{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.idportp-s2-display-D-d1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f4fe;
    padding: 15px 23px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.idportp-s2-display-D-d1::after{
    content: "";
    position: absolute;
    bottom: -180px;
    right: -380px;
    height: 500px;
    width: 500px;
    filter: blur(120px);
    z-index: 0;
    background: #71389E;
    visibility: hidden;
    pointer-events: none;
}

.idportp-s2-display-D-d1-d1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
idportp-s2-display-D-d1-d1-img{
    height: 100%;
    width: 100%;
    max-height: 294px;
    max-width: 294px;
}
.idportp-s2-display-D-d1-d1-D{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 10px;
}
.idportp-s2-display-D-d1-d1-D-d1{
    width: fit-content;
    padding: 5px 10px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.idportp-s2-display-D-d1-d1-D-p1{
    color: #281438;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}
.idportp-s2-display-D-d1-d1-D-d2{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.idportp-s2-display-D-d1-d1-D-d2 div{
    padding: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5DEED;
    background-color: #f4eff9;
    border-radius: 30px;
}
.idportp-s2-display-D-d1-d1-D-d2 div p{
    color: #6E5583;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    
}
.idportp-s2-display-D-d1-d1-D-d3{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}
.idportp-s2-display-D-d1-d1-D-d3 div{
    display: flex;
    flex-direction: column;
}
.idportp-s2-display-D-d1-d1-D-d3 div h3{
    color: #272727;
    font-weight: 600;
    line-height: 38px;
    font-size: 30px;
    transition: all 0.3s ease-in-out;
}
.idportp-s2-display-D-d1-d1-D-d3 div p{
    color: #272727;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
} 
.idportp-s2-display-D-d1-d1-D-d4{
    visibility: hidden;
}
.idportp-s2-display-D-d1-d1-D-d4 a{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.idportp-s2-display-D-d1-d1-D-d4 a p{
    color: #9D30FD;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
}


.idportp-s2-display-D-d1:hover{
    background-color: #000000;
}
.idportp-s2-display-D-d1:hover::after{
    visibility: visible;
}
.idportp-s2-display-D-d1:hover .idportp-s2-display-D-d1-d1-D-d1{
    padding: 5px 10px;
    border-radius: 10px;
    background-color: white;
    width: fit-content;
}
.idportp-s2-display-D-d1:hover .idportp-s2-display-D-d1-d1-D-d4{
    visibility: visible;
}
.idportp-s2-display-D-d1:hover .idportp-s2-display-D-d1-d1-D-p1{
    color: #ffffff;
}

.idportp-s2-display-D-d1:hover .idportp-s2-display-D-d1-d1-D-d3 div h3{
    color: #ffffff;
}
.idportp-s2-display-D-d1:hover .idportp-s2-display-D-d1-d1-D-d3 div p{
    color: #ffffff;
}


.idportp-s2-display-D button{
    border: none;
    outline: none;
    padding: 12px 30px;
    border-radius: 50px;
    background-color: #ffffff;
    border: 1px solid #272727;
    cursor: pointer;
    width: 100%;
    max-width: 145px;
    align-self:center;
    transition: all 0.3s ease-in-out;
}

.idportp-s2-display-D button p{
    font-size: 16px;
    color: #272727;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease-in-out;
}
.idportp-s2-display-D button:hover{
    background-color: #272727;
}
.idportp-s2-display-D button:hover p{
    color: #ffffff;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}


/* Portfolio Page Styles End */

/* Case Study RBL Page Styles Start */

.idcsRbl-s1{
    padding: 22px 122px 47px 138px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}
.idcsRbl-s1::after{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: 1px;
    width: calc(100% - 260px);
    background-color: #D6D6D6;
}
.idcsRbl-s1-d1{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
}
.idcsRbl-s1-d1 p:nth-child(1){
    font-size: 16px;
    line-height: 26px;
    color: #6E6E6E;
    font-weight: 400;
}
.idcsRbl-s1-d1 p:nth-child(3){
    font-size: 16px;
    line-height: 26px;
    color: #272727;
    font-weight: 400;
}


.idcsRbl-s1-d2{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}
.idcsRbl-s1-d2-img-wrapper{
    position: relative;
    width: 100%;
    max-width: 1091px;
    border-radius: 20px;
    overflow: hidden;
}

.idcsRbl-s1-d2-img{
    display: block;
    border-radius: 20px;
}

.idcsRbl-s1-d2-img-wrapper::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to right,
        rgba(40, 20, 56, 1) 0%,
        rgba(64, 46, 78, 0.98) 25%,
        rgba(78, 61, 91, 0.88) 40%,
        rgba(98, 83, 109, 0.70) 55%,
        rgba(255, 255, 255, 0) 100%
    );
}

.idcsRbl-s1-d2-d2{
    position: absolute;
    top: 43px;
    left: 56px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
}

.idcsRbl-s1-d2-d2-d1{
    padding: 4px 12px;
    border-radius: 30px;
    background-color: #412A53;
    /* border: 1px solid #272727; */

}
.idcsRbl-s1-d2-d2-d1 p{
    font-size: 16px;
    line-height: 26px;
    color: #A18CB1;
    font-weight: 300;
}

.idcsRbl-s1-d2-d2-h1{
    font-size: 40px;
    line-height: 48px;
    font-family: 'Guminert', sans-serif;
    font-weight: 700;
    width: 100%;
    max-width: 528px;
    color: #ffffff;
}
.idcsRbl-s1-d2-d2-d2{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.idcsRbl-s1-d2-d2-d2 div{
    background-color: #281438;
    height: 47px;
    width: 47px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.idcsRbl-s1-d3{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1091px;
    align-self: center;
}
.idcsRbl-s1-d3 div{
    background-color: #F9F4FF;
    border-radius: 20px;
    padding: 20px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
}
.idcsRbl-s1-d3 div div{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0px;
}
.idcsRbl-s1-d3 div div h1{
    color: #9D30FD;
    font-size: 58px;
    line-height: 38px;
    font-weight: 600;
}
.idcsRbl-s1-d3 div div p{
    color: #9D30FD;
    font-size: 38px;
    font-weight:600;
}
.idcsRbl-s1-d3 div p{
    width: 100%;
    max-width: 180px;
    font-size: 16px;
    line-height: 20px;
    color: #272727;
    font-weight: 400;
}

.idcsRbl-s2{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 45px 122px 77px 138px;
    gap: 60px;
}
.idcsRbl-s2-d1{
    flex: 27.2%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 40px;
}
.idcsRbl-s2-d1-d1{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.idcsRbl-s2-d1-d1-d1,
.idcsRbl-s2-d1-d1-d2{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.idcsRbl-s2-d1-d1-d1 p:nth-child(1),
.idcsRbl-s2-d1-d1-d2 p:nth-child(1){
    color: #271438;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}
.idcsRbl-s2-d1-d1-d1 p:nth-child(2),
.idcsRbl-s2-d1-d1-d2 p:nth-child(2){
    color: #535353;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    
}
.idcsRbl-s2-d1-d2{
    width: 100%;
    background-color: #FCF7E7;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 20px 12px;
}
.idcsRbl-s2-d1-d2 h6{
    color: #272727;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom:5px;
}

.idcsRbl-s2-d1-d2 div{
    padding: 1px 12px;
    background-color: #fff;
    border-radius: 10px;
    width: 100%;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.idcsRbl-s2-d1-d2 div p{
    font-size: 14px;
    line-height: 36px;
    font-weight: 400;
    color:#281438 ;
    transition: all 0.3s ease-in-out;
}

.idcsRbl-s2-d1-d2 div.active{
    background-color: #9D30FD;
}
.idcsRbl-s2-d1-d2 div.active p{
    color:#ffffff; 
}



.idcsRbl-s2-d2{
    flex: 72.8%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.idcsRbl-s2-d2-CP{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.idcsRbl-s2-d2-CP h1{
    font-size: 32px;
    color: #272727;
    font-family: 'Guminert', sans-serif;
    font-weight: 800;
    line-height: 34px;
}

.idcsRbl-s2-d2-CP > p {
    color: #272727;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.idcsRbl-s2-d2-CP > p span{
    font-weight: 600;
}

.idcsRbl-s2-d2-CP-d1{
    margin-top: 30px;
    background-color: #F9F5FE;
    border-radius: 10px;
    padding: 25px 21px 40px 21px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.idcsRbl-s2-d2-CP-d1 > p{
    color: #272727;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}
.idcsRbl-s2-d2-CP-d1 >div{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}
.idcsRbl-s2-d2-CP-d1 > div > div{
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items:left;
}

.idcsRbl-s2-d2-CP-d1 > div > div p:nth-child(1){
    color: #272727;
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
}
.idcsRbl-s2-d2-CP-d1 > div > div p:nth-child(2){
    color: #6E6E6E;
    font-weight: 400;
}

.idcsRbl-s2-d2-CH{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.idcsRbl-s2-d2-CH-d1{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.idcsRbl-s2-d2-CH-d1 h1{
    color: #272727;
    font-size: 32px;
    line-height: 34px;
    font-weight: 800;
    font-family: 'Guminert', sans-serif;
}
.idcsRbl-s2-d2-CH-d1 p{
    color: #272727;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.idcsRbl-s2-d2-CH-d1 p span{
    font-weight: 600;
}

.idcsRbl-s2-d2-CH-d2{
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}
.idcsRbl-s2-d2-CH-d2 h1{
    color: #272727;
    font-size: 32px;
    line-height: 34px;
    font-weight: 800;
    font-family: 'Guminert', sans-serif;
}
.idcsRbl-s2-d2-CH-d2 > p{
    color: #272727;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.idcsRbl-s2-d2-CH-d2 > ul{
    margin: 0;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.idcsRbl-s2-d2-CH-d2 > ul li p{
    color: #272727;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.idcsRbl-s2-d2-CH-d2 > div{
    width: 100%;
    max-width: 749px;
    overflow: hidden;
    border-radius: 20px;
    margin-top:20px;
}
.idcsRbl-s2-d2-CH-d2 > div img{
    display: block;
    width: 100%;
    max-width: 749px;
    border-radius: 20px;
}
.idcsRbl-s2-d2-CH-d3{
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 5px;
}

.idcsRbl-s2-d2-CH-d3 h1{
    font-size: 26px;
    line-height: 26px;
    color: #272727;
    font-weight: 700;
    font-family: 'Guminert', sans-serif;
}
.idcsRbl-s2-d2-CH-d3 p{
    color: #272727;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.idcsRbl-s2-d2-CH-d4{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.idcsRbl-s2-d2-CH-d4 > h1{
    font-size: 26px;
    line-height: 26px;
    color: #272727;
    font-weight: 700;
    font-family: 'Guminert', sans-serif;
}

.idcsRbl-s2-d2-CH-d4 p{
    color: #272727;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.idcsRbl-s2-d2-CH-d4 ol{
    margin: 0;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.idcsRbl-s2-d2-CH-d4 li{
    color: #272727;
}
.idcsRbl-s2-d2-CH-d4 > div{
    padding: 25px 45px 25px 30px;
    background-color: #F7F0DA;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.idcsRbl-s2-d2-CH-d4 > div p:nth-child(1){
    color: #272727;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}
.idcsRbl-s2-d2-RES{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.idcsRbl-s2-d2-RES-d1{
    display: flex;
    flex-direction: column;
    gap: 25px;

}
.idcsRbl-s2-d2-RES-d1 > h1{
    color: #272727;
    font-size: 32px;
    line-height: 34px;
    font-weight: 800;
    font-family: 'Guminert', sans-serif;
}
.idcsRbl-s2-d2-RES-d1 > p{
    color: #272727;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.idcsRbl-s2-d2-RES-d2{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.idcsRbl-s2-d2-RES-d2 > h1{
font-size: 26px;
    line-height: 26px;
    color: #272727;
    font-weight: 700;
    font-family: 'Guminert', sans-serif;

}
.idcsRbl-s2-d2-RES-d2 > div:nth-child(2){
    width: 100%;
    max-width: 749px;
    overflow: hidden;
    border-radius: 10px;
}
.idcsRbl-s2-d2-RES-d2 > div:nth-child(2) img{
    display: block;
    border-radius: 10px;
    width: 100%;
    max-width: 749px;
}
.idcsRbl-s2-d2-RES-d2 > p{
    color: #272727;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.idcsRbl-s2-d2-RES-d2 > div:nth-child(4){
    padding: 24px 45px 50px 35px;
    border-radius: 10px;
    background-color: #F7F0DA;
}
.idcsRbl-s2-d2-RES-d2 > div:nth-child(4) ul{
    margin: 0;
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.idcsRbl-s2-d2-RES-d2 > div:nth-child(4) ul li p{
    color: #272727;
    font-size:16px;
    font-weight: 400;
    line-height: 30px;
}
.idcsRbl-s2-d2-RES-d3{
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}
.idcsRbl-s2-d2-RES-d3 > h1{
font-size: 26px;
    line-height: 26px;
    color: #272727;
    font-weight: 700;
    font-family: 'Guminert', sans-serif;

}
.idcsRbl-s2-d2-RES-d3 > div{
    width: 100%;
    max-width: 749px;
    overflow: hidden;
    border-radius: 10px;
}
.idcsRbl-s2-d2-RES-d3 > div img{
    display: block;
    border-radius: 10px;
    width: 100%;
    max-width: 749px;
}
.idcsRbl-s2-d2-RES-d3 > p{
    color: #272727;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.idcsRbl-s2-d2-CON{
    display: flex;
    flex-direction: column;
    gap: 45px;
}
.idcsRbl-s2-d2-CON-d1{
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.idcsRbl-s2-d2-CON-d1 > p{
    color: #281438;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
}

.idcsRbl-s2-d2-CON-d1 > div{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}
.idcsRbl-s2-d2-CON-d1 > div > a div{
    background-color: #F4EFF8;
    border-radius: 5px;
    height: 47px;
    width: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.idcsRbl-s2-d2-CON-d2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000000;
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    max-width: 749px;
    height: fit-content;
    position: relative;
}

.idcsRbl-s2-d2-CON-d2::after{
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    height: 373px;
    width: 580px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(157, 48, 253, 0.8) 0%,
        rgba(157, 48, 253, 0.4) 40%,
        rgba(157, 48, 253, 0) 70%
    );
    filter: blur(120px);
    pointer-events: none;
}

.idcsRbl-s2-d2-CON-d2 > div:nth-child(1){
    flex: 53%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 35px 50px;
}
.idcsRbl-s2-d2-CON-d2 > div:nth-child(1) h1{
    color: #FFFFFF;
    font-size: 40px;
    line-height: 46px;
    font-weight: 600;
    font-family: 'Guminert', sans-serif;
}
.idcsRbl-s2-d2-CON-d2 > div:nth-child(1) p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #FFFFFF;
}

.idcsRbl-s2-d2-CON-d2 > div:nth-child(2){
    flex: 47%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.idcsRbl-s2-d2-CON-d2 > div:nth-child(2) button{
    border: none;
    outline: none;
    background-color: #9D30FD;
    padding: 15px 50px;
    border-radius: 50px;
    cursor: pointer;
}
.idcsRbl-s2-d2-CON-d2 > div:nth-child(2) button p{
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    font-weight: 400;
    line-height: 20px;
}




.idcsRbl-s3-d1-cards{
    display: flex;
    margin-top: 20px;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 2px;
}
.idcsRbl-s3-d1-card{
    background: #f4eff9;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    padding: 20px;
    gap: 20px;
    flex: 0 0 auto;
    width: 353px;
}
.idcsRbl-s3-d1-card h5{
    color: #281438;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}
.idcsRbl-s3-d1-card div p{
    color: #6E5583;
    font-size: 14px;
}
.idcsRbl-s3-d1-card img{
    height: 100%;
    width: 100%;
    max-width: 309px;
    max-height: 158px;
}

.idcsRbl-s3-d1-card-d1{
    display: flex;
    gap: 10px;
}
.idcsRbl-s3-d1-card-d1 div{
    padding: 3px 13px;
    border: 1px solid #E5DEED;
    border-radius: 20px;
}

.idcsRbl-s3-d1-card-d2 a {
    display: flex;
    gap: 10px;
    align-items: center;
}
.idcsRbl-s3-d1-card:hover{
    outline: 1px solid #882ad5;
    cursor: pointer;
}
.idcsRbl-s3-d1-card:hover .idcsRbl-s3-d1-card-d2 a p{
    color: #b362fc;
}
.idcsRbl-s3-d1-card:hover .idcsRbl-s3-d1-card-d2 a svg path {
    stroke: #b362fc;
}

.idcsRbl-s3-d2{
    display: flex;
    gap: 10px;
}

.idcsRbl-s3-d2-left,
.idcsRbl-s3-d2-right{
    width: 100%;
    min-width: 74px;
    background-color: #f9f2fb;
    cursor: pointer;
    padding: 13px 0;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.idcsRbl-s3-d2-right svg path{
    fill:#c0aeca;
}
.idcsRbl-s3-d2-right.active{
    background-color:#2b1437;
}
.idcsRbl-s3-d2-right.active svg path{
    fill:#fff;
}
.idcsRbl-s3-d2-left svg path {
    fill: #bfb0cc; /* default color */
}
.idcsRbl-s3-d2-left.active {
    background-color: #2b1437;
}
.idcsRbl-s3-d2-left.active svg path {
    fill: #fff;
}


.idcsRbl-s3-d2{
    align-self:center;
}

.idcsRbl-s3-d2{
    padding-right:50px;
}

.idcsRbl-s3{
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 45px 110px 77px 138px;
}
.idcsRbl-s3 > h1{
    color: #281438;
    font-size: 40px;
    line-height: 52px;
    font-weight: 600;
    font-family: 'Guminert', sans-serif;
    align-self: center;
}
/* Case Study RBL Page Styles End */


/* Case Studies Page Styles Start */
.idCSs-s1{
    padding: 35px 122px 47px 138px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.idCSs-s1-d1{
    display: flex;
    flex-direction: column;
    gap: 11px;
    text-align: center;
}
.idCSs-s1-d1 h1{
    color: #281438;
    font-size: 54px;
    line-height: 66px;
    font-weight: 700;
    font-family: 'Guminert', sans-serif;
}
.idCSs-s1-d1 p{
    font-size: 18px;
    line-height: 26px;
    color: #272727;
    font-weight: 400;
    width: 100%;
    max-width: 721px;
}

.idCSs-s1-d2{
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
    padding: 30px 0px 45px 40px;
    background-color: #281438;
    position: relative;
    margin-top: 40px;
}
.idCSs-s1-d2::after{
    content: "";
    position: absolute;
    top: -242px;
    right: -207px;
    height: 485px;
    width: 415px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(157, 48, 253, 0.8) 0%,
        rgba(157, 48, 253, 0.4) 40%,
        rgba(157, 48, 253, 0) 70%
    );
    filter: blur(120px);
    pointer-events: none;
}

.idCSs-s1-d2-inner{
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}
.idCSs-s1-d2-inner > div{
    min-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;

    box-sizing: border-box;
}

.idCSs-s1-d2-d1{
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.4s ease;
}
.idCSs-s1-d2-d1 > div:nth-child(2){
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 8px;
    border-radius: 30px;
    background-color: #412a53;
    width: 100%;
    max-width: 124px;

}
.idCSs-s1-d2-d1 > div:nth-child(2) p{
    color: #A18CB1;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.idCSs-s1-d2-d1 > h1{
    color: #FFFFFF;
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
    width: 100%;
    max-width: 529px;
}
.idCSs-s1-d2-d1 > div:nth-child(4){
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 37px;
}
.idCSs-s1-d2-d1 > div:nth-child(4) > div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.idCSs-s1-d2-d1 > div:nth-child(4) > div > div{
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.idCSs-s1-d2-d1 > div:nth-child(4) > div > div p:nth-child(1){
    color:#C380FF;
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
    align-items: baseline;
    gap: 0;
}
.idCSs-s1-d2-d1 > div:nth-child(4) > div > div p:nth-child(2){
    font-size: 20px;
    color: #C380FF;
}
.idCSs-s1-d2-d1 > div:nth-child(4) > div > p{
    width: 100%;
    max-width: 190px;
    font-size: 16px;
    line-height: 20px;
    color: #B9B9B9;
}

.idCSs-s1-d2-d1 > div:nth-child(5) a{
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}
.idCSs-s1-d2-d1 > div:nth-child(5) a p{
    color: #FFFFFF;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

.idCSs-s1-d2-d2 img{
    width: 100%;
    max-width: 446px;
}

.idCSs-s1-d2-d1{
    flex: 51.5%;
}

.idCSs-s1-d2-d2{
    flex: 48.5%;
    display: flex;
    align-items: center;
}

.idCSs-s1-d2-d1 > div:nth-child(5) a:hover p{
    color: #C380FF;
}
.idCSs-s1-d2-d1 > div:nth-child(5) a:hover svg path{
    stroke: #C380FF;
}
.idCSs-s1-d3{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.idCSs-s1-d3 div{
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #D9D9D9;
    cursor: pointer;
}
.idCSs-s1-d3 div.active{
    background-color: #9D30FD;
}

.idCSs-s2-d2-card{
    background: #f4eff9;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    padding: 20px;
    gap: 20px;
    flex: 0 0 auto;
}
.idCSs-s2-d2-card h5{
    color: #281438;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}
.idCSs-s2-d2-card div p{
    color: #6E5583;
    font-size: 14px;
}
.idCSs-s2-d2-card img{
    height: 100%;
    width: 100%;
    max-width: 309px;
    max-height: 158px;
}

.idCSs-s2-d2-card-d1{
    display: flex;
    gap: 10px;
}
.idCSs-s2-d2-card-d1 div{
    padding: 3px 13px;
    border: 1px solid #E5DEED;
    border-radius: 20px;
}

.idCSs-s2-d2-card-d2 a {
    display: flex;
    gap: 10px;
    align-items: center;
}
.idCSs-s2-d2-card:hover{
    outline: 1px solid #882ad5;
    cursor: pointer;
}
.idCSs-s2-d2-card:hover .idCSs-s2-d2-card-d2 a p{
    color: #b362fc;
}
.idCSs-s2-d2-card:hover .idCSs-s2-d2-card-d2 a svg path {
    stroke: #b362fc;
}

.idCSs-s2-d3{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-top: 20px;
}
.idCSs-s2-d3-prev,
.idCSs-s2-d3-next{
    cursor: pointer;
}
.idCSs-s2-d3-prev p,
.idCSs-s2-d3-next p{
    font-size: 14px;
    line-height: 26px;
    font-weight: 600;
    color: #281438;
    transition: all 0.3s ease-in-out;
}
.idCSs-s2-d3-prev:hover p,
.idCSs-s2-d3-next:hover p{
    color:#9D30FD;
}
.idCSs-s2-d3-num{
    cursor: pointer;
}
.idCSs-s2-d3-num p{
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: #281438;
}
.idCSs-s2-d3-num.active p{
    color: #9D30FD;
}

.idCSs-s2{
    padding: 35px 122px 77px 138px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.idCSs-s2-d1{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.idCSs-s2-d1 div{
    padding: 4px 12px;
    border: 1px solid #281438;
    border-radius: 20px;
    cursor: pointer;
}
.idCSs-s2-d1 div p{
    color: #281438;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.idCSs-s2-d1 div.active{
    background-color: #281438;
}
.idCSs-s2-d1 div.active p{
    color: #ffffff;
}
.idCSs-s2-d2{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 17px;
}
/* Case Studies Page Styles End */

/* Blog Details Page Styles Start */
.idBDs-s1{
    background: linear-gradient(
        to bottom right,
        #000000 0%,
        #311849 60%,
        #280C41 100%
    );
    width: 100%;
}
.idBDs-s1-inner{
    padding: 70px 122px 120px 138px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.idBDs-s1-d1{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
}
.idBDs-s1-d1 > p:nth-child(1){
    color: #4F4756;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.idBDs-s1-d1 > p:nth-child(3){
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
}

.idBDs-s1-d2{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.idBDs-s1-d2-d1{
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 20px;
}
.idBDs-s1-d2-d1 h1{
    color: #ffffff;
    font-size: 40px;
    line-height: 52px;
    font-weight: 700;
    font-family: 'Guminert', sans-serif;
    width: 100%;
    max-width: 528px;
}
.idBDs-s1-d2-d1 > p:nth-child(2){
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    color: #ffffff;
    width: 100%;
    max-width: 537px;
}
.idBDs-s1-d2-d1 > p:nth-child(3){
    color: #B9B9B9;
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
}
.idBDs-s1-d2-d2 img{
    width: 100%;
    max-width: 446px;
}


.idBDs-s2{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    padding: 30px 122px 120px 103px;
    position: relative;
    overflow: visible;
}
.idBDs-s2::after{
    content: "";
    position: absolute;
    height: 1px;
    width: calc(100% - 200px);
    bottom: 0;
    transform:translateX(-50%) ;
    left:50%;
    background-color: #D6D6D6;
}


.idBDs-s2-d1{
    flex: 29%;
    background-color: #FCF7E7;
    border-radius: 10px;
    padding: 15px 0px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 473px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}
.idBDs-s2-d1-scroll{
    overflow: hidden;
    overflow-y: auto;
    position: relative;
}
.idBDs-s2-d1-scroll-inner{
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 18px 0px 0px 20px;
}

.idBDs-s2-d1-scroll-inner::-webkit-scrollbar{
    display: none;
}

.idBDs-s2-d1-custom-scrollbar{
    position: absolute;
    top: 0;
    right: 0px;
    width: 5px;
    height: 100%;
    background: #f6f1e8;
    border-radius: 100px;
}

.idBDs-s2-d1-custom-scrollbar-thumb{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #F2E1C3;
    border-radius: 100px;
    cursor: pointer;
}
.idBDs-s2-d1 > h6{
    color: #272727;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    position: relative;
    padding: 0px 20px;
}
.idBDs-s2-d1 > h6::after{
    position: absolute;
    content: "";
    height: 1px;
    width: calc(100% - 40px);
    background-color: #EBE6DC;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}
.idBDs-s2-d1-d1, 
.idBDs-s2-d1-d2,
.idBDs-s2-d1-d3{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.idBDs-s2-d1-d1 > p,
.idBDs-s2-d1-d2 > p,
.idBDs-s2-d1-d3 > p{
    color: #A5A5A5;
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
}
.idBDs-s2-d1-d1 > ol,
.idBDs-s2-d1-d2 > ol,
.idBDs-s2-d1-d3 > ol{
    margin: 0;
    padding-left:15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.idBDs-s2-d1-d1 > ol li.active p,
.idBDs-s2-d1-d2 > ol li.active p,
.idBDs-s2-d1-d3 > ol li.active p{
    color: #271438;
}
.idBDs-s2-d1-d1 > ol li.active::marker,
.idBDs-s2-d1-d2 > ol li.active::marker,
.idBDs-s2-d1-d3 > ol li.active::marker{
    color: #271438;
}
.idBDs-s2-d1-d1 > ol li p,
.idBDs-s2-d1-d2 > ol li p,
.idBDs-s2-d1-d3 > ol li p{
    color: #535353;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    cursor: pointer;
}
.idBDs-s2-d1-d1 > ol li::marker,
.idBDs-s2-d1-d2 > ol li::marker,
.idBDs-s2-d1-d3 > ol li::marker{
    color: #535353;
    font-size: 14px;
    font-weight: 400;
}


.idBDs-s2-d2{
    flex: 69%;
    display: flex;
    flex-direction: column;
    gap: 45px;
    
}

.idBDs-s2-d2-d1{
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #F7F0DA;
    border-radius: 10px;
    padding: 20px 30px 40px 30px;
}
.idBDs-s2-d2-d1 > p{
    color: #272727;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Guminert', sans-serif;
    line-height: 20px;
}
.idBDs-s2-d2-d1 > ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 25px;
}
.idBDs-s2-d2-d1 > ul li p{
    color: #272727;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.idBDs-s2-d2-d2{
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.idBDs-s2-d2-d2-d1{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.idBDs-s2-d2-d2-d1 > h1{
    color: #272727;
    font-size: 32px;
    line-height: 42px;
    font-weight: bolder;
    font-family: 'Guminert', sans-serif;
}
.idBDs-s2-d2-d2-d1 > p{
    color: #272727;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.idBDs-s2-d2-d2-d1 > p span{
    font-weight: 600;
}
.idBDs-s2-d2-d2-d2{
    display: flex;
    flex-direction: column;
    gap: 30px;

}
.idBDs-s2-d2-d2-d2 img{
    width: 100%;
    max-width: 749px;
}
.idBDs-s2-d2-d2-d2 div{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.idBDs-s2-d2-d2-d2 div h1{
    color: #272727;
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
    font-family: 'Guminert',sans-serif;
}
.idBDs-s2-d2-d2-d2 div p{
    color: #272727;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.idBDs-s2-d2-d2-d2 div:nth-child(3),
.idBDs-s2-d2-d2-d2 div:nth-child(4){
    margin-top: 15px;
}
.idBDs-s2-d2-d3{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.idBDs-s2-d2-d3 > h1{
    color: #272727;
    font-size: 33px;
    font-weight: bolder;
    line-height: 46px;
    font-family: 'Guminert', sans-serif;
}
.idBDs-s2-d2-d3-d1{
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #e2d6ed;
}
.idBDs-s2-d2-d3-d1 table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.idBDs-s2-d2-d3-d1 p{
    margin: 0;
}
.idBDs-s2-d2-d3-d1 table thead tr th{
    background-color: #efe2fb;
    border-bottom:  1px solid #e2d6ed;
}
.idBDs-s2-d2-d3-d1 table thead tr th:nth-child(1),
.idBDs-s2-d2-d3-d1 table thead tr th:nth-child(2){
    border-right:1px solid #e2d6ed ;
}
.idBDs-s2-d2-d3-d1 table thead tr th,
.idBDs-s2-d2-d3-d1 table tbody tr td{
    padding: 10px;
    text-align: left;
}

.idBDs-s2-d2-d3-d1 table thead tr th p{
    color: #272727;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}
.idBDs-s2-d2-d3-d1 table tbody tr td{
    background-color: #FFFFFF;
}
.idBDs-s2-d2-d3-d1 table tbody tr td p{
    color: #272727;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}
.idBDs-s2-d2-d3-d1 table tbody tr td ul{
    margin: 0;
    padding-left: 24px;
}
.idBDs-s2-d2-d3-d1 tbody tr:nth-child(even) td{
    background-color: #f3f1f5;
}
.idBDs-s2-d2-d3-d1 table tbody tr td:nth-child(1),
.idBDs-s2-d2-d3-d1 table tbody tr td:nth-child(2){
    border-right:1px solid #e2d6ed ;
}

.idBDs-s2-d2-d3-d1 table tbody tr:nth-child(1) td,
.idBDs-s2-d2-d3-d1 table tbody tr:nth-child(2) td,
.idBDs-s2-d2-d3-d1 table tbody tr:nth-child(3) td,
.idBDs-s2-d2-d3-d1 table tbody tr:nth-child(4) td{
    border-bottom:1px solid #e2d6ed ;
}

.idBDs-s2-d2-d3-d1 table thead tr th:nth-child(1),
.idBDs-s2-d2-d3-d1 table tbody tr td:nth-child(1){
    width: 23%;
}
.idBDs-s2-d2-d3-d1 table thead tr th:nth-child(2),
.idBDs-s2-d2-d3-d1 table tbody tr td:nth-child(2){
    width: 40.5%;
}
.idBDs-s2-d2-d3-d1 table thead tr th:nth-child(3),
.idBDs-s2-d2-d3-d1 table tbody tr td:nth-child(3){
    width: 40.5%;
}

.idBDs-s2-d2-d3-d2,
.idBDs-s2-d2-d3-d4{
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 10px;
}
.idBDs-s2-d2-d3-d2 p,
.idBDs-s2-d2-d3-d4 p{
    color: #272727;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.idBDs-s2-d2-d3-d3{
    display: flex;
    align-items:flex-start;
    justify-content: space-between;
    padding: 20px 0px 0px 45px;
    background-color: #000000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.idBDs-s2-d2-d3-d3::after{
    content: "";
    position: absolute;
    width: 580px;
    height: 488px;
    bottom : -130px;
    right: -100px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(157, 48, 253, 0.8) 0%,
        rgba(157, 48, 253, 0.4) 40%,
        rgba(157, 48, 253, 0) 70%
    );
    filter: blur(120px);
    pointer-events: none;
}
.idBDs-s2-d2-d3-d3 div:nth-child(1){
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
    padding-top: 20px;
}
.idBDs-s2-d2-d3-d3 div:nth-child(1) p,
.idBDs-s2-d2-d3-d3 div:nth-child(1) h1{
color: #FFFFFF;
}
.idBDs-s2-d2-d3-d3 div:nth-child(1) h1{
    font-size: 40px;
    line-height: 46px;
    width: 100%;
    max-width: 367px;
    font-weight: 600;
    font-family: 'Guminert', sans-serif;
}
.idBDs-s2-d2-d3-d3 div:nth-child(1) p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    width: 100%;
    max-width: 307px;
}
.idBDs-s2-d2-d3-d3 div:nth-child(1) button{
    border: none;
    outline: none;
    width: 100%;
    max-width: 180px;
    padding: 15px 30px;
    border-radius: 30px;
    background-color: #9D30FD;
}
.idBDs-s2-d2-d3-d3 div:nth-child(1) button p{
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}
.idBDs-s2-d2-d3-d3 div:nth-child(2){
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.idBDs-s2-d2-d3-d4{
    margin-top: 25px;
}

.idBDs-s2-d2-d3-d5{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.idBDs-s2-d2-d3-d5-d1,
.idBDs-s2-d2-d3-d5-d2{
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
    padding: 10px 10px 20px 10px;
    background-color: #F8F8F8;
}

.idBDs-s2-d2-d3-d5-d1 div:nth-child(2),
.idBDs-s2-d2-d3-d5-d1 div:nth-child(3),
.idBDs-s2-d2-d3-d5-d1 div:nth-child(4),
.idBDs-s2-d2-d3-d5-d1 div:nth-child(5),
.idBDs-s2-d2-d3-d5-d1 div:nth-child(6),
.idBDs-s2-d2-d3-d5-d2 div:nth-child(2),
.idBDs-s2-d2-d3-d5-d2 div:nth-child(3),
.idBDs-s2-d2-d3-d5-d2 div:nth-child(4),
.idBDs-s2-d2-d3-d5-d2 div:nth-child(5),
.idBDs-s2-d2-d3-d5-d2 div:nth-child(6){
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    border-radius: 10px;
    background-color: #FFFFFF;
    padding: 12px 15px;
}
.idBDs-s2-d2-d3-d5-d1 div:nth-child(2) p,
.idBDs-s2-d2-d3-d5-d1 div:nth-child(3) p,
.idBDs-s2-d2-d3-d5-d1 div:nth-child(4) p,
.idBDs-s2-d2-d3-d5-d1 div:nth-child(5) p,
.idBDs-s2-d2-d3-d5-d1 div:nth-child(6) p,
.idBDs-s2-d2-d3-d5-d2 div:nth-child(2) p,
.idBDs-s2-d2-d3-d5-d2 div:nth-child(3) p,
.idBDs-s2-d2-d3-d5-d2 div:nth-child(4) p,
.idBDs-s2-d2-d3-d5-d2 div:nth-child(5) p,
.idBDs-s2-d2-d3-d5-d2 div:nth-child(6) p{
    color: #272727;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.idBDs-s2-d2-d3-d5-d1 div:nth-child(2) svg,
.idBDs-s2-d2-d3-d5-d1 div:nth-child(3) svg,
.idBDs-s2-d2-d3-d5-d1 div:nth-child(4) svg,
.idBDs-s2-d2-d3-d5-d1 div:nth-child(5) svg,
.idBDs-s2-d2-d3-d5-d1 div:nth-child(6) svg,
.idBDs-s2-d2-d3-d5-d2 div:nth-child(2) svg,
.idBDs-s2-d2-d3-d5-d2 div:nth-child(3) svg,
.idBDs-s2-d2-d3-d5-d2 div:nth-child(4) svg,
.idBDs-s2-d2-d3-d5-d2 div:nth-child(5) svg,
.idBDs-s2-d2-d3-d5-d2 div:nth-child(6) svg{
    margin-top: 9px;
}

.idBDs-s2-d2-d3-d5-d1 div:nth-child(1){
    background-color: #E4F3E5;
}
.idBDs-s2-d2-d3-d5-d2 div:nth-child(1){
    background-color: #F3E4E4;
}
.idBDs-s2-d2-d3-d5-d1 div:nth-child(1),
.idBDs-s2-d2-d3-d5-d2 div:nth-child(1){
    padding: 12px 21px;
    border-radius: 7px;
}
.idBDs-s2-d2-d3-d5-d1 div:nth-child(1) p,
.idBDs-s2-d2-d3-d5-d2 div:nth-child(1) p{
    color: #281438;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    font-family: 'Guminert', sans-serif;
}

.idBDs-s2-d2-d4{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.idBDs-s2-d2-d4-d1{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.idBDs-s2-d2-d4-d1 h1{
    font-size: 33px;
    color: #272727;
    line-height: 44px;
    font-weight: 800;
    font-family: 'Guminert', sans-serif;
}
.idBDs-s2-d2-d4-d1 p{
    font-size: 16px;
    line-height: 26px;
    color: #272727;
    font-weight: 400;
}
.idBDs-s2-d2-d4-d2{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.idBDs-s2-d2-d4-d2 h1{
    font-size: 26px;
    color: #272727;
    line-height: 38px;
    font-weight: 800;
    font-family: 'Guminert', sans-serif;
}

.idBDs-s2-d2-d4-d2 div{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.idBDs-s2-d2-d4-d2 div h1{
    font-size: 24px;
    line-height: 28px;
}
.idBDs-s2-d2-d4-d2 div p{
    font-size: 16px;
    line-height: 26px;
    color: #272727;
    font-weight: 400;
}

.idBDs-s2-d2-d4-d3{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.idBDs-s2-d2-d4-d3 > h1{
    font-size: 26px;
    color: #272727;
    line-height: 38px;
    font-weight: 800;
    font-family: 'Guminert', sans-serif;
}
.idBDs-s2-d2-d4-d3 > div{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.idBDs-s2-d2-d4-d3 > div p{
    font-size: 16px;
    line-height: 26px;
    color: #272727;
    font-weight: 400;
}
.idsp-s7-faqs-wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 30px 60px 30px;
    border-radius: 20px;
    background-color: #FBFBFB;
}

.idsp-s7-faqs-heading{
    color: #272727;
    font-size: 32px;
    line-height: 44px;
    font-family: 'Guminert', sans-serif;
    font-weight: 800;
}

.idsp-s7-faq-d1-BD p{
    color: #281438;
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
}
.idBDs-s2-d2-d6{
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.idBDs-s2-d2-d6 p{
    color: #281438;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
}
.idBDs-s2-d2-d6 div{
    display: flex;
    align-items: center;
    gap: 10px;

}
.idBDs-s2-d2-d6 div div{
    height: 47px;
    width: 47px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F4EFF8;
}
/* Blog Details Page Styles End */


/* Blogs Page Styles Start */
.isbsp-s1{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 35px 122px 47px 138px;
}

.isbsp-s1-d1{
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 742px;
}
.isbsp-s1-d1 h1{
    text-align: center;
    color: #281438;
    font-size: 54px;
    line-height: 66px;
    font-weight: 700;
    font-family: 'Guminert', sans-serif;
}

.isbsp-s1-d1-d1{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 4px 15px 4px 4px;
}
.isbsp-s1-d1-d1.active{
    border-radius: 30px;
    border: 1px solid #272727;
}
.isbsp-s1-d1-d1-d1{
    background-color: #271438;
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
    cursor: pointer;
}
.isbsp-s1-d1-d1-d1 p{
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 300;
}
.isbsp-s1-d1-d1 > input {
    border: none;
    outline: none;
    flex: 1;
    color: #281438;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}
.isbsp-s1-d1-d1 > input::placeholder{
    color: #281438;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}
.isbsp-s1-d1-d1 > svg {
    cursor: pointer;
}

.isbsp-s1-d1-d1-d1{
    position: relative;
}

.isbsp-s1-d1-d1-d1-dropdown{
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    min-width:180px;
    background:#271438;
    border-radius:15px;
    padding:10px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);
    transition:all 0.3s ease;
    z-index:100;
}

.isbsp-s1-d1-d1-d1.active .isbsp-s1-d1-d1-d1-dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.isbsp-s1-d1-d1-d1-dropdown div{
    color:white;
    padding:8px 15px;
    cursor:pointer;
    transition:0.2s;
}

.isbsp-s1-d1-d1-d1-dropdown div:hover{
    background:rgba(255,255,255,0.08);
}

.isbsp-s1-d1-d1-d1-dropdown div.active{
    background:rgba(255,255,255,0.15);
}

.isbsp-s1-d1-d1-d1,
.isbsp-s1-d1-d1-input{
    display: none;
}


.isbsp-s1-d1-d1-options{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.isbsp-s1-d1-d1-options div{
    padding: 4px 12px;
    border: 1px solid #281438;
    border-radius: 20px;
    cursor: pointer;
}
.isbsp-s1-d1-d1-options div p{
    color: #281438;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.isbsp-s1-d1-d1-options div.active{
    background-color: #281438;
}
.isbsp-s1-d1-d1-options div.active p{
    color: #ffffff;
}


.isbsp-s1-d2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.isbsp-s1-d2-d2{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.isbsp-s1-d2-d1-transition{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.isbsp-s1-d2-d1-transition div:nth-child(1){
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}
.isbsp-s1-d2-d1-transition  div:nth-child(1) div{
    padding: 0px 16px;
    border-radius: 20px;
    background-color: #F4EFF9;
    border: 1px solid #E5DEED;
}

.isbsp-s1-d2-d1-transition  div:nth-child(1) div p{
    color: #6E5583;
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
}

.isbsp-s1-d2-d1-transition  div:nth-child(2){
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.isbsp-s1-d2-d1-transition  div:nth-child(2) h1{
    color: #272727;
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
}
.isbsp-s1-d2-d1-transition  div:nth-child(2) p{
    color: #272727;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.isbsp-s1-d2-d1-transition  div:nth-child(3) a{
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}
.isbsp-s1-d2-d1-transition  div:nth-child(3) a p{
    color: #272727;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
}
.isbsp-s1-d2-d1-transition  div:nth-child(3) a svg{
    margin-top: 2px;
}

.isbsp-s1-d2-d1-dots{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.isbsp-s1-d2-d1-dots div{
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #D9D9D9;
    cursor: pointer;
}
.isbsp-s1-d2-d1-dots div.active{
    background-color: #9D30FD;
}
.isbsp-s1-d2-d1 img{
    max-width: 547px;
    border-radius: 10px;
}

.isbsp-s2{
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 35px 122px 47px 138px;
}
.isbsp-s2 h1{
    color: #281438;
    font-size: 40px;
    line-height: 52px;
    font-weight: 600;
    font-family: 'Guminert', sans-serif;
}

.isbsp-s2-d1{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 17px;
}

.isbsp-s2-d1-card{
    background: #f4eff9;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    padding: 20px;
    gap: 20px;
    flex: 0 0 auto;
}
.isbsp-s2-d1-card h5{
    color: #281438;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}
.isbsp-s2-d1-card div p{
    color: #6E5583;
    font-size: 14px;
}
.isbsp-s2-d1-card img{
    height: 100%;
    width: 100%;
    max-width: 309px;
    max-height: 158px;
}

.isbsp-s2-d1-card-d1{
    display: flex;
    gap: 10px;
}
.isbsp-s2-d1-card-d1 div{
    padding: 3px 13px;
    border: 1px solid #E5DEED;
    border-radius: 20px;
}

.isbsp-s2-d1-card-d2 a {
    display: flex;
    gap: 10px;
    align-items: center;
}
.isbsp-s2-d1-card:hover{
    outline: 1px solid #882ad5;
    cursor: pointer;
}
.isbsp-s2-d1-card:hover .isbsp-s2-d1-card-d2 a p{
    color: #b362fc;
}
.isbsp-s2-d1-card:hover .isbsp-s2-d1-card-d2 a svg path {
    stroke: #b362fc;
}

.isbsp-s2-d2{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-top: 20px;
}
.isbsp-s2-d2-prev,
.isbsp-s2-d2-next{
    cursor: pointer;
}
.isbsp-s2-d2-prev p,
.isbsp-s2-d2-next p{
    font-size: 14px;
    line-height: 26px;
    font-weight: 600;
    color: #281438;
    transition: all 0.3s ease-in-out;
}
.isbsp-s2-d2-prev:hover p,
.isbsp-s2-d2-next:hover p{
    color:#9D30FD;
}
.isbsp-s2-d2-num{
    cursor: pointer;
}
.isbsp-s2-d2-num p{
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: #281438;
}
.isbsp-s2-d2-num.active p{
    color: #9D30FD;
}

.BsP-idsp-s7-faq-d2 p{
    width: 100%;
    max-width: 640px;
}
/* Blogs Page Styles End */


/* CSS fixes for Blog single post */

.blog-content-section{
	display: flex;
    flex-direction: column;
    gap: 20px;
}
.blog-content-section h2{
	color: #272727;
    font-size: 32px;
    line-height: 42px;
    font-weight: bolder;
    font-family: 'Guminert', sans-serif;
}

.blog-content-section p {
	color: #272727;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.blog-content-section p strong{
	font-weight: 600;
}
.blog-content-section h3{
	color: #272727;
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
    font-family: 'Guminert', sans-serif;
}

.blog-content-section h2:nth-child(23){
	color: #272727;
    font-size: 33px;
    line-height: 42px;
    font-weight: bolder;
    font-family: 'Guminert', sans-serif;
}
.blog-content-section h3:nth-child(25),
.blog-content-section h3:nth-child(32){
	    font-size: 26px;
    color: #272727;
    line-height: 38px;
/*     font-weight: 800; */
    font-family: 'Guminert', sans-serif;
}

.blog-content-section h4{
	font-size: 24px;
    line-height: 28px;
	font-family: 'Guminert', sans-serif;
	color: #272727;
}

