

@media (max-width:786px) {
    .responsive-br{
        display: none;
    }
}
.animate-on-scroll{
    opacity:0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}
.animate-on-scroll.show{
    opacity: 1;
    transform: translate(0,0);
}
.fade-up{
    transform: translateY(50px);
}
.fade-left{
    transform: translateX(-50px);
}
.fade-right{
    transform: translateX(50px);
}
.fade-down{
    transform: translateY(-50px);
}
.fade-over-left{
       transform: translateX(-100px);
}
.animate-on-scroll.show.fade-over-left{
        transform: translateX(50%) !important;
}
.fade-over-right{
       transform: translateX(100px);
}
.animate-on-scroll.show.fade-over-right{
        transform: translateX(-20%) !important;
}
/* ------------------------ */


.craitrix-about{
    background: url("https://res.cloudinary.com/craitrix/image/upload/v1757950541/assets/about-us/craitrix-aboutus.webp");
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 600px;
    padding-top: 150px;
}
.craitrix-about h1{
    text-align: center;
    padding-inline: 20px;
    background: linear-gradient(135deg, #0072FF,#0D47A1);
       background-clip: text;
       color: transparent;
       font-weight: 700;
       margin-bottom: 20px;

}
.craitrix-about p{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-block: 30px;
}
.craitrix-about img{
    width: 90%;
    display: flex;
    margin: auto;
  
}
@media (max-width:986px) {
  .craitrix-about {
    padding-top: 110px;
  }
  .craitrix-about h1{
    margin-bottom: 0px;
  }
  .craitrix-about p{
    width: 100%;
    padding-inline: 20px;
  }
}

/* ----------------------------- */
.craitrix-story{
    padding-top: 200px;
    padding-bottom: 50px;
}
.craitrix-story-container{
    padding-inline: 30px;
}
.craitrix-story-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.craitrix-story-left h2{
  background: linear-gradient(135deg, #0072FF,#0D47A1);
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  font-weight: 700;
}
.craitrix-story-left p{
    text-align: justify;
    width: 80%;
    

}
.craitrix-story-right{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.craitrix-story-right img{
 width: 100%;
 height: auto;
}
@media (min-width:1200px) {
  .craitrix-story {
    padding-top: 330px;
  }
}
@media (max-width:786px) {
  .craitrix-story{
    padding-top: 60px;
  }
  .craitrix-story-left p{
    width: 100%;
  }
}

/* -------------------------------- */
.craitrix-mission {
  background: #f8fbff;   /* light background */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Left image */
.mission-img img {
  width: 50%;
  border-radius: 40% / 20%;   /* oval shape */
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  position: relative;
}
.mission-img::before {
  content: "";
  position: absolute;
  width:200px;
  height: 80%;
  background: linear-gradient(135deg, #0072FF, #0D47A1);
  border-radius: 50% / 20%;  
  bottom: -100px;   /* offset for shadow effect */
  left: 20px;
  z-index: 0;  /* behind image */
}
.vision-img img{
     width: 50%;
  border-radius: 40% / 20%;   /* oval shape */
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  position: relative;
}
.vision-img::before{
     content: "";
  position: absolute;
  width:200px;
  height: 80%;
  background: linear-gradient(135deg, #0072FF, #0D47A1);
  border-radius: 50% / 20%;  
  bottom: -100px;   /* offset for shadow effect */
  right: 20px;
  z-index: 0;  /* behind image */
}


/* Title */
.mission-title {
  font-size: 150px !important;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2;
  margin-bottom: 20px;

  /* 👇 Image inside text */
  background: url("https://res.cloudinary.com/craitrix/image/upload/v1758037266/assets/about-us/mission.webp") no-repeat center;
  background-size: cover;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* 👇 Outline stroke */
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #0072FF;
  text-transform: uppercase;
  position: relative;
  transform: translateX(-100px);
}
.mission-title2{
     font-size: 150px !important;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2;
  margin-bottom: 20px;
  /* 👇 Image inside text */
  background: url("https://res.cloudinary.com/craitrix/image/upload/v1758037263/assets/about-us/vision.webp") no-repeat center;
  background-size: cover;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* 👇 Outline stroke */
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #0072FF;

  text-transform: uppercase;
  position: relative;
  transform: translateX(50%);
}
.mission-content{
    padding-inline: 30px;
}
/* Content text */
.mission-content p {
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

/* Responsive tweaks */
@media(max-width: 992px) {
  .mission-title {
    font-size: 60px;
  }
  .mission-img img {
    width: 90%;
    margin-bottom: 30px;
  }
  .mission-img{
    width: 40%;
  }
   .vision-img{
    width: 40%;
    margin: auto;
  }
  .vision-img img{
     width: 90%;
    margin-bottom: 30px;
  }
}

@media (max-width:786px) {
  .craitrix-mission{
    padding: 40px 0px;
  }
  .animate-on-scroll.show.fade-over-right{
    transform: translate(0,0) !important;
  }
      .mission-img{
        margin: auto;
      }
  .mission-img::before{
    height: 40%;
    width: 170px;
    left: 50%;
    transform: translateX(-40%);
  }
  .vision-img::before
{
     height: 40%;
    width: 170px;
    left: 50%;
    transform: translateX(-40%);
}
  .mission-content{
    padding-inline: 10px;
  }

.mission-title2,
.mission-title {
font-size: 80px !important;
}


.animate-on-scroll.show.fade-over-left
{
  transform: translateX(0px) !important;
}
}


/* --------------------------------- */
.craitrix-what{
    padding-block: 50px;
    background-color: #F0F6FF;

}
.craitrix-what-container{
    padding-inline: 50px;
}
.craitrix-what-head{
    text-align: center;
    font-weight: 700;
}
.craitrix-what-para{
    text-align: center;
}

.craitrix-what-box{
    background-color: #F0F0F3;
    box-shadow: inset 10px 10px 10px 0px #AEAEC0,
                 inset -10px -10px 10px 0px #FFFFFF;
                 border-radius: 21px;

                 text-align: center;
                 padding: 50px;
                 transition: all 0.3s ease;
}
.craitrix-what-box:hover{
     box-shadow: inset 10px 10px 10px 0px #FFFFFF,
                 inset -10px -10px 10px 0px #AEAEC0;
                 border-radius: 21px;

}


.craitrix-what-box h4{
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0072FF,#0D47A1);
    background-clip: text;
    color: transparent;
}

@media (max-width:786px) {
  .craitrix-what-para{
    padding-inline: 20px;
  }
}

/* -------------------------------- */
.craitrix-approach{
    padding-block: 80px;
    height: 600px;
    position: relative;
}
.craitrix-approach::before{
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #0072FF, #0D47A1);
  
}
.craitrix-approach-right{
    height: 100%;
}
.craitrix-approach-container .row{
    height: 100% !important;
}
.craitrix-approach-right .col-lg-4:nth-child(2){
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100% !important;
}
.craitrix-approach-right .col-lg-4:nth-child(3){
    display: flex !important;
    justify-content: center !important;
    align-items: start !important;
    height: 100% !important;
}
.craitrix-approach-right .col-lg-4:nth-child(1){
    display: flex !important;
    justify-content: center !important;
    align-items: end !important;
    height: 100% !important;
}
.craitrix-approach-right-box img{
    width: 100%;
    border-radius: 1rem;
}
.craitrix-approach-container{
    padding-inline: 40px;
    height: 100%;
}
.craitrix-approach-left{
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}
.craitrix-approach-left h2{
     margin-bottom: 20px;
    background: linear-gradient(135deg, #0072FF,#0D47A1);
    background-clip: text;
    color: transparent;
}
.craitrix-approach-right-box{
    position: relative;
}
.craitrix-approach-right-box::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(#00000000, #00000034, #00000071 , #000);
    border-radius: 1rem;
}
.craitrix-approach-right-box-inside{
    position: absolute;
    bottom: 0;
    color: white;
    padding-inline: 20px;
}
.craitrix-approach-right-box-inside p{
    color: white;
    font-size: 18px;
}
@media (min-width:1400px) {
  .craitrix-approach{
    height: 1000px;
  }
}
@media (max-width:986px) {
  .craitrix-approach{
    height: auto;
  }
  .craitrix-approach-container {
    padding-inline: 20px;
  }
  .craitrix-approach{
    padding-block: 0px;
  }
  .craitrix-approach-right-box-inside{
    position: relative;
  }
  .craitrix-approach-right-box{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  .craitrix-approach-right-box img{
    width: 40%;
  }
  .craitrix-approach-right .col-lg-4:nth-child(1){
    height: auto !important;
  }
  .craitrix-approach-right{
    height: auto;
  }
}

/* ------------------------------- */
.leadership-section {
  padding: 60px 100px;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 40px;
}

/* Flex layout */
.leader-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-block: 30px;
}

/* Profile Card */
.leader-card {
  position: relative;
  width: 300px;
  background: #fff;
  border-radius: 4rem 1rem 1rem 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.leader-card::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 30%;
  background: linear-gradient(135deg , #0072FF,#0D47A1);
  z-index: 0;
}
.leader-card2{
     position: relative;
  width: 300px;
  background: #fff;
  border-radius: 1rem 4rem 1rem 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}
.leader-card2::before{
     content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 30%;
  background: linear-gradient(135deg , #0072FF,#0D47A1);
  z-index: 0;
}


.leader-image img {
  width: 100%;
  border-radius: 8px;
  z-index: 2;
  position: relative;
}
.leader-image2 img{
      width: 100%;
  border-radius: 8px;
  z-index: 2;
  position: relative;
}

.linkedin-icon {
  position: absolute;
  top: 10px;
  right: 10px;
}
.linkedin-icon img{
    width: 40px;
    height: 40px;
}
.linkedin-icon2{
      position: absolute;
  top: 10px;
  left: 10px;
}

.linkedin-icon2 img{
      width: 40px;
    height: 40px;
}
.role-badge {
  position: absolute;
  left: 0;
  top: 30%;
  transform: rotate(-90deg);
  background: transparent;
  
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 2px;
  opacity: 0.6;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #F0F0F3;
  color: transparent;
  letter-spacing: 5px;

}
.role-badge2{
      position: absolute;
  right: -70px;
  top: 30%;
  transform: rotate(-90deg);
  background: transparent;
  
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 2px;
  opacity: 0.6;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #F0F0F3;
  color: transparent;
  letter-spacing: 5px;
  z-index: 3;
}
.leader-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  padding: 12px;
  background: linear-gradient(to bottom , #00000052, #000, #000);
  z-index: 2;
  color: white;
    }

.leader-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.leader-info p {
  font-size: 14px;
  margin: 0;
  opacity: 0.8;
  color: white;
}

/* Bio Section */
.leader-bio {
  flex: 1;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
}

@media (max-width:786px) {
  .leadership-section {
    padding-top: 60px;
    padding-inline: 20px;
    padding-bottom: 20px;
  }
  .section-title {
    margin-bottom: 0px;
  }
  .leader-container{
    padding-block: 0px;
  }
  .leader-bio{
    padding-block: 20px;
  }
}


/* ---------------------------------- */
.craitrix-people{
  background-color: #F0F6FF;
  padding-block: 30px;
}
.craitrix-people-head{
    background: linear-gradient(135deg, #0072FF, #0D47A1);
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    text-align: center;
}
.craitrix-people-para{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-bottom: 20px;
}
.craitrix-people-container{
    padding-inline: 50px;
}
.craitrix-people-grid{
    display: grid;
    grid-template-columns: repeat(7,1fr);
    justify-content: center;
    width: 90%;
   
    margin: auto;
    gap: 10px;
    
}
.craitrix-people-grid1{
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.craitrix-people-grid2{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
}

.craitrix-people-grid4{
    padding-top: 100px;
}
.craitrix-people-grid6{
      display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
}
.craitrix-people-grid7{
      display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
}
.craitrix-member{
    margin-bottom: 10px;
    width: 100%;
    position: relative;
    overflow: hidden;
    
}
.craitrix-member img{
    width: 100%;
    transition: all 0.3s ease;
}
.on-demand-ahead-last-img{
  width: 80px;
}
.craitrix-member-div{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.craitrix-member p{
  transform: rotate(-90deg);
  color: #adcbf0;
  width: 200%;
  height: 15%;
  position: absolute;
  font-size: 30px;
  bottom:-335px;
  left: -20px;
  transition: all 0.3s ease;
}
.craitrix-member::before{
  content:"";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #00000073,#00000085);
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 1;
}
.craitrix-member:hover::before{
  opacity: 1;
}
.craitrix-member:hover p{
  opacity: 1;
  z-index: 2;
    bottom:135px;

}
.craitrix-member:hover img{
  scale: 1.1;
}
@media (max-width:786px) {
  .craitrix-people-para{
    width: 100%;
    padding-inline: 20px;
  }
  .craitrix-people-container {
    padding-inline: 0px;
  }
  .craitrix-people-grid4 {
    padding-top: 25px;
  }
}

/* ------------------------------- */
.craitrix-future{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-block: 100px;
    width: 90%;
    margin: auto;
    border: 2px solid #0072FF;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    margin-block: 50px;
    background-color: #000;
    
}
.future-vector1{
  width: 20%;
  position: absolute;
  left: 0;
}
.future-vector2{
  width: 20%;
  position: absolute;
  right: 0;
}
.craitrix-future-div{
  padding-block: 30px;
}
.craitrix-future h2{
    background: white;
    background-clip: text;
    color: transparent;
    margin-bottom: 30px;
}
.craitrix-future button {
  padding: 15px 30px;
  border-radius: 2rem;
  background-color: #0072FF;
  color: white;
  font-weight: 600;
  width: fit-content;
  margin: auto;
  border: none;
  position: relative;
  overflow: hidden; /* so the shine doesn't overflow */
  cursor: pointer;
  box-shadow: inset -5px -5px 8px 0px #FFFFFF,
              inset 5px 5px 6.8px 0px #484848;
  transition: all 0.3s ease;
}

.craitrix-future button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;  /* start outside */
  width: 30px;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: skew(20deg);
  transition: all 0.4s ease;
}

.craitrix-future button:hover::before {
  left: 120%; /* sweep across fully */
}

.craitrix-future-img{
  position: absolute;
  bottom: -20px;
 
  width: 100%;
}

@media (max-width:786px) {
  .craitrix-future {
    padding-block: 25px;
  }
  .craitrix-future-img {
    bottom: 0;
  }
}



/* ----------------------------------------- */
.on-demand-ahead{
    background-color: #EFF6FF;
    padding-block: 30px;
}
.on-demand-ahead-left h2{
     padding-top: 30px;
     font-size: 50px;
  background: linear-gradient(45deg, #0D47A1, #0072FF);
  background-clip: text;
  color: transparent;
}
.on-demand-ahead-container{
    margin-inline: 30px;
}
.on-demand-ahead-right-right{
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white;
    height: 450px;
}
.on-demand-ahead-right-left{
        background-color:#004499;
 border-radius: 1rem;
 position: relative;
 height: 450px;
}
.on-demand-ahead-right-left img{
    width: 100%;
    height: 100%;
}
.on-demand-ahead-right-left-div{
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
}
.on-demand-ahead-right-left-div p{
  color: white;
}
.on-demand-ahead-right-right-box1{
    height: 300px;
        background-color:#004499;
 border-radius: 1rem;
 padding-inline: 10px;
 position: relative;

}
.on-demand-ahead-right-black{
   position: absolute;
   right: -10px;
   width: 100px;
   height: 100px;
   top: -10px;
   background-color: #000;
   border-radius: 0.5rem;
}
.on-demand-ahead-right-right-box1-div{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  height: 100%;
}
.on-demand-ahead-right-right-box1-div p{
    color: white;

}

.on-demand-ahead-right-right-box2{
    height: 130px;
     
    background-color: #E2E2E2;
        border-radius: 1rem;
 padding-inline: 10px;
 color: #000;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 20px;
 margin: auto;

}
.on-demand-ahead-right-right-box2 div i{
  font-size: 20px;
    color: #004499;
    
}

.on-demand-ahead-last{
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: center;
    gap: 20px;
    width: 100%;
    height: 100px;
    background-color: #E2E2E2;
        border-radius: 1rem;
        margin-top: 10px;
       
}
@media (max-width:986px) {
    .on-demand-ahead-right-right-box2{
        margin: 0px;
    }
    .on-demand-ahead-last {
        justify-content: space-between;
    }
}
@media (max-width:786px) {
    .on-demand-ahead-left h2{
        padding-top: 0px;
    }
    .on-demand-ahead-container{
        margin-inline: 20px;
    }
    .on-demand-ahead-right-right{
        margin-top: 20px;
        height: auto;
    }
    .on-demand-ahead-right-right-box2 {
        height: auto;
        padding: 10px;
        margin: 0px;
    }
    .on-demand-ahead-last h5{
        font-size: 16px !important;
    }
}