/*aside*/

.sidebar-barger{
  position: absolute;
  margin-top: 0%;
   height:30%;
   display: flex;
   flex-grow: 1;
   flex-shrink: 1;
   width:20%;
   opacity: 0.3;
   background-image: url('./icons/right-arrow.svg');
   background-size:contain;
   background-repeat: no-repeat;
   
 }
 .sidebar{
   display: flex;
   flex-direction: row;
   margin-top: 0%;
   width:18%;
   margin-left: 0%;
   height: 100%;
   background-color:#002f49;
   z-index:3;
   border-radius: 15px;
   
 
 }
 .sidebar-body{
   width: 100%;
   height: 100%;
   margin-top: 20%;
   margin-bottom: 20%;
   margin-left: 0%;
 }
 .sidebar-items{
   display: flex;
   width:100%;
   height:100%;
   flex-direction: column !important;
   padding-left: 0%;
   align-items: flex-start;
  
   margin-left: 0%;
 }
 .sidebar-items li {
  margin-top: 10px;
  display: block;
  margin: 5%;
  height: 50px; /* Adjust height as needed */
  width: calc(100% - 20px); /* Ensure consistent width */
  box-sizing: border-box;
  color:#fff;
}

 .sidebar-icon-api{
   background-image: url("./icons/api.png");
   background-size: contain;
   background-repeat: no-repeat;
   display: inline-block;
   width:24px;
   height:24px;
 }
 .sidebar-icon-mobile{
   background-image: url("./icons/mobile.png");
   background-size: contain;
   background-repeat: no-repeat;
   display: inline-block;
   width:24px;
   height:24px;
 }
 .sidebar-icon-webui{
   background-image: url("./icons/web_ui.png");
   background-size: contain;
   background-repeat: no-repeat;
   display: inline-block;
   width:24px;
   height:24px;
 }
 .sidebar-icon-performance{
   background-image: url("./icons/performance.svg");
   background-size: contain;
   background-repeat: no-repeat;
   display: inline-block;
   width:24px;
   height:24px;
 }
 .sidebar-icon-security{
   background-image: url("./icons/security.png");
   background-size: contain;
   background-repeat: no-repeat;
   display: inline-block;
   width:24px;
   height:24px;
 }
 .sidebar-icon-database{
   background-image: url("./icons/database.png");
   background-size: contain;
   background-repeat: no-repeat;
   display: inline-block;
   width:24px;
   height:24px;
 }
 .sidebar-icon-unifiedlayer{
   background-image: url("./icons/unified-layer.png");
   background-size: contain;
   background-repeat: no-repeat;
   display: inline-block;
   width:24px;
   height:24px;
 }
 .sidebar-items li hr{
  color:rgba(white, white,white,0);
  opacity: 0.1;
 }
 .sidebar-items li div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  opacity: 10;
}
.sidebar-items li div span {
  color: #fff;
  border: none !important;
}
 

 .aside-sidebar-body{
   width: 100%;
   height: 100%;
   margin-top: 5%;
   margin-bottom: 30%;
   margin-left: 8%;
 }
 .aside-sidebar-items{
   display: flex;
   width:100%;
   height:100%;
   flex-direction: column !important;
   align-items: center;
   white-space: nowrap;
   margin-left: 0%;
   margin-bottom: 2%;
   background-color: transparent;
 }
 .aside-sidebar-items li{
   margin-top: 10px;
   width:100%;
 
   display: inline-block;
   margin: 10%;
   margin-left: 0%;
   cursor: pointer;
   height:20px;
 }
 .aside-sidebar-icon-api {
   background-image: url("./icons/api.svg");
   background-size: contain;
   background-repeat: no-repeat;
   display: inline-block;
   width: 24px;
   height: 24px;
 }
 .aside-sidebar-items li:hover .aside-sidebar-icon-api{
  background-image: url('./icons/api-white.svg');
 }
 .aside-sidebar-icon-mobile {
   background-image: url("./icons/mobile-2.png");
   background-size: contain;
   background-repeat: no-repeat;
   display: inline-block;
   width: 24px;
   height: 24px;
 }
 .aside-sidebar-items li:hover .aside-sidebar-icon-mobile{
  background-image: url('./icons/mobile-2-white.png');
 }
 .aside-sidebar-icon-webui {
   background-image: url("./icons/web-ui.svg");
   background-size: contain;
   background-repeat: no-repeat;
   display: inline-block;
   width: 24px;
   height: 24px;
 }
 .aside-sidebar-items li:hover .aside-sidebar-icon-webui{
  background-image: url('./icons/web-ui-white.svg');
 }
 .aside-sidebar-icon-performance {
   background-image: url("./icons/performance.svg");
   background-size: contain;
   background-repeat: no-repeat;
   display: inline-block;
   width: 24px;
   height: 24px;
 }
 .aside-sidebar-icon-security {
   background-image: url("./icons/security.png");
   background-size: contain;
   background-repeat: no-repeat;
   display: inline-block;
   width: 24px;
   height: 24px;
 }
 .aside-sidebar-icon-database {
   background-image: url("./icons/database.png");
   background-size: contain;
   background-repeat: no-repeat;
   display: inline-block;
   width: 24px;
   height: 24px;
 }
 .aside-sidebar-icon-unifiedlayer {
   background-image: url("./icons/unified-layer.png");
   background-size: contain;
   background-repeat: no-repeat;
   display: inline-block;
   width: 24px;
   height: 24px;
 }
 .aside-sidebar-items li div {
   color: #fff;
   padding-left:0px;
   font-weight: 600;
   font-size: 1rem;
   margin-left: 5px;
 }
 .aside-sidebar-items li div div span {
   margin-left: 40px;
   padding-top:0px ;
 }
 /*overide*/
 /* Ensure both sidebars have the same height */
 .sidebar-body  {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   height: 100%;
  
 }
 .aside-sidebar{
  display:none;
   height: 100%;
   border-radius: 15px;
 }

 /* Adjust .aside-sidebar-items to stretch and fill the height */
 .aside-sidebar-items {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   height: 100%;
   padding-left: 0;
   align-items: flex-start;
   
   margin-left: 0;
 }
 
 /* Ensure the content in .aside-sidebar-items occupies the space evenly */
 .aside-sidebar-items li {
   display: flex;
   align-items: center;
   margin-top: 10px;
   width: 100%;
   padding: 10px 2%;
   height: auto;
 }
 
 .aside-sidebar-icon-api,
 .aside-sidebar-icon-mobile,
 .aside-sidebar-icon-webui,
 .aside-sidebar-icon-performance,
 .aside-sidebar-icon-security,
 .aside-sidebar-icon-database,
 .aside-sidebar-icon-unifiedlayer {
   background-size: contain;
   background-repeat: no-repeat;
   display: inline-block;
   width: 24px;
   height: 24px;
 }
 
 .aside-sidebar-items li a {
   color: #fff;
   padding: 2px;
   font-weight: 600;
   font-size: 1rem;
   margin-left: 0;
   display: flex;
   align-items: center;
 }
 
 .aside-sidebar-items li a span {
   margin-left: 10px;
 }
 
 /* Add some general styling for .aside-sidebar to make sure it looks consistent */
 .aside-sidebar {
   margin-top: 5%;
   width:14%;
   height: 100%;
   margin-left:10% ;
   background-color: #002f49;
   padding: 20px;
   padding-left:0px;
   box-sizing: border-box;
   
 }
 .asidebar-active{
   display:flex;
   position: absolute;
   margin-left:18.1%;
   margin-top:10%;
   flex-direction: column;
   justify-content: space-between;
 }
 /*case-section*/
 .case-section{
  display: flex;
  flex-direction: row;
 }
 /*card*/
 .card-container {
  display: flex;
  width: 60%;
  height: 750px;
  margin-top:0px;
  margin-left: 15%;
  border: 2px solid transparent;
  border-radius: 0px;
}

