.border-btn-wrapper {
  transform: translate(0%, 0%);
}
body {
  cursor: default; /* Sets a standard pointer cursor for the whole body */
}

.fm-big-circle {
  animation: fRotate 50s linear infinite;
}

.fm-icon-block img {
  animation: fRotate-reverse 50s linear infinite;
}
.fm-icon-block:first-child {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fm-icon-block:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}
.fm-icon-block:nth-child(3) {
  bottom: 0;
  right: 50%;
  transform: translate(50%, 50%);
}
.fm-icon-block:nth-child(4) {
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
}

.fm-icon-block:nth-child(5) {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fm-icon-block:nth-child(6) {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}
.fm-icon-block:nth-child(7) {
  bottom: 0;
  right: 50%;
  transform: translate(50%, 50%);
}
.fm-icon-block:nth-child(8) {
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
}
.odo-sol{
  padding-left: 9%;
  font-size: 60px;
  font-weight: 600;
  color: #643F92;
}

@keyframes fRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes fRotate-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.play-btn::after {
  animation: rotatePlay 3s linear infinite;
}

.play-btn::before {
  animation: rotatePlayRev 3s linear infinite;
}

@keyframes rotatePlay {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

@keyframes rotatePlayRev {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-359deg);
  }
}

.video-ratio {
  aspect-ratio: 134 / 63;
}

.v-modal {
  animation: v-modal 0.5s linear;
  transform-origin: left;
}

@keyframes v-modal {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

.active-faq .plus {
  display: none !important;
}

.active-faq .minuse n{
  display: block !important;
}

/* before width increase anim  */
.width-increase::before {
  animation: w-increase 1s linear;
  transform-origin: left;
}

@keyframes w-increase {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

.screen-height {
  height: calc(100vh - 70px);
}

canvas {
  background-color: transparent !important; /* Default background color */
}

/* parallax style  */
#parallax-mouse {
  position: relative !important;
  width: 100%;
  height: 100%;
}
#parallax-mouse .layer:nth-child(1) {
  position: relative !important;
  left: -36% !important;
  top: -40% !important;
}
#parallax-mouse .layer:nth-child(2) {
  position: relative !important;
  left: 51% !important;
  top: -45% !important;
}
#parallax-mouse .layer:nth-child(3) {
  position: relative !important;
  left: -48% !important;
}
#parallax-mouse .layer:nth-child(4) {
  position: relative !important;
  top: 42% !important;
  left: -49% !important;
}

#parallax-mouse .layer:nth-child(5) {
  position: relative !important;
  left: 14% !important;
  top: 42% !important;
}
#parallax-mouse .layer:nth-child(6) {
  position: relative !important;
  top: 36% !important;
  left: 33% !important;
}

/* home three  */
.h3-nav-logo {
  clip-path: polygon(0 0, 100% 0%, 73% 100%, 0% 100%);
}

.bg-cover-bottom {
  background-repeat: no-repeat;
  object-fit: cover;
  background-size: cover !important;
  background-position: bottom !important;
}

/* custom scrollbar  */

/* width */
.custom-scrollbar::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}

/* Track */
.custom-scrollbar::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #f9c8b8;
  opacity: 0.8;
  border-radius: 10px;
}

/* Handle on hover */
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #ec4814;
}
.swiper-slide-thumb-active {
  border: 2px solid #ec4814;
}
.open-anim {
  transform-origin: top left;
  animation: slider-open 200ms linear;
}

@keyframes slider-open {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.option-open {
  transform-origin: top left;
  animation: option-open 300ms linear;
}

@keyframes option-open {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}

.bg-\[\#FFFAF0\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 250 240 / var(--tw-bg-opacity)) !important;
}

.moving-anim-x {
  transform-origin: top left;
  animation: xMoving-anim 3000ms linear infinite alternate;
}

@keyframes xMoving-anim {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(10px);
  }
}

.moving-anim-y {
  transform-origin: top left;
  animation: yMoving-anim 2000ms linear infinite alternate;
}

