.page-title{
    font-size: 30px;
    color: #789ec3;
}
body {
    /* background-image: url("/images/bg.png"); */
    background-color: #789ec3 !important;
}
.navbar-container {
    padding: 10px 10%;
}
.navbar {
    background: rgba(120, 158, 195, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0 !important;
}
.nav-logo{
    height: 70px;
    cursor: pointer;
    transition: 0.5s;
}

.nav-logo:hover{
    transform: scale(1.2);
}
.nav-title{
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 1px #fff, 0 0 2.5px #fff, 0 0 5px #fff, 0 0 7.5px #fff
}
.nav-start-project {
    background: linear-gradient(90deg, #8eb4da 0%, #97bee4 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
}



.navbar-container {
    overflow: hidden;
}

.nav-logo, .nav-title, .nav-start-project {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeSlideIn 0.5s forwards;
}

.nav-logo {
    animation-delay: 0.2s;
}
.nav-title {
    animation-delay: 0.5s;
}
.nav-start-project {
    animation-delay: 0.8s;
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





/* ==========home=========== */
.main-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  padding: 13px 0;
  cursor: pointer;
  width: 800px;
}

/* Top & Bottom gradient borders using pseudo-elements */
.main-title::before,
.main-title::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  /* border thickness */
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0) 100%);
}

.main-title::before {
  top: 0;
}

/* top border */
.main-title::after {
  bottom: 0;
}

/* bottom border */

.main-title h4 {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 1.4vw;
}

.description {
  font-size: 0.9vw;
}
.footer-glass-container{
    /* padding: 0 10%; */
    margin-top: 30px;
}
.footer-glass {
    background: rgba(255, 255, 255, 0.3);
    /* border-radius: 5px; */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden; /* important for pseudo-elements */
    padding: 30px 10%;
}
.footer-glass h3{
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}
.footer-glass1 {
    background: linear-gradient(180deg, rgba(163,185,252,0.1),rgba(255,255,255,0.5), rgba(255,255,255,1));
    /* backdrop-filter: blur(10px); */
    /* border-top: 1px solid rgba(255,255,255,0.2); */
}
/* =============================== */
.my-carosel{
    margin: 30px auto;
    width: 100%;
    display: flex;
    overflow: hidden;
    gap: 3em;
}

.group{
    display: flex;
    gap: 3em;
    align-items: center;
    animation: scroll 30s linear infinite;
}

.card1{

}