.card {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
}

.card-body-bf-api {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.center-box {
  display: flex;
  justify-content: space-between; /* Space between the elements */
  align-items: center;
  flex-flow: row wrap;
  border-radius: 25px;
  width: 100%;
  height: 30%;
  background-color: #002f49;
  padding: 10px; /* Add padding to ensure spacing */
}

.box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1; /* Allow to grow and shrink as needed */
  height: 100%;
}

.box-content {
  font-weight: 600;
  font-size: 40px;
  color: darkorange;
  text-align: center; /* Center the text */
}

.center-box img {
display:none;
  width: 25%;
  height: auto; /* Adjust the height automatically */
}
 /*scroll*/
.scrollable {
  display: flex;
  width: 100%;
  height: 750px; /* Set a fixed height to enable scrolling */
  margin: 4px;
  overflow: auto; /* Enable scrolling */
}

.scrollable-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto; /* Adjust height based on content */
  margin: 10px;
}
.scrollable-inner div h2{
display: flex;
margin-left: 0 ;
flex:1 0 0;
padding: 4px;
width: 100%;
height:fit-content;
flex-flow: row wrap;
}
.scrollable-inner div h3 {
  display: inline;
  color: #002f49;
  font-size: xx-large;
  margin: 10px;
  display: none;
}

.scrollable-inner div h2 {
  margin: 10px;/*delete this if h3 margin add*/
  padding: 0 25px;
  display: inline;
  background-color: var(--dark-orange);
  font-weight: 700;
  color: white;
  font-size: 20px;
  letter-spacing: .35rem;
  border: 2px solid var(--dark-orange);
  border-radius: 100px;
}

.scrollable-inner p {
  text-align: justify;
  font-size: 15px;
  /*font-weight: 400;*/
  margin-left: 20px;
  word-spacing: .15rem;
  word-wrap: break-word;
 
}

.scrollable-inner hr {
  margin: 0;
  margin-bottom: 15px;
  color: #002f49;
}
/* Customize WebKit scrollbars */
.scrollable::-webkit-scrollbar {
  width: 10px; /* Width of the scrollbar */
  height:0px;
}

.scrollable::-webkit-scrollbar-track {
  background: wheat; /* Background of the scrollbar track */
}

.scrollable::-webkit-scrollbar-thumb {
  background: #002f49; /* Color of the scrollbar thumb */
  border-radius: 6px; /* Rounded corners */
}