@keyframes yMoving-anim {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}
.nav-link {
  color: #333;
 
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.nav-link:hover {
  color: #5A2D88;
}

/* Style for active link */
a.active .nav-link {
  color: #5A2D88;
  font-weight: bold;
  border-bottom: 2px solid #5A2D88;
}
/* General style for links */
.nav-link, .submenu-item {
  color: #333;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

/* Hover effect */
.nav-link:hover, .submenu-item:hover {
  color: #5A2D88;
}

/* Active state for main nav link */
a.active .nav-link,
.active > .nav-link {
  color: #5A2D88;
  font-weight: bold;
  border-bottom: 2px solid #5A2D88;
}

/* Active state for submenu item */
.submenu-item.active {
  color: #5A2D88;
  font-weight: bold;
}
.round-img1{
  width: 45%;
}
.round-img2{
  width: 25%;
}



.border-btn {
  background-color: #5A2D88; /* Blue color */
  color: white; /* Text color */
  padding: 8px 16px; /* Padding for the button */
  border-radius: 45px; /* Rounded corners */
  font-size: 14px; /* Smaller font size */
  text-decoration: none; /* Remove underline */
  display: inline-block; /* Make it behave like a button */
  transition: background-color 0.3s ease; /* Smooth hover transition */
  width: 115px;
  border-color: #5A2D88;
}


.border-btn:hover {
  background: linear-gradient(90deg, #5A2D88 0%, #EB4568 100%);
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto
}

.contain-fetu {
  width: 100%;
  /* height: 125vh;  */
  background: linear-gradient(90deg, #F4F4F4 0%, #F7F7F7 100%);
  margin-top: 75px;
  padding: 4% 9%;


}
.grid-container {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 10px;
  background: linear-gradient(90deg, #3D1D59 0%, #5A2D88 100%);
  padding: 10px;
  height: 400px;
}

.grid-container > div {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid black;
  text-align: center;
  font-size: 30px;
}
.banner-odo{
  width: 100%;
  height: 300px;

}
.image-text-container {
  position: relative;
}

.background-image {
  display: block;
  width: 100%;
  height: auto;
}
.image-text-container {
  position: relative;
  display: inline-block;
}

.background-image {
  width: 100%; /* Adjust based on your design */
  height: auto; /* Adjust based on your design */
}

.text-content {
  position: absolute;
  top: 40%; /* Adjust as needed */
  left: 62%; /* Adjust as needed */
  transform: translate(-50%, -50%); /* Center the text horizontally and vertically */
  color: white; /* Choose a color that contrasts with the background image */
}

h1, h2, p {
  margin: 0; /* Remove default margins */
}
.container_banner {
  position: relative;
  width: 100%;
  min-height: 350px;
  background-image: url('../images/erp/bg-01.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
align-items: center;    
}

.image-above-container {
  position: relative; 
  height: 350px;
  z-index: 99;
}
.img-hover-zoom {
  position: relative; /* Make it a containing block for the text */
  height: 300px; /* Set the height as needed */
  overflow: hidden; /* Hide overflowing child elements */
}

/* Image transition */
.img-hover-zoom img {
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Hover effect on container */
.img-hover-zoom:hover img {
  transform: scale(1.2);
  opacity: 0; /* Hide the image */
}

/* Styling the text */
.hover-text {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  background: linear-gradient(90deg, #5A2D88 0%, #EB4568 100%);
  width: 100%;
  height: 105%;
  padding-top: 27px;
  padding-left: 30px;
  padding-right: 30px;
  /* padding: 10px; */
}

/* Make text visible on hover */
.img-hover-zoom:hover .hover-text {
  opacity: 1;
}


/* .global {
  position: relative;
  text-align: center;
  color: white;
  margin-top: 70px;
} */

.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

.centered {
  position: absolute;
  top: 30%;
  left: 22.7%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  font-weight: 700;
  line-height: 48.41px;
  text-align: left;
}
.line {
  position: absolute;
  top: 60%;
  left: 35%;
  transform: translate(-50%, -50%);
  border-bottom: 1px solid white;
}
.year {
  position: absolute;
  top: 45%;
  left: 46%;
  transform: translate(-50%, -50%);
  border-bottom: 1px solid white;
}
.empower{
  position: relative;
  text-align: center;
  color: white;
  margin-top:0px;
}
.paragr {
  position: absolute;
  top: 47%;
  left: 40%;
  transform: translate(-50%, -50%);
  font-size: 24px;
font-weight: 500;
line-height: 29.05px;
text-align: left;
}
.buto {
  position: absolute;
  top: 67%;
  left: 14%;
  transform: translate(-50%, -50%);
}
/* .cent {
  position: absolute;
  top: 30%;
  left: 46%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  font-weight: 700;

}
.cent-1{
    position: absolute;
    top: 46%;
    left: 552px;
    transform: translate(-50%, -50%);
    font-size: 60px;
    font-weight: 700;
    width: 90%;
} */
.responsive-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh; /* Full viewport height */
  text-align: center; /* Center text alignment */
}

.cent,
.cent-1 {
  font-size: 4vw; /* Scales with the viewport width */
  font-weight: 700;
  margin: 0.5em 0; /* Adds spacing between lines */
  width: 90%; /* Keeps text within bounds */
}

@media (max-width: 768px) {
  /* Adjust font size and spacing for smaller screens */
  .cent,
  .cent-1 {
    font-size: 6vw;
  }
}

/* .centr {
  position: absolute;
  top: 69%;
  left: 46%;
  transform: translate(-50%, -50%);
} */
.life-container{
  background-color: #5A2D88;

}


/* Horizontal Timeline */
.timeline-horizontal {
  list-style: none;
  position: relative;
  padding: 20px 0px;
  display: inline-block;
}
.timeline-horizontal:before {
  content: " ";
  height: 3px;
  background-color: #eeeeee;
  position: absolute;
  bottom: 26px;
  left: 56px;
  right: 0;
  width: 100%;
  margin-bottom: 20px;
}
.timeline-item {
  display: table-cell;
  height: 280px;
  width: 20%;
  min-width: 320px;
  float: none !important;
  padding-left: 0px;
  padding-right: 20px;
  margin: 0 auto;
  vertical-align: bottom;
}
.timeline-item .timeline-panel {
  top: auto;
  bottom: 64px;
  display: inline-block;
  float: none !important;
  left: 0 !important;
  right: 0 !important;
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid gray;
  background: gray;
  border-radius: 2px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}
.timeline-item .timeline-panel:before {
  content: " ";
  position: absolute;
  bottom: -16px;
  left: 28px !important;
  border-right: 16px solid transparent !important;
  border-top: 16px solid gray !important;
  border-left: 16px solid transparent !important;
}
.timeline-item .timeline-badge {
  color: #fff;
  width: 54px;
  height: 54px;
  line-height: 52px;
  font-size: 22px;
  text-align: center;
  position: absolute;
  bottom: 0px;
  left: 43px;
  margin-left: -25px;
  background-color: gray;
  border: 3px solid gray;
  z-index: 100;
  border-radius: 50%;
}
.timeline-item .timeline-badge.primary {
  background-color:gray;
}
.timeline-item .timeline-badge.success {
  background-color:gray;
}
.timeline-item .timeline-badge.info {
  background-color: gray;
}
.timeline-item .timeline-badge.warning {
  background-color: gray;
}
.timeline-item .timeline-badge.danger {
  background-color:gray;
}



.milestones {
    text-align: center;
    position: relative;
}

.milestones h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.milestones p {
    color: #888;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.timeline-path {
    position: relative;
    width: 80vw;
    height: 60vh;
    background-image: url('path.png'); /* Replace with the timeline path image or SVG if available */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.milestone {
    position: absolute;
    top: var(--top-position);
    left: var(--left-position);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--milestone-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.text-box {
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 150px;
    text-align: left;
    position: relative;
}

.text-box::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    background-color: var(--milestone-color);
    top: 50%;
    transform: translateY(-50%);
}

.text-box.left::before {
    left: -10px;
}

.text-box.right::before {
    right: -10px;
}

.text-box h2 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.text-box p {
    font-size: 0.9rem;
    color: #666;
}

/* Position adjustments */
.text-box.left {
    margin-right: 20px;
    text-align: left;
}

.text-box.right {
    margin-left: 20px;
    text-align: left;
}


  


/* .container {
  text-align: center;
  max-width: 600px;
  padding: 20px;
} */

.title {
  font-size: 60px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  margin-top: 260px;
}

.subtitle {
  font-size: 32px;
  font-weight: 500;
  margin-top: 10px;
  background: linear-gradient(90deg, #CF9FFF 0%, #FFE8ED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;



}
.p-1

.cards {
  display: flex; /* To arrange cards in a row */
  flex-wrap: wrap; /* Allows wrapping to the next line if space runs out */
  gap: 16px; /* Adds space between cards */
}

.card {
  width: 200px; /* Set the desired width */
  height: 100px; /* Set the desired height */
  border: 1px solid #ddd; /* Optional: Adds a border for visibility */
  border-radius: 8px; /* Optional: Rounds the corners */
  display: flex; /* To align text and icon */
  justify-content: space-between; /* Places text and icon at ends */
  align-items: center; /* Centers content vertically */
  padding: 16px; /* Adds inner space */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow */
  background-color: #fff; /* Optional: Set background color */
  cursor: pointer; /* Optional: Adds pointer cursor on hover */
}

.card-text {
  font-size: 16px; /* Adjust text size */
  font-weight: bold; /* Makes text bold */
}

.card-icon {
  font-size: 20px; /* Adjust icon size */
}

.card:hover {
  transform: translateY(-3px);
}

.card-text {
  font-size: 1.1em;
  font-weight: 500;
  color: #333;
}







    /* .container {
      text-align: center;
      max-width: 800px;
      margin: auto;
    } */

    h1 {
      font-size: 24px;
      margin-bottom: 20px;
      color: #333;
    }

    .capabilities {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .card {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      width: 180px;
      padding: 15px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: box-shadow 0.3s ease;
    }

    .card:hover {
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }

    .icon {
      font-size: 24px;
      color: #FFD700;
      margin-bottom: 10px;
    }

    /* .title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 5px;
      color: #333;
    } */

    .description {
      font-size: 14px;
      color: #666;
    }


  .contain {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background-color: #7a4fcf;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .icon img {
    width: 60%;
    height: 60%;
  }

  h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
  }

  p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
  }

  button {
    background-color: #7a4fcf;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
  }

  button:hover {
    background-color: #6b42b6;
  }


  .head-1{
    background: linear-gradient(90deg, #5A2D88 0%, #EB4568 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    width:100%;
    line-height: 82px;
    font-size: 70px !important;
    /* margin-left: 5%;    */

  }
  .globe-1{
  margin-top: -200px;
  }
  .key-head{
    font-size: 40px;
      font-weight: 700;
      background: linear-gradient(90deg, #5A2D88 0%, #EB4568 100%);
       -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
         /* text-shadow: 0 0 5px rgba(90, 45, 136, 0.5), 0 0 10px rgba(235, 69, 104, 0.7); */

  }
  .key-head2{
   margin-bottom: 25px;
   /* background: linear-gradient(90deg, #5A2D88 0%, #EB4568 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent; */
}
  .key-flx{
    display: flex;
    flex-wrap: wrap;
  }
  .key-image{
    width: 95%;
     height: 70%;
     border-top-left-radius:10px;
      border-top-right-radius:10px;
  }
  .key-image2{
    width: 95%; border-bottom-left-radius:10px; border-bottom-right-radius:10px;
            height: 25%;
            border-color: black;
            background: white;
            padding: 15px;
             text-align: center;
             font-size: 18px;
             font-weight: 600;
             /* margin-top: -3px; */
  }
  .bord-btn:hover {
    background-color: #5A2D88;
    color: white;
    cursor: pointer;
}
  .odo-ban1{
    position: relative;
     width: 85%;
      margin: 0 auto;
  }
  .odo-ban-cur{
    width: 99.5%;border-radius: 10px;
  }
  .odo-ban2{
   position: absolute;
    top: 17%;
     left: 51%; 
     transform: translate(-50%, -50%);
      color: white;
       z-index: 3;
       font-size: 32px;
  }
  .odo-ban3{
    position: absolute;
     top: 32%;
      left: 55.5%; 
      transform: translate(-50%, -50%); 
      color: white;
       z-index: 3;font-size: 36px;
        font-weight: 500;
  }
  .odo-ban4{
    position: absolute;
     top: 62%;
      left: 66.8%;
      width: 57%;
       transform: translate(-50%, -50%);
        color: white;
         z-index: 3;font-size: 18px;
          font-weight: 500;
  }
  .odo-ban5{
    position: absolute;
     top: 88%;
      left: 43%;
       transform: translate(-50%, -50%); color: white;
        z-index:3;
  }
  .odo-img{
    position: absolute;
    top: -10px;
    left: -20px;
    z-index: 2;
    padding: 10px;
    width: 35%;
    }
    .odo-img2{
    width: 100%; border-radius: 10px;
    }
    /* .inds-1{
      font-size: 60px;
      font-weight: 600;
      color:#643F92;
      margin-bottom: 5px;
      margin-top: 50px;
    } */
    .our-1 {
      width: 24%;
      height: 161.76px;
      border-radius: 8px;
      background-color: aliceblue;
      opacity: 1;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      display: flex
  ;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 13px;
      text-align: center;
  }
    .impl-1{
      width: 100%;padding: 45px;
      font-size: 60px;
      font-weight: 600;
      /* line-height: 72.61px; */
      color:#643F92;
    }
    .our-2{
      width: 33%;
      height: 161.76px;
      border-radius: 8px;
      background-color: white;
      opacity: 1;
      /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
      border-width: .5px;
      border-style: solid;
      border-color: #e9e3e3;
    }
    .enga-1{
      margin-left: 15px;
      font-size: 24px;
      font-weight: 500;
    }
    .cap-1 {
      width: 32.5%;
      height: 112px;
      border-radius: 8px;
      background-color: white;
      opacity: 1;
      /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
      border-width: .5px;
      border-style: solid;
      border-color: #e9e3e3;
      display: flex
    ;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .our-head{
    margin-top: 60px;
    padding-left: 9%;
    padding-right: 9%;
    }
    .img-wid {
      width: 25%;
      height: 280px;
  }
  .since{
    width: 125px;
     height: 30px;
     background: linear-gradient(to right, #022047, #054EAD);
     border-radius: 20px;
     font-weight: 600;
     font-size: 18px;
     margin-top:15px;
   }
   
  
  
    .tech-stack{
   
        background: linear-gradient(90deg, #5A2D88 0%, #EB4568 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-weight: 700;
        /* width: 80%; */
        margin-left: 10%;
        font-size: 40px; /* Set font size */
        line-height: 2;
    }
    .glb-img{
     display: flex;justify-content: center; 
     height:56vh; padding: 30px;
      background-image: url('assets/img/home-1/Ellipse\ 1533.svg'); background-size: cover; /* Adjust based on how you want the image to fit */
    background-position: center; /* Center the image */
    background-repeat: no-repeat"
    }
    .jrny{
        font-size: 60px;
        font-weight: 600;
        position: absolute;
        top: 30%;
        left: 8.5%;
          font-weight: 700;
          background: linear-gradient(90deg, #EB4568 0%, white 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          /* text-shadow: 0 0 5px rgba(90, 45, 136, 0.5), 0 0 10px rgba(235, 69, 104, 0.7); */
      
    }
    .jrny-year{
      font-size: 60px;
      font-weight: 700;
      position: absolute;
      top: 46%;
      left: 8.5%;
  }
  .jrny-eli {
    font-size: 60px;
    font-weight: 700;
    position: absolute;
    top: -22%;
    left: -11.5%;
}
    .empw {
  
      background: linear-gradient(90deg, #5A2D88 0%, #EB4568 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-weight: 600;
      font-size: 48px;
      line-height: 1.3;
      margin-top: 50px;
      margin-bottom: 10px;
  }
  .open-cont {
    width: 80%;
    height: 80px;
    background-color: white;
    border: 0.5px solid #33333333;
    display: flex;
    justify-content: space-between; /* Use space-evenly for equal gaps around items */
    align-items: center;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
}
    .odo-rdy{
      display: none;
    }
    .tle{
      text-align: center;
      margin-bottom: 50px;
    }
    .ttl {
      font-size: 60px;
      font-weight: 600;
      background: linear-gradient(90deg, #EB4568 0%, white 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
    /* .subtitle {
      margin-top: 10px;
      background: linear-gradient(90deg, #EB4568 0%, white 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    } */
    .description {
      font-size: 1rem;
      /* margin-top: 15px; */
      line-height: 1.5;
      color: white;
    }
    .digi{
      height: 60vh;width: 60%; margin-left: 10px;
    }
    .journy{
      width: 100%; background: linear-gradient(to bottom, #3D1D59, #5A2D88); padding: 4%;margin-bottom: 100px;
    }
    .odo-pading{
    padding: 5%;
    }
    .timeline-main {
      display: flex;
      /* padding: 18px; */
      /* gap: 8px; */
  }
  .glb-mob{
    display: none;
  }
  .bring-idea{
  width:100%;
  height: 400px;
  }
  .crsl{
    margin-top: 80px; 
    padding-left: 10%;
    padding-right: 10%;
  }
  .grd-flx {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px; /* Space between grid items */
    margin-bottom: 20px;
     /* Optional for inner spacing */
}
.erp-flx{
  display: flex;
}
 
  @media (max-width: 1340px) {
    .key-image{
  margin-top: -9px;
    }
    .timeline-main{
      overflow-x: auto;
    }
    .key-image2{
      font-size: 16px;
    }
    .odo-ban4 {
      font-size: 12px;
    }
 
  }
  @media (max-width: 1125px) {
.offr-1{
  font-size: 11px;
}
  }
  @media (max-width: 1085px) {
    .since{
   
       margin-left: 200px;
     }
     
    .year {
      top: 54%;
    }

    .key-image2{
      font-size: 18px;
      padding: 1px;
    }
    .contain-fetu {
      height: 200%;
  }
    .odo-ban1{
      width: 100%;
    }
    .odo-ban2{
      font-size: 25px;
    }
    .odo-ban3{
      font-size: 25px;
    }
    .odo-ban4{
      font-size: 12px;
    }
    .centered{
      left: 40%;
    }
    .cent{
      font-size: 30px;
    }
    .title {
      font-size: 40px;
  }
  .enga-1{
    font-size: 18px;
  }
  .paragr {

    font-size: 19px;
 
}
.glb-img {
  display: contents;
}
.img-wid{
  width: 50%;
}
.digi {
  height: 26vh;
  width: 99%;
  margin-left: 10px;
  padding: 2%;
}
.glb-mob{
  display: inline;
}
.glb-des{
  display: none;
}
.empw {

  font-size: 40px;

}
.glb-mob-1{
  margin-top: -200px;
  width: 43%;
}
.jrny-year {
  font-size: 60px;
  font-weight: 700;
  position: absolute;
  top: 53%;
  left: 40.5%;
}

 
  }

  @media (max-width:768px) {

    .key-image2{
      font-size: 16px;
    }
 
    /* .key-flx{
      display: ruby;
    } */
    .key-image{
      margin-top: 1px;
        }
  .odo-img{
    display: none;

  }
  .odo-rdy{
    display: inline;
  }
  .background-image {
    width: 100%;
    height: 329px;
}
.centered{
  top: 17%;
  font-size: 20px;

}
.paragr {
  top:42%;
  font-size:14px;

}
.since {

  left: 261px;

}
/* .ser-img{
    height: 500px;
} */
/* .ofr-1{
  height: none;
} */
.impl-1{
  font-size: 35px;
}
.impl-01{
  margin-top: 350px;
}
/* .our-head{
  margin-top: 1px;
  } */
  /* .contain-fetu {
    height: 130%;
} */
.img-wid{
  width: 50%;
}
.odo-ban2{
  left: 190px;
  top: 35%;
}
.odo-ban3{
  left: 203px;
  top:43%
}
.odo-ban4{
  left: 40%;
}
.odo-pading {
  padding: 0%;
}
.odo-ban-cur {
  /* width: 99.5%; */
  border-radius: 1px;
}
.glb-mob-1 {
  margin-top: -89px;
  width: 250px;
}
.journy {

  padding: 4%;
}
.jrny {
  font-size: 40px;
  left: 3.5%;
}

  .jrny-year {
      font-size: 60px;
      font-weight: 700;
      position: absolute;
      top: 56%;
      left: 25.5%;
  }
  .erp-flx{
    display: contents;
  }
   
      
  }

  @media (max-width:480px) {

    .key-image2{
      font-size: 20px;
    }
    .contain-fetu {
      height: 280%;
  }
    /* .key-flx{
      display: ruby;
    } */
    .key-image{
      margin-top: 1px;
        }
  .odo-img{
    display: none;

  }
  .background-image {
    width: 100%;
    height: 329px;
}
.odo-ban2{
  font-size: 15px;
}
.odo-ban3{
  font-size: 15px;
}
/* .inds-1{
  font-size: 30px;
  margin-left: 1px;
  color:#643F92;
} */
.impl-01{
  margin-top: 450px;
}
.our-2{
  width: 351px;

}

/* .enga-1 {
  font-size: 12px;
} */
/* .our-1{
  width: 276px;
}    */
/* .cap-1 {
  width: 256px;
}  */
.key-flx {
  display: block;
}
.img-wid{
  width: 100%;
  padding: 12px;
}
.odo-ban4 {
  position: absolute;
  top: 64%;
  left: 52%;
  width: 83%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 3;
  font-size: 11px;
  font-weight: 500;
}
.tech-stack{
  font-size: 37px;
}
.border-btn {
  margin-left: 74px;
}
.jrny{
  font-size: 30px;
  padding: 16px;

}
.empw{
  padding: 11px;
 
font-size: 34px;
       
}
.empw-2{
  margin-left: 11px;
  font-size: 20px;
  font-weight: 500;

}
.open-cont{
  display: inline-table;
}
.odo-ban3{
  left: 38%;
  font-size: 20px;
}
.odo-ban2{
  left: 35%;
  font-size: 20px;
}
.bord-btn{
  margin-left: 66px;
}
.odo-ban5{
  position: absolute;
   top: 88%;
    left: 25%;
     transform: translate(-50%, -50%); color: white;
      z-index:3;
}
.centered {
  top: 27%;
  font-size: 24px;
  width: 72%;
  left: 46%;
}
.buto {
  position: absolute;
  top: 75%;
  left: 14%;
  transform: translate(-50%, -50%);
}

.glb-mob-1 {
  margin-top: -200px;
  width: 250px;
}
.glb-mob-1 {
  margin-top: 35px;
  width: 325px;
}
.year {
  top: 64%;
}
.globe-1 {
  margin-top: 0px;
}
.head-1 {
  margin-top: 80px;
  margin-bottom: 80px;
  line-height: 50px;
  font-size: 40px !important;
}
.key-head{
  font-size: 32px;
line-height: 36px;
}
.paragr {
  top: 50%;
  font-size: 12px;
  width: 81%;
  line-height: 21px;
  left: 50%;
}
.bring-idea {
  width: 100%;
  height: 290px;
  margin-top: -51px;
}
.crsl{
  margin-top: 30px; 
  padding-left: 10%;
  padding-right: 10%;
}
.jrny-year {
  font-size: 60px;
  font-weight: 700;
  position: absolute;
  top: 60%;
  left: 46.5%;
}
.journy {
  width: 100%;
  background: linear-gradient(to bottom, #3D1D59, #5A2D88);
  padding: 8%;
  margin-bottom: 10px;
}
.ttl{
  font-size: 40px;
} 
.banner h1{
  font-size: 42px !important;
  width: 100% !important;
 
}
}
  

  .fnt-ofr{
    font-size: 13px;
  }
  .offr-1{
 
    font-size: 20px;
    font-weight: 500;
    margin-top: 10px;
    margin-left: 25px;
    }
  .card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  
  .card-icon {
    font-size: 24px;
    color: #b30086;
    margin-bottom: 10px;
  }
  
  .card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #333;
  }
  
  .card p {
    font-size: 14px;
    color: #666;
  }
  

  .feature-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .feature-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px;
    border-top: 1px solid #ddd; /* Top border */
    border-bottom: 1px solid #ddd; /* Bottom border */
  }
  .feature-title {
    font-weight: bold;
    margin-bottom: 5px;
    flex: 1 1 100%; /* Full width for small screens */
  }
  .feature-description {
    color: #555;
    flex: 1 1 70%; /* Allow description to take most of the space */
  }
  
  @media (min-width: 768px) {
    .feature-row {
      flex-wrap: nowrap; /* No wrapping on larger screens */
    }
    .feature-title {
      flex: 1 1 30%; /* Title takes less space on larger screens */
    }
    .feature-description {
      flex: 1 1 65%;
    }
  }
  /* .inds-1:hover {
    color: #b30018;
    transition: color 0.3s ease-in-out;
  }
   */
  /* Hover effects for images and their container */
  .key-flx div:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .key-flx div:hover span {
    /* color: #ff6600; */
    font-weight: bold;
  }
  
  /* Hover effects for .our-1 items */
  .our-1:hover {
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
  }
  
  .our-1:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .our-1:hover div {
    color: #5A2D88;
    font-weight: bold;
  }
  .transparent-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    border: 0.5px solid black; /* Adjust color as needed */
    color: black; /* Adjust color as needed */
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 70px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .transparent-button:hover {
    background-color: #5A2D88;
    color: #fff;
  }

  .arrow-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: auto;
    transition: all 0.3s ease;
  }

  .transparent-button:hover .arrow-icon {
    transform: rotate(45deg) translate(2px, -2px);
  }
  .open-head{
    font-size: 60px;
    font-weight: 600;
    line-height: 72.61px;
    text-align: center;
    margin-bottom: 50px;
    color:  #643F92;
  }
 

.conta-car {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header {
  text-align: center;
  margin-bottom: 20px;
}
.header h1 {
  font-size: 24px;
  margin: 0;
  color: #e63946;
}
.header p {
  font-size: 14px;
  color: #555;
}
.apply-button {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  background-color: #e63946;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}
.section {
  margin-bottom: 20px;
}
.section h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #444;
}
.section ul {
  padding-left: 20px;
}
.section ul li {
  margin-bottom: 8px;
}
h2 {
  color: #444;
}
ul {
  padding-left: 30px; /* Increases the space for bullet points */
  list-style-type: disc; /* Ensures a disc bullet style */
}
ul li {
  margin-bottom: 8px;
  text-indent: -20px; /* Ensures the bullet stays close to the left */
  padding-left: 20px; /* Adds space between the bullet and the text */
}
.form-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}

h1 {
  /* text-align: center; */
  color: #333;
  margin-bottom: 20px;
}

input, textarea, button {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

textarea {
  height: 150px;
  resize: vertical;
}

button {
  background-color: #643F92;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #5A2D88;
}

input[type="file"] {
  padding: 10px;
}

.form-container input[type="file"] {
  border: 1px solid #ccc;
}

.container-abt {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  
}
.your-trus{
display: flex;
justify-content: center;
align-items: center;
}
.arrow-key1{
  font-size: 25px; margin-right: 10px; margin-bottom: 
  45px; background: linear-gradient(to right, white, #5A2D88); 
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.arrow-key2{
  font-size: 25px;margin-bottom:
   45px;color: #5A2D88; margin-left: -35px; 
}
.about_banner{
  width:100%;
  height: 80vh;
  object-fit: cover; 
  object-position: center; 
}

.form-section {
  flex: 1;
}

.form-section h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.form-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-section input, .form-section textarea, .form-section button {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-section textarea {
  resize: none;
  height: 100px;
}

.form-section button {
  background-color: #6A1B9A;
  color: #fff;
  border: none;
  cursor: pointer;
}

.form-section button:hover {
  background-color: #4A148C;
}

.contact-info {
  /* flex: 1; */
  background: #39175D;
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-info p, .contact-info a {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
}

.contact-info img {
  width: 100%;
  border-radius: 10px;
  margin-top: 10px;
}
.your-trus-mob{
  display: none;
}
.bord-btn {
  background-color: white;
  color: black;
  padding: 8px 16px;
  border-radius: 45px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  margin-top: -7px;
  width: 115px;
  font-weight: 600;
  border-color: #5A2D88;
}
.slogn{
  width: 50%;
}
.slogn-pos{
  text-align: center;
   margin-top: 20px;
   margin-left: 35%;
}
.rond-pad{
  padding-top: 90px;
}

.global {
  position: relative;
  text-align: center;
  color: white;
  margin-top: 70px;
}

.ser-img {
  width: 100%; /* Scale to full width */
  height: 90vh; /* Set height based on the viewport */
  object-fit: cover; /* Prevent distortion */
}

.content-wrapper {
  position: absolute; /* Position content over the image */
  top: 45%;
  left: 48%; /* Center horizontally */
  transform: translate(-50%, -50%);
  text-align: left; /* Align text to the left */
  color: white;
  width: 80%; /* Set a max width for content */
  max-width: 1200px; /* Limit width for larger screens */
}

.cent,
.cent-1 {
  font-size: 4vw; /* Scales with viewport width */
  font-weight: 700;
  margin: 0; /* Remove vertical margin */
  margin-bottom: -9px; /* Add small spacing between these classes */
  width: 100%; /* Ensure it doesn’t extend beyond its parent */
  line-height: 1.4; /* Improve readability */
}

.centr {
  font-size: 18px;
  font-weight: 200;
  margin-top: 15px;
  line-height: 1.5;
  width: 80%;
}
.inds-img{
 width: 100px;
}
.inds-1 {
  font-size: 60px;
  font-weight: 600;
  color: #643F92;
  margin-bottom: 25px;
  margin-top: 60px;
  line-height: 44px;
  text-align: center;
}
.inds-lit{
 margin-top: 10px;
}
.inds-mob{
  display: none;
}
.mob-pa{
  padding: 50px;
}
.spac-our{
  margin-top: -60px;
}
.eng-mob{
  display: none;
}
.why-join{
  display: flex; align-items: center; justify-content: center; gap: 150px;
}
.content-career {
  position: absolute;
  top: 36%;
  left: 48%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 100%;
  max-width: 1200px;
  font-size: 60px;
  font-weight: 700;
  padding-left: 9%;
  padding-right: 9%;
}
.content-career2 {

  max-width: 1200px;
  font-size: 60px;
  font-weight: 700;
}
.content-career3 {
 

  max-width: 1200px;
  font-size: 20px;
  font-weight: 400;
}
.eng-diagram{
width: 550px; margin-top: 28px;
}
.why-image{
  width: 100%; max-width: 100%; height: 45vh;
}
.why-wid{
  width: 50%; text-align: left;
}
@media (max-width: 1080px) {
  /* Adjust for smaller screens */
  .content-wrapper {
    position: absolute;
    top: 45%;
    left: 45%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: white;
    width: 75%;
    max-width: 1200px;
}
.eng-diagram{
 display: none;
  }
  .why-join {

    gap: 10px;
}
.why-image {
  width: 100%;
  max-width: 100%;
  height: 32vh;
}

.cent, .cent-1 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  margin-bottom: -9px;
  width: 100%;
  line-height: 1.4;
}
.inds-img {
  width: 85px;
}
.inds-1 {
  font-size: 40px;
}
.our-1{
  width: 49%;
  margin-bottom: 10px;
}
.our-2 {
  width: 49.5%;
  height: 161.76px;
  border-radius: 8px;
  background-color: white;
  opacity: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 9px;
}
.eng-mob{
  display: contents;
}
.eng-desk{
  display: none;
}
.title {
  font-size: 40px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  margin-top: 25px;
}
.content-career{
  font-size: 40px;
}
.content-career2{
  font-size: 40px;
}
.open-head{
  font-size: 40px;
}
.arrow-key1{
  font-size: 12px; 
}
.arrow-key2{
  font-size: 12px;
}
.odo-sol{
  padding-left: 8%;
  font-size: 40px;
  font-weight: 600;
  color: #643F92;
  line-height: 48px;
}
 
.round-img1{
  width: 25%;
}
.round-img2{
  width: 25%;
}
 
 
}


@media (max-width: 768px) {
  .cent,
  .cent-1 {
    font-size: 40px;
  }
  .why-image {
 display: none;
  }
  .why-wid{
    width: 100%; text-align: left;
  }

  .centr {
    font-size: 16px;
  }
  .inds-mob{
    display: contents;
  }
  .inds-desk{
    display: none;
  }
  .inds-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 150px; /* Ensure all items have the same width */
  }
  .your-trus-mob {
    display: grid;

    justify-content: center;
    align-items: center;
    margin-left: 40px;
}
.your-trus{
  display: none;
}
.arrow-key1,.arrow-key2{
  display: none;
}
  
  .inds-img {
    width: 100px;
    height: auto;
  }
  
  .inds-lit {
    margin-top: 10px;
    font-size: 14px;
  }
  .spac-our {
    margin-top: -110px;
}
.our-2 {
  width: 67.5%;
  height: 161.76px;
  border-radius: 8px;
  background-color: white;
  opacity: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 9px;
}
 .cap-1 {
  width: 75%;
} 

}


@media (max-width: 480px) {
  .cent,
  .cent-1 {
    font-size: 40px;
  }

  .centr {
    font-size: 16px;
  }
  .content-wrapper {
    position: absolute;
    top: 45%;
    left: 48%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: white;
    width: 83%;
    max-width: 1200px;
}
.cent, .cent-1 {
  font-size: 35px;
}
.centr {
  font-size: 14px;
}
.mob-pa{
  padding: 20px;
}
.our-1 {
  width: 100%;
  margin-bottom: 10px;
}
.our-2 {
  width: 100%;
  height: 161.76px;
  border-radius: 8px;
  background-color: white;
  border-color: #333;
  opacity: 1;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
  margin-bottom: 9px;
}
.fnt-ofr {
  font-size: 12px;
}
.cap-1 {
  width: 100%;
}
.content-career {
  margin-top: 77px;
}
.slogn{
  width: 80%;

}
.slogn-pos {
  text-align: center;
  margin-top: 20px;
  margin-left: 15%;
}
.rond-pad{
  padding-top: 30px;
}
}

.carousel-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: 300%; /* Adjust the width for the number of slides */
  height: 100%;
  animation: slide 12s infinite; /* Infinite animation for sliding */
}

.carousel-item {
  flex-shrink: 0;
  width: 100%; /* Each slide takes the full width of the container */
  height: 100%;
}

.carousel-item img {
  width: 100%; /* Stretch to full width */
  height: 100%; /* Stretch to full height */
  object-fit: cover; 
}

/* Define keyframes for sliding animation */
@keyframes slide {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}

/* Optional Navigation Dots */
.carousel-navigation {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.carousel-navigation label {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  display: inline-block;
}


.carousel-navigation label:hover {
  background: rgba(255, 255, 255, 0.8);
}


.banner {
  text-align: center;
  padding: 50px;
}

.banner h1 {
  font-size: 60px;
  font-weight: 600;
  margin: 0 auto 20px; /* Auto for horizontal centering */
  line-height: 70px;
  width: 70%;
  background: linear-gradient(90deg, #5A2D88 0%, #EB4568 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.banner p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}
/* Main nav link styling */
/* Main nav link */
.nav-link {
  padding: 10px 20px;
  text-decoration: none;
  color: black;
  cursor: pointer;
}

/* Arrow indicator */
.arrow {
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg); /* Default down arrow */
  transition: transform 0.3s ease;
}

/* Hover effect for arrow */
.group:hover .arrow {
  transform: rotate(-135deg); /* Up arrow on hover */
}

/* Submenu styling */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
  padding: 8px 0;
}

/* Submenu items */
.submenu-item {
  padding: 8px 16px;
  text-decoration: none;
  color: black;
  white-space: nowrap;
}

.submenu-item:hover {
  background-color: #f0f0f0;
}

/* Show submenu on hover */
.group:hover .submenu {
  display: flex;
}
.contact-info {
  /* max-width: 800px; */
  margin: 0 auto;
}
.map-container {
  position: relative;
  padding-bottom: 37.5%; /* Aspect ratio: 4:3 */
  height: 458px;
  overflow: hidden;
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.container-sol{
  display: flex;
  padding-left: 9%;
  padding-right: 9%;
  padding-bottom: 8%;
  gap: 36px;
  
}

/* Sidebar styling */
/* Sidebar styling */
.sidebar {
  display: flex;
  flex-direction: column;
  margin-top: 57px;
}

.option {
  padding: 20px;
  text-decoration: none;
  color: black;
  border-top: 1px solid #0c0b0b;
  text-align: left;
  cursor: pointer;
  width: 500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
}

/* Hover effect */
.option:hover {
  color: #6A1B9A;
}

/* Show content based on the selected radio button */
#tab1:checked ~ .tab-content #content1,
#tab2:checked ~ .tab-content #content2,
#tab3:checked ~ .tab-content #content3,
#tab4:checked ~ .tab-content #content4 {
  display: flex;
}

/* Default label styling */
#tab1:checked ~ .sidebar label[for="tab1"],
#tab2:checked ~ .sidebar label[for="tab2"],
#tab3:checked ~ .sidebar label[for="tab3"],
#tab4:checked ~ .sidebar label[for="tab4"] {
  color: #6A1B9A; /* Active tab background color */
}

/* Hover effect for active tab */
#tab1:checked ~ .sidebar label[for="tab1"]:hover,
#tab2:checked ~ .sidebar label[for="tab2"]:hover,
#tab3:checked ~ .sidebar label[for="tab3"]:hover,
#tab4:checked ~ .sidebar label[for="tab4"]:hover {
  color: #6A1B9A; /* Darker blue on hover */
}

/* Hide all tab content initially */
.tab-content .content {
  display: none; /* Hide all content by default */
}

/* Make sure content is displayed only when selected */
#tab1:checked ~ .tab-content #content1,
#tab2:checked ~ .tab-content #content2,
#tab3:checked ~ .tab-content #content3,
#tab4:checked ~ .tab-content #content4 {
  display: flex;
}

/* Image and description styling */
.content img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}

.content div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content h2 {
  font-size: 1.5rem;
  margin: 0;
}

.content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  width: 280px;
  font-weight: 600;
    margin-top: 63px;
    margin-left: 30px;
}
.container-sol-renamed{
  display: none;
}


@media (max-width: 1268px) {

  #tab1:checked ~ .tab-content #content1,
  #tab2:checked ~ .tab-content #content2,
  #tab3:checked ~ .tab-content #content3,
  #tab4:checked ~ .tab-content #content4 {
    display: block; /* Use block display for better stacking */
  }
}
@media (max-width: 900px) {

  .container-sol {
    display: none;
  }

  .container-sol-renamed {
    display: flex;
    padding: 9% 9% 8%;
    gap: 36px;
  }

  .sidebar-renamed {
    display: flex;
    flex-direction: column;
    margin-top: 57px;
  }

  .option-renamed {
    padding: 10px;
    color: black;
    border-top: 1px solid #0c0b0b;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    position: relative;
  }

  .option-renamed:hover {
    color: #6A1B9A;
  }

  .arrow-icon-renamed {
    display: flex;
    align-items: center;
    margin-top: 5px;
  }

  /* Content styling */
  .content-renamed {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }

  .content-renamed img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
  }

  .content-renamed p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
  }

  /* Show content and change arrow icon when radio is selected */
  #tab-renamed1:checked ~ .sidebar-renamed label[for="tab-renamed1"] .content-renamed,
  #tab-renamed2:checked ~ .sidebar-renamed label[for="tab-renamed2"] .content-renamed,
  #tab-renamed3:checked ~ .sidebar-renamed label[for="tab-renamed3"] .content-renamed,
  #tab-renamed4:checked ~ .sidebar-renamed label[for="tab-renamed4"] .content-renamed {
    display: flex;
  }

  #tab-renamed1:checked ~ .sidebar-renamed label[for="tab-renamed1"] .arrow-icon-renamed i,
  #tab-renamed2:checked ~ .sidebar-renamed label[for="tab-renamed2"] .arrow-icon-renamed i,
  #tab-renamed3:checked ~ .sidebar-renamed label[for="tab-renamed3"] .arrow-icon-renamed i,
  #tab-renamed4:checked ~ .sidebar-renamed label[for="tab-renamed4"] .arrow-icon-renamed i {
    transform: rotate(180deg);
  }

  .arrow-icon-renamed i {
    transition: transform 0.3s ease;
  }

 
  }





  