.card1 img{
    height: 6vh;
    width: auto;
    display: block;
    background: none;
    cursor: pointer;
    transition: 0.5s;
}
.card1 img:hover{
    /* height: 60px; */
}
/* animation */
@keyframes scroll{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

/* hide scrollbar */
.my-carosel{
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.my-carosel::-webkit-scrollbar{
    display: none;
}


/* =============================== */
.breadcrumb-border {
  width: 80px;
  height: 20px;
  position: relative;
  top: -5px;
}
.rotate {
  transform: rotate(180deg);
  top: -7px;
}
.breadcrumb a, .breadcrumb span{
    color: #5c67ac;
}
.breadcrumb-title{
    font-weight: bold;
    color: #2F409F;
    text-align: center;
}
























/* =====================Strategy================ */
.strategy-title{
    font-size: 35px;
    color: #f2f2f2;
}
.strategy-sub-title{
    font-size: 25px;
    color: #f2f2f2;
}
.funnel-btn{
    background: linear-gradient(to right, #789ec3, #a2c6eb);
    border: none;
    transition: transform 0.5s ease !important;
}

.funnel-btn:hover{
    transform: scale(1.1);
    transform: translateY(-10px);
}
.strategy-btn{
    background: transparent !important;
    border: 1px solid #a2c6eb !important;
    color: #f2f2f2 !important;
    transition: transform 0.5s ease !important;
}

.strategy-btn:hover{
    transform: scale(1.1);
    transform: translateY(-10px);
}


.divider-glass{
     background: rgba(255, 255, 255, 0.5);
    /* border-radius: 5px; */
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden; /* important for pseudo-elements */
    padding: 30px 10%;
}
/* ======================================= */
.hierarchy-wrapper {
  width: 100%;
  padding: 2rem 1rem;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.step-item {
  position: relative;
  text-align: center;
  flex: 1;
}


.step-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;

  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

.step-circle.active {
  background: linear-gradient(135deg,#789ec3,#7ea7cf);
  box-shadow: 0 0 20px #789ec3;
}

.step-content {
  margin-top: 1rem;
  transition: 1s !important;
  cursor: pointer;
  /* background-color: #fff !important; */
}
.step-content:hover{
    transform: translateY(-10px);
}
.step-desc-box1 {
  width: 96%;
  margin-left: 2%;
  padding: 12px;
  border-radius: 6px;
  background-color: rgba(255,255,255,0.7) !important;
 /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(1px); */
}

.step-line {
  position: absolute;
  top: 30px;
  right: -50%;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.2);
  z-index: -1;
}

.line-active {
  background: linear-gradient(90deg,#2DACF7,#1B8ED1);
}

@media (max-width:768px){
  .steps-container{
    flex-direction: column;
    align-items:center;
  }

  .step-line{
    display:none;
  }

  .step-item{
    margin-bottom:2rem;
  }
}
#fixedContent.active{
    position: fixed !important;
    top: -50px !important;
    left: 0;
    width: 100%;
    z-index: 1;
}
.fixed-bg{
    background-image: linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58) ),  url('/business.jpg');
     background-size: cover;
  background-attachment: fixed; /* creates the parallax effect */
  background-position: center;
  padding: 50px 100px;
  border-radius: 20px;
}
.borde-right{
    border-right: 1px !important;
    border-color: #fff !important;
}
.main-val{
    font-size: 50px;
    font-weight: bolder;
}
.circle1{
    height: 20px;
    width: 20px;
    background-color: #789ec3;
    border-radius: 50%;
}

.development-title{
    font-size: 50px;
    color: #fff;
}
.herobg{
    position: absolute;
    height: 100vh;
    width: calc(100vw - 12px) ;
    top: 0;
    z-index: -1;
    opacity: 0.25;
}
.boxes img{
    height: 50px;
    margin-bottom: 5px;
}
.boxes h5{
    color: #fff;
    font-size: 15px;
}
.boxes {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: visible; /* allow pseudo-element outside */
    padding: 5px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* triangle pointer */
.boxes::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
}

/* boxes on the left pointing right */
.col-md-12 > .d-block:first-child .boxes::after {
    left: 100%;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent rgba(255,255,255,0.1);
}

/* boxes on the right pointing left */
.col-md-12 > .d-block:last-child .boxes::after {
    right: 100%;
    border-width: 10px 15px 10px 0;
    border-color: transparent rgba(255,255,255,0.1) transparent transparent;
}

/* optional: small floating animation for boxes */
@keyframes floatBox {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.boxes {
    /* animation: floatBox 3s ease-in-out infinite; */
}



/* ================ */
.box1{
    background: linear-gradient(105deg,#3051c2,#6d8feb);
}
.box2{
    background: linear-gradient(105deg,#3c80f5,#0e5bb9);
}
.box3{
    background: linear-gradient(105deg,#8647b2,#2347da);
}
.box4{
    background: linear-gradient(105deg,#a95ec4,#683794,#985eca);
}
.box5{
    background: linear-gradient(105deg,#eb87cb,#955780,#835cdf);
}
.box6{
    background: linear-gradient(105deg,#322e68,#6a6ee6);
}











/* ========================== */

.timeline-wrapper{
    width:90%;
    margin:auto;
}

.timeline-cards{
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.timeline-card{
    background:#d9dce2;
    padding:25px 10px;
    border-radius:20px;
    text-align:center;
    width:180px;
    position:relative;
}



.icon{
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin:auto;
    margin-top:-55px;
}

/* icon colors */
.purple{background:#8c8cf5;}
.blue{background:#7cd1d6;}
.green{background:#a6db5f;}
.yellow{background:#ffd83b;}
.orange{background:#ff9c63;}
.pink{background:#ff9ed1;}

.timeline-line{
    margin-top:60px;
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.timeline-line::before{
    content:"";
    position:absolute;
    height:6px;
    background:linear-gradient(90deg,#8c8cf5,#7cd1d6,#a6db5f,#ffd83b,#ff9c63,#ff9ed1);
    width:100%;
    top:8px;
    left:0;
    z-index:-1;
}

.timeline-line span{
    background:white;
    border-radius:50%;
    padding:8px 14px;
    font-weight:bold;
    margin-top: -10px;
}

.timeline-card:nth-child(1)::after{
    content:"";
    position:absolute;
    bottom:-30px;
    left:50%;
    transform:translateX(-50%);
    border-width:15px;
    border-style:solid;
    border-color:#8C8CF5 transparent transparent transparent;
}

.timeline-card:nth-child(1){
     background: linear-gradient(105deg,#5656a3,#7070ce,#8C8CF5);
}
/* ===================== */
.timeline-card:nth-child(2)::after{
    content:"";
    position:absolute;
    bottom:-30px;
    left:50%;
    transform:translateX(-50%);
    border-width:15px;
    border-style:solid;
    border-color:#7CD1D6 transparent transparent transparent;
}

.timeline-card:nth-child(2){
     background: linear-gradient(10deg,#9eeaee,#6d8feb);
}
/* ========================= */
.timeline-card:nth-child(3)::after{
    content:"";
    position:absolute;
    bottom:-30px;
    left:50%;
    transform:translateX(-50%);
    border-width:15px;
    border-style:solid;
    border-color:#A6DB5F transparent transparent transparent;
}

.timeline-card:nth-child(3){
     background: linear-gradient(105deg,#a5db5fe3,#618039);
}
/* ======================== */
.timeline-card:nth-child(4)::after{
    content:"";
    position:absolute;
    bottom:-30px;
    left:50%;
    transform:translateX(-50%);
    border-width:15px;
    border-style:solid;
    border-color:#FED83B transparent transparent transparent;
}

.timeline-card:nth-child(4){
     background: linear-gradient(105deg,#fed73bb2,#b6a668,#c9ab35);
}
/* ======================== */
.timeline-card:nth-child(5)::after{
    content:"";
    position:absolute;
    bottom:-30px;
    left:50%;
    transform:translateX(-50%);
    border-width:15px;
    border-style:solid;
    border-color:#EE9A62 transparent transparent transparent;
}

.timeline-card:nth-child(5){
     background: linear-gradient(105deg,#80583e,#EE9A62);
}
/* ======================== */
.timeline-card:nth-child(6)::after{
    content:"";
    position:absolute;
    bottom:-30px;
    left:50%;
    transform:translateX(-50%);
    border-width:15px;
    border-style:solid;
    border-color:#6d8feb transparent transparent transparent;
}

.timeline-card:nth-child(6){
     background: linear-gradient(105deg,#3051c2,#6d8feb);
}


.timeline-line{
    margin: 90px 50px !important;
}


/* ================================== */
.project-card{
    width: 100%;
    border-radius: 10px;
    border: 2px solid #fff;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.project-card-image{
    height: 150px;
    position: relative;
}
.project-card-image h5{
    position: absolute;
    bottom: 0px;
    left: 20px;
    color: #fff;
}
.project-title{
    margin: 0;
    padding: 0;
}
.project-glass {
    background: rgba(255, 255, 255, 0.3);
    /* border-radius: 5px; */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid #e4e3e3;
    position: relative;
    overflow: hidden; /* important for pseudo-elements */
    padding: 3px 20px;
    border-radius: 50px;
    font-size: 12px;
}
.btn-project{
    width: 100%;
    margin-top: 10px;
    border: none;
    background: linear-gradient(105deg,#3051c2,#6d8feb);
    padding: 10px;
    border-radius: 10px;
    color: #fff;
}

/* =================================================== */
.robortImg1{
    width: 30vw;
    opacity: 0;
    z-index: 9 !important;
}
.robortImg{
    width: 30vw;
    position: absolute;
    z-index: 9 !important;
    /* top: 0; */
}
.ai-project-list{
    min-height: 90vh;
    /* background: #fff; */
    height:90vh;
    position: relative;
}
.ai-bg{
    height: 100%;
    width: 100%;
    /* opacity: 0.1; */
}
.ai-list-container{
    width: 60vw;
    position: absolute;
    left: 40vw;
    top: 0;
    padding: 5% 10vh;
}
.ai-list-container h1{
    color: #111;
    font-size: 50px;
    width: 80%;
}
.glass-card-marketing{
    position: relative;
}

.glass-card-marketing img{
    height: 30vh;
    width: 30vh;
    border-radius: 50%;
}
.glass-card1{
        background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid #e4e3e3;
    position: relative;
    overflow: hidden; /* important for pseudo-elements */
    padding: 3px 20px;
    border-radius: 20px;
    font-size: 12px;
}
.glass-card1 i{
    font-size: 20px;
}
.client-profile{
    height: 10vh !important;
    width: 10vh !important;
    position: absolute;
    bottom: -4vh;
    right: 15vh;
}
#fixedContent1{
    position: sticky !important;
    top: 0 !important;
}
.my-radius {
  border-bottom-right-radius: 100% 350px;
  border-bottom-left-radius: 100% 350px;
}