.scrollable::-webkit-scrollbar-thumb:hover {
  background:var(--dark-orange); /* Color of the scrollbar thumb on hover */
}
/*.line-para{
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
}*/
.line-para ul {
  list-style-type: circle;
  margin-left:10px;
}
.line-para ul li{
  list-style-type: square;
  margin-left: 10px;
  
}
.line-para ul li p{
  margin-left:0px;
}
/* Specific classes for each type */
.card-body-bf-api,
.card-body-bf-mobile,
.card-body-bf-webui,
.card-body-bf-performance,
.card-body-bf-security,
.card-body-bf-database,
.card-body-bf-unifiedlayer,
.card-body-edu-api,
.card-body-edu-mobile,
.card-body-edu-webui,
.card-body-edu-performance,
.card-body-edu-security,
.card-body-edu-database,
.card-body-edu-unifiedlayer,
.card-body-fin-api,
.card-body-fin-mobile,
.card-body-fin-webui,
.card-body-fin-performance,
.card-body-fin-security,
.card-body-fin-database,
.card-body-fin-unifiedlayer,
.card-body-bc-api,
.card-body-bc-mobile,
.card-body-bc-webui,
.card-body-bc-performance,
.card-body-bc-security,
.card-body-bc-database,
.card-body-bc-unifiedlayer,
.card-body-gov-api,
.card-body-gov-mobile,
.card-body-gov-webui,
.card-body-gov-performance,
.card-body-gov-security,
.card-body-gov-database,
.card-body-gov-unifiedlayer,
.card-body-hc-api,
.card-body-hc-mobile,
.card-body-hc-webui,
.card-body-hc-performance,
.card-body-hc-security,
.card-body-hc-database,
.card-body-hc-unifiedlayer,
.card-body-log-api,
.card-body-log-mobile,
.card-body-log-webui,
.card-body-log-performance,
.card-body-log-security,
.card-body-log-database,
.card-body-log-unifiedlayer,
.card-body-tel-api,
.card-body-tel-mobile,
.card-body-tel-webui,
.card-body-tel-performance,
.card-body-tel-security,
.card-body-tel-database,
.card-body-tel-unifiedlayer,
.card-body-ret-api,
.card-body-ret-mobile,
.card-body-ret-webui,
.card-body-ret-performance,
.card-body-ret-security,
.card-body-ret-database,
.card-body-ret-unifiedlayer,
.card-body-ret-api,
.card-body-th-api,
.card-body-th-mobile,
.card-body-th-webui,
.card-body-th-performance,
.card-body-th-security,
.card-body-th-database,
.card-body-th-unifiedlayer {
  display: none;
}

.card-body-bf-api,
.card-body-bf-mobile,
.card-body-bf-webui,
.card-body-bf-performance,
.card-body-bf-security,
.card-body-bf-database,
.card-body-bf-unifiedlayer,
.card-body-edu-api,
.card-body-edu-mobile,
.card-body-edu-webui,
.card-body-edu-performance,
.card-body-edu-security,
.card-body-edu-database,
.card-body-edu-unifiedlayer,
.card-body-fin-api,
.card-body-fin-mobile,
.card-body-fin-webui,
.card-body-fin-performance,
.card-body-fin-security,
.card-body-fin-database,
.card-body-fin-unifiedlayer,
.card-body-bc-api,
.card-body-bc-mobile,
.card-body-bc-webui,
.card-body-bc-performance,
.card-body-bc-security,
.card-body-bc-database,
.card-body-bc-unifiedlayer,
.card-body-gov-api,
.card-body-gov-mobile,
.card-body-gov-webui,
.card-body-gov-performance,
.card-body-gov-security,
.card-body-gov-database,
.card-body-gov-unifiedlayer,
.card-body-hc-api,
.card-body-hc-mobile,
.card-body-hc-webui,
.card-body-hc-performance,
.card-body-hc-security,
.card-body-hc-database,
.card-body-hc-unifiedlayer,
.card-body-log-api,
.card-body-log-mobile,
.card-body-log-webui,
.card-body-log-performance,
.card-body-log-security,
.card-body-log-database,
.card-body-log-unifiedlayer,
.card-body-tel-api,
.card-body-tel-mobile,
.card-body-tel-webui,
.card-body-tel-performance,
.card-body-tel-security,
.card-body-tel-database,
.card-body-tel-unifiedlayer,
.card-body-ret-api,
.card-body-ret-mobile,
.card-body-ret-webui,
.card-body-ret-performance,
.card-body-ret-security,
.card-body-ret-database,
.card-body-ret-unifiedlayer,
.card-body-th-api,
.card-body-th-mobile,
.card-body-th-webui,
.card-body-th-performance,
.card-body-th-security,
.card-body-th-database,
.card-body-th-unifiedlayer  {
flex-direction: column;
width: 100%;
height: 90%;
margin-top:0;
}
.card-show{
  display:flex !important;
  animation: focusIn 0.5s ease-in-out forwards;
}
.line-para ul {
animation:  focusIn 1s linear normal;
}
@keyframes focusIn {
0% {
    opacity: 0;
    transform: scale(0.9);
}
100% {
    opacity: 1;
    transform: scale(1);
}
}
.container-line-para{
display:flex;
flex-direction: row;
justify-content: space-evenly;
align-content: center;
}
.line-para{
display: flex;
flex-direction: row;
float: left;
flex: 1;
width: 100%;
}
.icon-left{

width: 150px;
height:150px;
margin-left: 1.5rem;
margin-right: 0.5rem;
margin-top: 0rem;

}
.icon-right{
width:150px;
height:150px;
margin-left: 2rem;
margin-top: 2.5rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.icon-client{
background-image: url("./icons/client-gpt-transformed.webp");
background-size: cover;
width:100%;
height:100%;
}
.icon-pain{
background-image: url("./icons/Resize_pain-painter-transformed2.png");
background-size: contain;
background-repeat: no-repeat;
margin-top: 50%;
width:100%;
height:100%;
}
.icon-solution{
background-image: url('./icons/solution.png');
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height:100%;
margin-top: 8em;
}
.icon-keybenifits{
background-image: url('./icons/keybenifits.webp');
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height:100%;
margin-top: 8em;
}
.icon-keyoutcomes{
background-image: url("./icons/market-research_16136626.png");
background-size: contain;
background-repeat: no-repeat;
margin-top: 50%;
width:100%;
height:100%;
}
.icon-techstack{
  background-image: url("./icons/techstack1.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 50%;
  width:100%;
  height:100%;
}
.icon-teamsize{
background-image: url('./icons/teamsize.png');
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height:100%;
}
.icon-duration{
background-image: url("./icons/hourglass.png");
background-size: contain;
background-repeat: no-repeat;
margin-top: 0%;
width:100%;
height:80%;
}
.minimize-container{
display: flex;
width: 100%;
/*height: 25px ;*/
justify-content: flex-end;
}
.minimize{
background-image: url("./icons/maximize.png");
background-size: contain;
background-repeat: no-repeat;
margin-right: 15px;
margin-top: 5px;
width: 25px;

}
.card-max{
position:absolute;
width: 80%;
height: 60%;
top:50%;
left:50%;
animation: scale-in 0.5s ease-in-out forwards;
z-index:3;
filter: none !important;

}


@keyframes scale-in {
0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
}
100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
}
.card-max-removing {
animation: scale-out 0.5s ease-in-out forwards;
opacity: 0; /* Ensure it becomes hidden */
}
@keyframes scale-out {
0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}
50%{
  transform: translate(-50%,-50%);
  opacity: 0.5;
}
100% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
}
}

.active-item {

background-color: rgba(225,225,225,0.16);
border: 2px solid darkorange;
border-radius: 15px;
/*color:var(--dark-orange) !important;*/
font-weight: bold; /* Optional, to emphasize the selected item */
}
.mobile-tab-container{
 display: none;

}

 /* side bar fixing  */
.aside-sidebar {
  transition: transform 0.3s ease;
}

.asidebar-active:hover {
  transform: translateX(3);
 
}

/* animation of active state */
.active-item:hover {
  background-color:darkorange;
  transition: background-color 0.3s ease;
}



.aside-sidebar-items li:hover{
  background-color:darkorange;
  transition: background-color 0.3s ease;
  border: 2px solid darkorange;
  border-radius: 15px;
  color: var(--dark-orange) !important;
  font-weight: bold;
  transform: translateX(3);
}
 /* side bar fixing end */

/* Style for the burger menu button */
 .burger-menu {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 30px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 999;
      position: absolute;
      top: 300px;
      left: 20px;
      -webkit-animation: vibrate-1 0.3s linear infinite both;
	        animation: vibrate-1 0.3s linear infinite both;
    }

/* Responsive styles */

/* Media Queries */

/* Large Desktops and Laptops (15.4 inches and larger) */
@media (min-width: 1200px) {
  .scrollable p {
    margin-left: 20px;
    word-spacing: 0.15rem;
  }

  .line-para ul li p {
    padding: 0 10px; /* Adjust padding as needed */
  }
}

/* Medium Laptops (14 inches) */
@media (max-width: 1199px) {
  .sidebar {
    width: 20%;
  }
  .aside-sidebar {
    width: 20%;
  }
  .card-container {
    width: 70%;
    margin-left: 20%;
  }
  .scrollable p {
    margin-left: 15px;
    word-spacing: 0.1rem;
  }

  .line-para ul li p {
    padding: 0 8px; /* Adjust padding for medium laptops */
  }
}

/* Small Laptops (11 inches) */
@media (max-width: 1000px) {
  .burger-menu {
    display: block;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 999;
    position: absolute;
    top: 390px;
    left: 10px;
  } 
      
  .sidebar {
    width: 0;
    height: auto;
    overflow: hidden;
    transition: width 0.3s ease;
}
  .sidebar.active {
      width: 40%; /* Adjust width as needed */
      height: 100%;
  }

  .aside-sidebar {
    width: 25vw;
    margin-left: 29%;
    height: auto;
  }
    
  
  .card-container {
    width: 100%;
    margin-left: 0;
  }
  .card {
    height: auto; /* Allow cards to expand in height */
  }
  .center-box {
    height: auto;
    padding: 20px;
  }
  .center-box img {
    width: 20%;
  }
  .box-content {
    font-size: 1.5rem;
  }
  .minimize {
    margin-right: 10px;
  }
  .card-max {
    width: 90%;
    height: auto;
  }
  .scrollable p {
    margin-left: 15px;
    word-spacing: 0.1rem;
  }


}

/* Tablets */

@media (max-width: 900px ) {

  .burger-menu {
    display: block;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 999;
    position: absolute;
    top: 380px;             /* need modification */
    left: 20px;
  }

  .sidebar {
    width: 0;
    height: auto;

    overflow: hidden;
    transition: width 0.3s ease;
  }
 
   


.sidebar.active {
    width: 42%; /* Adjust width as needed */
    height: 100%;
}

.aside-sidebar {
  width: 25%;
  margin-left: 31%;
 
}
  .card-container {
    width: 90%;
    margin-left: 5%;
    height: auto;
  }
  .card-body-bf-api,
  .card-body-bf-mobile,
  .card-body-bf-webui,
  .card-body-bf-performance,
  .card-body-bf-security,
  .card-body-bf-database,
  .card-body-bf-unifiedlayer {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  .center-box {
    flex-direction: column;
    padding: 15px;
  }
  .center-box img {
    width: 25%;
  }
  .box-content {
    font-size: 1.25rem;
  }
  .minimize {
    margin-right: 5px;
  }
  .card-max {
    width: 95%;
    height: auto;
  }
  .scrollable p {
    margin-left: 10px;
    word-spacing: 0.1rem;
  }
  .line-para ul li p {
    padding: 0 1px; /* Adjust padding for tablets */
  }
}

@media (max-width: 800px ) {

  .burger-menu {
    display: block;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 999;
    position: absolute;
    top: 370px;             /* need modification */
    left: 20px;
  }

  .sidebar {
    width: 0;
    height: auto;

    overflow: hidden;
    transition: width 0.3s ease;
  }
 
   


.sidebar.active {
    width: 43%; /* Adjust width as needed */
    height: 100%;
}

.aside-sidebar {
  width: 25%;
  margin-left: 31%;
 
}
  .card-container {
    width: 90%;
    margin-left: 5%;
    height: auto;
  }
  .card-body-bf-api,
  .card-body-bf-mobile,
  .card-body-bf-webui,
  .card-body-bf-performance,
  .card-body-bf-security,
  .card-body-bf-database,
  .card-body-bf-unifiedlayer {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  .center-box {
    flex-direction: column;
    padding: 15px;
  }
  .center-box img {
    width: 25%;
  }
  .box-content {
    font-size: 1.25rem;
  }
  .minimize {
    margin-right: 5px;
  }
  .card-max {
    width: 95%;
    height: auto;
  }
  .scrollable p {
    margin-left: 10px;
    word-spacing: 0.1rem;
  }
  .line-para ul li p {
    padding: 0 1px; /* Adjust padding for tablets */
  }
}




@media (max-width: 767px ) {

  .burger-menu {
    display: block;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 999;
    position: absolute;
    top: 300px;             /* need modification */
    left: 10px;
  }

  .sidebar {
    width: 0;
    height: auto;

    overflow: hidden;
    transition: width 0.3s ease;
  }
 
   


.sidebar.active {
    width: 250px; /* Adjust width as needed */
    height: 100%;
}

.aside-sidebar {
  width: 23%;
  margin-left: 30%;
  height: auto;
}
  .card-container {
    width: 90%;
    margin-left: 5%;
    height: auto;
  }
  .card-body-bf-api,
  .card-body-bf-mobile,
  .card-body-bf-webui,
  .card-body-bf-performance,
  .card-body-bf-security,
  .card-body-bf-database,
  .card-body-bf-unifiedlayer {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  .center-box {
    flex-direction: column;
    padding: 15px;
  }
  .center-box img {
    width: 25%;
  }
  .box-content {
    font-size: 1.25rem;
  }
  .minimize {
    margin-right: 5px;
  }
  .card-max {
    width: 95%;
    height: auto;
  }
  .scrollable p {
    margin-left: 10px;
    word-spacing: 0.1rem;
  }
  .line-para ul li p {
    padding: 0 1px; /* Adjust padding for tablets */
  }
}

@media (max-width: 610px) {
  .burger-menu {
   display: block;
   flex-direction: column;
   justify-content: space-around;
   width: 30px;
   height: 30px;
   background: transparent;
   border: none;
   cursor: pointer;
   z-index: 999;
   position: absolute;
   top: 320px;
   left: 10px;
 } 
 .container-line-para{
  
   flex-direction: column-reverse;
   align-content: center;
   justify-content: center;
   align-items: center;
   }
 
 .sidebar {
   width: 0;
   height: auto;
   overflow: hidden;
   transition: width 0.3s ease;
}
.sidebar.active {
 width: 50vw; /* Adjust width as needed */
 height: 100%;
}

 .aside-sidebar {
   width: 30%;
   margin-left: 34%;
   height: auto;
 }
 .card-container {
   width: 100%;
   margin-left: 0;
 }
 .center-box {
   flex-direction: column;
   padding: 10px;
 }
 .center-box img {
   width: 50%;
 }
 .box-content {
   font-size: 1rem;
 }
 .minimize {
   margin-right: 0;
 }
 .card-max {
   width: 100%;
   height: auto;
 }
 .scrollable p {
   margin-left: 5px;
   word-spacing: 0.05rem;
 }
 .line-para ul li p {
   padding: 0 0; /* Remove padding for mobile phones */
 }
 

 .icon-client{
   background-image: url("./icons/client-gpt-transformed.webp");
   background-size: local;
   width:100%;
   height:100%;
   }
   #icon-pain{
   background-image: url("./icons/Resize_pain-painter-transformed2.png");
   background-size: contain;
   background-repeat: no-repeat;
 
   width:100%;
   height:100%;
   }
   .icon-pain{
     display: none;
     height: 0px;
     width: 0px;
     margin: 0;
   }
   .icon-solution{
   background-image: url('./icons/solution.png');
   background-size: local;
   background-repeat: no-repeat;
   margin-top: 5%;
   
   }
   .icon-keybenifits{
     background-image: url("./icons/keybenifits.webp");
     background-size: contain;
     background-repeat: no-repeat;
     margin-top: 9%;
     width:100%;
     height:100%;
   }
   
   #icon-keyoutcomes{
   background-image: url("./icons/market-research_16136626.png");
   background-size: contain;
   background-repeat: no-repeat;
  
   width:100%;
   height:100%;
   }
   .icon-keyoutcomes{
     display: none;
     height: 0;
     }
   .icon-techstack{
     display: none;
     height: 0;
     width: 0;
   }
   #icon-techstack{
     background-image: url('./icons/techstack1.png');
     background-size: contain;
     background-repeat: no-repeat;
     width: 100%;
     height:100%;
   }
   .icon-teamsize{
   background-image: url('./icons/teamsize.png');
   background-size: cover;
   background-repeat: no-repeat;
   width: 100%;
   height:100%;
   }
   #icon-duration{
     background-image: url('./icons/hourglass.png');
     background-size: cover;
     background-repeat: no-repeat;
     width: 100%;
     height:100%;
   }
   .icon-duration{
     display: none;
     margin-top: 0;
     margin-bottom: 0;
   }
   #icon-left{
   
   width: 140px;
   height:150px;
   margin-top: 10%;   
   }
   .icon-right {
     width: 0;
     height: 0;
    
 }
}


@media (max-width: 480px) {
  .burger-menu {
   display: block;
   flex-direction: column;
   justify-content: space-around;
   width: 30px;
   height: 30px;
   background: transparent;
   border: none;
   cursor: pointer;
   z-index: 999;
   position: absolute;
   top: 320px;
   left: 10px;
 } 
 .container-line-para{
  
   flex-direction: column-reverse;
   align-content: center;
   justify-content: center;
   align-items: center;
   }
 
 .sidebar {
   width: 0;
   height: auto;
   overflow: hidden;
   transition: width 0.3s ease;
}
.sidebar.active {
 width: 50vw; /* Adjust width as needed */
 height: 100%;
}

 .aside-sidebar {
   width: 32%;
   margin-left: 34%;
   height: auto;
 }
 .card-container {
   width: 100%;
   margin-left: 0;
 }
 .center-box {
   flex-direction: column;
   padding: 10px;
 }
 .center-box img {
   width: 50%;
 }
 .box-content {
   font-size: 1rem;
 }
 .minimize {
   margin-right: 0;
 }
 .card-max {
   width: 100%;
   height: auto;
 }
 .scrollable p {
   margin-left: 5px;
   word-spacing: 0.05rem;
 }
 .line-para ul li p {
   padding: 0 0; /* Remove padding for mobile phones */
 }
 

 .icon-client{
   background-image: url("./icons/client-gpt-transformed.webp");
   background-size: local;
   width:100%;
   height:100%;
   }
   #icon-pain{
   background-image: url("./icons/Resize_pain-painter-transformed2.png");
   background-size: contain;
   background-repeat: no-repeat;
 
   width:100%;
   height:100%;
   }
   .icon-pain{
     display: none;
     height: 0px;
     width: 0px;
     margin: 0;
   }
   .icon-solution{
   background-image: url('./icons/solution.png');
   background-size: local;
   background-repeat: no-repeat;
   margin-top: 5%;
   
   }
   .icon-keybenifits{
     background-image: url("./icons/keybenifits.webp");
     background-size: contain;
     background-repeat: no-repeat;
     margin-top: 9%;
     width:100%;
     height:100%;
   }
   
   #icon-keyoutcomes{
   background-image: url("./icons/market-research_16136626.png");
   background-size: contain;
   background-repeat: no-repeat;
  
   width:100%;
   height:100%;
   }
   .icon-keyoutcomes{
     display: none;
     height: 0;
     }
   .icon-techstack{
     display: none;
     height: 0;
     width: 0;
   }
   #icon-techstack{
     background-image: url('./icons/techstack1.png');
     background-size: contain;
     background-repeat: no-repeat;
     width: 100%;
     height:100%;
   }
   .icon-teamsize{
   background-image: url('./icons/teamsize.png');
   background-size: cover;
   background-repeat: no-repeat;
   width: 100%;
   height:100%;
   }
   #icon-duration{
     background-image: url('./icons/hourglass.png');
     background-size: cover;
     background-repeat: no-repeat;
     width: 100%;
     height:100%;
   }
   .icon-duration{
     display: none;
     margin-top: 0;
     margin-bottom: 0;
   }
   #icon-left{
   
   width: 140px;
   height:150px;
   margin-top: 10%;   
   }
   .icon-right {
     width: 0;
     height: 0;
    
 }
}



/* Mobile Phones */
@media (max-width: 429px) {
   .burger-menu {
    display: block;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 999;
    position: absolute;
    top: 320px;
    left: 10px;
  } 
  .container-line-para{
   
    flex-direction: column-reverse;
    align-content: center;
    justify-content: center;
    align-items: center;
    }
  
  .sidebar {
    width: 0;
    height: auto;
    overflow: hidden;
    transition: width 0.3s ease;
}
.sidebar.active {
  width: 50vw; /* Adjust width as needed */
  height: 100%;
}

  .aside-sidebar {
    width: 36%;
    margin-left: 34%;
    height: auto;
  }
  .card-container {
    width: 100%;
    margin-left: 0;
  }
  .center-box {
    flex-direction: column;
    padding: 10px;
  }
  .center-box img {
    width: 50%;
  }
  .box-content {
    font-size: 1rem;
  }
  .minimize {
    margin-right: 0;
  }
  .card-max {
    width: 100%;
    height: auto;
  }
  .scrollable p {
    margin-left: 5px;
    word-spacing: 0.05rem;
  }
  .line-para ul li p {
    padding: 0 0; /* Remove padding for mobile phones */
  }
  

  .icon-client{
    background-image: url("./icons/client-gpt-transformed.webp");
    background-size: local;
    width:100%;
    height:100%;
    }
    #icon-pain{
    background-image: url("./icons/Resize_pain-painter-transformed2.png");
    background-size: contain;
    background-repeat: no-repeat;
  
    width:100%;
    height:100%;
    }
    .icon-pain{
      display: none;
      height: 0px;
      width: 0px;
      margin: 0;
    }
    .icon-solution{
    background-image: url('./icons/solution.png');
    background-size: local;
    background-repeat: no-repeat;
    margin-top: 5%;
    
    }
    .icon-keybenifits{
      background-image: url("./icons/keybenifits.webp");
      background-size: contain;
      background-repeat: no-repeat;
      margin-top: 9%;
      width:100%;
      height:100%;
    }
    
    #icon-keyoutcomes{
    background-image: url("./icons/market-research_16136626.png");
    background-size: contain;
    background-repeat: no-repeat;
   
    width:100%;
    height:100%;
    }
    .icon-keyoutcomes{
      display: none;
      height: 0;
      }
    .icon-techstack{
      display: none;
      height: 0;
      width: 0;
    }
    #icon-techstack{
      background-image: url('./icons/techstack1.png');
      background-size: contain;
      background-repeat: no-repeat;
      width: 100%;
      height:100%;
    }
    .icon-teamsize{
    background-image: url('./icons/teamsize.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height:100%;
    }
    #icon-duration{
      background-image: url('./icons/hourglass.png');
      background-size: cover;
      background-repeat: no-repeat;
      width: 100%;
      height:100%;
    }
    .icon-duration{
      display: none;
      margin-top: 0;
      margin-bottom: 0;
    }
    #icon-left{
    
    width: 140px;
    height:150px;
    margin-top: 10%;   
    }
    .icon-right {
      width: 0;
      height: 0;
     
  }
}


@media (max-width: 389px) {
  .burger-menu {
    display: block;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 999;
    position: absolute;
    top: 310px;
    left: 10px;
  } 
      
  .sidebar {
    width: 0;
    height: auto;
    overflow: hidden;
    transition: width 0.3s ease;
}
  .sidebar.active {
    width: 80vw; /* Adjust width as needed */
      height: 100%;
  }

  .aside-sidebar {
    width: 43vw;
    margin-left: 40vw;
    height: auto;
  }
    
  
  .card-container {
    width: 100%;
    margin-left: 0;
  }
  .card {
    height: auto; /* Allow cards to expand in height */
  }
  .center-box {
    height: auto;
    padding: 20px;
  }
  .center-box img {
    width: 0;
  }
  .box-content {
    font-size: 1.5rem;
  }
  .minimize {
    margin-right: 10px;
  }
  .card-max {
    width: 90%;
    height: auto;
  }
  .scrollable p {
    
    word-spacing: 0rem;
  }

  
.line-para{
  display: flex;
 
  float:none ;
  
 
  }
  .icon-left{
  
  width: 150px;
  height:150px;
  
  
  }
  .icon-right{
  width: 0;
  height:0;   
  }

  .icon-client{
  background-image: url("./icons/client-gpt-transformed.webp");
  background-size: local;
  width:100%;
  height:100%;
  }
  #icon-pain{
  background-image: url("./icons/Resize_pain-painter-transformed2.png");
  background-size: contain;
  background-repeat: no-repeat;

  width:100%;
  height:100%;
  }
  .icon-pain{
    display: none;
    height: 0px;
    width: 0px;
    margin: 0;
  }
  .icon-solution{
  background-image: url('./icons/solution.png');
  background-size: local;
  background-repeat: no-repeat;
  margin-top: 3%;
  height: 100%;
  width: 100%;
  
  }
  .icon-keybenifits{
    background-image: url("./icons/keybenifits.webp");
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 9%;
    height: 100%;
    width: 100%;
    
   
  }
  
  #icon-keyoutcomes{
  background-image: url("./icons/market-research_16136626.png");
  background-size: contain;
  background-repeat: no-repeat;
 
  width:100%;
  height:100%;
  }
  .icon-keyoutcomes{
    display: none;
    height: 0;
    }
  .icon-techstack{
    display: none;
    height: 0;
    width: 0;
  }
  #icon-techstack{
    background-image: url('./icons/techstack1.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 90%;
    height:100%;
  }
  .icon-teamsize{
  background-image: url('./icons/teamsize.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height:100%;
  }
  #icon-duration{
    background-image: url('./icons/hourglass.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height:100%;
  }
  .icon-duration{
    display: none;
    margin-top: 0;
    margin-bottom: 0;
  }
  #icon-left{
  
  width: 140px;
  height:150px;
  margin-top: 10%;
  
  
  }
}




@media (max-width: 361px) {
  .burger-menu {
    display: block;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 999;
    position: absolute;
    top: 310px;
    left: 10px;
  } 
      
  .sidebar {
    width: 0;
    height: auto;
    overflow: hidden;
    transition: width 0.3s ease;
}
  .sidebar.active {
    width: 80vw; /* Adjust width as needed */
      height: 100%;
  }

  .aside-sidebar {
    width: 45vw;
    margin-left: 37vw;
    height: auto;
  }
    
  
  .card-container {
    width: 100%;
    margin-left: 0;
  }
  .card {
    height: auto; /* Allow cards to expand in height */
  }
  .center-box {
    height: auto;
    padding: 20px;
  }
  .center-box img {
    width: 0;
  }
  .box-content {
    font-size: 1.5rem;
  }
  .minimize {
    margin-right: 10px;
  }
  .card-max {
    width: 90%;
    height: auto;
  }
  .scrollable p {
    
    word-spacing: 0rem;
  }

  
.line-para{
  display: flex;
 
  float:none ;
  
 
  }
  .icon-left{
  
  width: 150px;
  height:150px;
  
  
  }
  .icon-right{
  width: 0;
  height:0;
   
  
  
  
  }
  .icon-client{
  background-image: url("./icons/client-gpt-transformed.webp");
  background-size: local;
  width:100%;
  height:100%;
  }
  .icon-pain{
  background-image: url("./icons/Resize_pain-painter-transformed2.png");
  background-size: contain;
  background-repeat: no-repeat;

  width:100%;
  height:100%;
  }
  .icon-solution{
  background-image: url('./icons/solution.png');
  background-size: local;
  background-repeat: no-repeat;
  
  
  }
  .icon-keybenifits{
  background-image: url('./icons/keybenifits.webp');
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height:100%;
  }
  .icon-keyoutcomes{
  background-image: url("./icons/market-research_16136626.png");
  background-size: contain;
  background-repeat: no-repeat;
 
  width:100%;
  height:100%;
  }
  .icon-techstack{
    background-image: url("./icons/techstack1.png");
    background-size: contain;
    background-repeat: no-repeat;
   
    width:100%;
    height:100%;
  }
  .icon-teamsize{
  background-image: url('./icons/teamsize.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height:100%;
  }
  .icon-duration{
  background-image: url("./icons/hourglass.png");
  background-size: contain;
  background-repeat: no-repeat;
  
  width:100%;
  height:80%;
  }

}




@media (max-width: 321px) {
  .burger-menu {
    display: block;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 999;
    position: absolute;
    top: 310px;
    left: 10px;
  } 
      
  .sidebar {
    width: 0;
    height: auto;
    overflow: hidden;
    transition: width 0.3s ease;
}
  .sidebar.active {
    width: 100vw; /* Adjust width as needed */
      height: 100%;
  }

  .aside-sidebar {
    width: 42vw;
    margin-left: 50vw;
    height: auto;
  }
    
  
  .card-container {
    width: 100%;
    margin-left: 0;
  }
  .card {
    height: auto; /* Allow cards to expand in height */
    position:absolute
  }
  .center-box {
    height: auto;
    padding: 20px;
  }
  .center-box img {
    width: 0;
  }
  .box-content {
    font-size: 1.5rem;
  }
  .minimize {
    margin-right: 10px;
  }
  .card-max {
    width: 90%;
    height: auto;
  }
  .scrollable p {
    
    word-spacing: 0rem;
  }

  
.line-para{
  display: flex;
 
  float:none ;
  
 
  }
  .icon-left{
  
  width: 150px;
  height:150px;
  
  
  }
  .icon-right{
  width: 0;
  height:0;
   
  
  
  
  }
  .icon-client{
  background-image: url("./icons/client-gpt-transformed.webp");
  background-size: local;
  width:100%;
  height:100%;
  }
  .icon-pain{
  background-image: url("./icons/Resize_pain-painter-transformed2.png");
  background-size: contain;
  background-repeat: no-repeat;

  width:100%;
  height:100%;
  }
  .icon-solution{
  background-image: url('./icons/solution.png');
  background-size: local;
  background-repeat: no-repeat;
  
  
  }
  .icon-keybenifits{
  background-image: url('./icons/keybenifits.webp');
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height:100%;
  }
  .icon-keyoutcomes{
  background-image: url("./icons/market-research_16136626.png");
  background-size: contain;
  background-repeat: no-repeat;
 
  width:100%;
  height:100%;
  }
  .icon-techstack{
    background-image: url("./icons/techstack1.png");
    background-size: contain;
    background-repeat: no-repeat;
   
    width:100%;
    height:100%;
  }
  .icon-teamsize{
  background-image: url('./icons/teamsize.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height:100%;
  }
  .icon-duration{
  background-image: url("./icons/hourglass.png");
  background-size: contain;
  background-repeat: no-repeat;
  
  width:100%;
  height:80%;
  }

}

@-webkit-keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}



