*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }
  #case-studies2 #about-client {
  /* border: 1px solid red; */
  background-color: #f8f9fa;
  box-shadow: 0 5px 15px lightgray;
  color: #333;
  margin: 10px;
  padding: 20px;
  text-align: center;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }
  
  #case-studies2 #about-client .container {
  /* border: 1px solid; */
  border-radius: 10px;
  width: 90%;
  margin: 0 auto;
  padding: 20px;
  box-shadow: 0 5px 15px lightgray;
  }
  
  #case-studies2 #about-client h2 {
  font-size: 2em;
  color: #004aad;
  margin-bottom: 15px;
  }
  
  #case-studies2 #about-client p {
  font-size: 1.1em;
  line-height: 1.6;
  }
  
  #case-studies2 #about-client ul {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
  }
  
  #case-studies2 #about-client ul li {
  font-size: 1em;
  padding: 5px 0;
  color: #0077cc;
  position: relative;
  }
  
  #case-studies2 #about-client ul li::before {
  content: '✔';
  color: #004aad;
  margin-right: 8px;
  font-weight: bold;
  }
  
  
  /* ----------------------------------------------------------------------------------------- */
  #case-studies2 .challenges-section {
  height: 100%;
  /* border: 1px solid; */
  /* position: relative; */
  width: 100%;
  padding-bottom: 1rem;
  background-color: #f8f9fa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  
  }
  
  /* Description */
  #case-studies2 .description {
  height: 100%;
  font-size: 1.2rem;
  font-weight: bold;
  /* color: #0078d4; */
  font-style: italic;
  margin-bottom: 1.5rem;
  margin-left: 30%;
  }
  
  /* Challenge List */
  #case-studies2 .challenge-list {
  /* border: 1px solid; */
  width: 98%;
  height: 100%;
  margin: auto;
  /* display: grid; */
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  }
  
  /* Challenge Item */
  #case-studies2 .challenge-list .challenge-item {
  border: 1px solid lightgray;
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
  }
  #case-studies2 .challenge-list .challenge-item p {
  margin-top: 2%;
  font-size: 1.1rem;
  }
  #case-studies2 .challenge-list .challenge-item h3 {
  color: #5bb949;
  }
  
  .challenge-item:hover {
  transform: scale(1.05);
  }
  
  /* Icon Styling */
  .icon {
  width: 50px;
  margin-bottom: 1rem;
  }
  
  /* Animation Styling */
  .animate-fade-in {
  opacity: 0;
  animation: fadeIn 1.5s forwards;
  }
  
  /* Keyframes */
  @keyframes fadeIn {
  to {
      opacity: 1;
  }
  }
  
  /* --------------------------------------------------------------------------------------------------------------- */
  
  #case-studies2 .section-container {
  /* border: 1px solid; */
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  /* border: 1px solid blue; */
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-out;
  }
  
  /* Title styling */
  #case-studies2 .section-container h2 {
  text-align: center;
  color:#084c57;
  font-size: 2rem;
  margin-bottom: 1rem;
  animation: slideInFromLeft 1s ease-out;
  }
  
  /* Solution section */
  #case-studies2 .solution {
  margin-bottom: 2rem;
  animation: fadeIn 2s ease-out;
  }
  
  #case-studies2 .solution-dec {
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  }
  
  /* Team section */
  #case-studies2 .team {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  }
  
  #case-studies2 .team-member {
  background-color: #f1f1f1;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  width: calc(33% - 1rem);
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: popUp 1s ease-out forwards;
  opacity: 0;
  }
  #case-studies2 .team-member strong{
  font-size: 1.3rem;
  }
  
  #case-studies2 .team-member p{
  font-size: 1.1rem;
  }
  #case-studies2 .team-member:hover {
  background-color: #2c3e50;
  }
  
  /* Animations */
  @keyframes slideInFromLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
  }
  
  @keyframes popUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
  }
  
  /* ------------------------------------------------------------------------------------------------------ */
  
  
  #case-studies2 .features-container {
  width: 100%;
  background-color: #e5f3ff;
  margin-top: 1%;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-out;
  }
  
  /* Title styling */
  #case-studies2 h2 {
  text-align: center;
  color: #4a9f3b;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  animation: slideInFromTop 1s ease-out;
  }
  
  /* Feature item styling */
  #case-studies2 .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
  }
  
  #case-studies2 .feature-image {
  width: 50px;
  height: 50px;
  margin-right: 1rem;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  #case-studies2 .feature-title {
  font-size: 1.3rem;
  color: #2c3e50;
  font-weight: bold;
  margin-bottom: 0.5rem;
  }
  
  #case-studies2 .feature-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  }
  
  /* Animations */
  @keyframes slideInFromTop {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
  }
  
  /* ------------------------------------------------------------------------------------------------------------------- */
  #case-studies2 .benefits-section {
  /* border: 1px solid; */
  padding: 20px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-top: 2%;
  box-shadow: 0 5px 10px rgb(190, 189, 189);
  }
  
  #case-studies2 .benefits-section h3 {
  font-size: 1.3em;
  color: #4a9f3b;
  margin-bottom: 40px;
  }
  #case-studies2 .benefits-section p {
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom:10px;
  }
  #case-studies2 .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  }
  
  #case-studies2 .benefit {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  }
  
  #case-studies2 .benefit:hover {
  transform: translateY(-5px);
  }
  
  #case-studies2 .benefit h3 {
  font-size: 1.5em;
  color: #1a73e8;
  margin-bottom: 10px;
  }
  
  #case-studies2 .benefit p {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
  }
  
  
  /* ------------------------------------------------------------------------------------------------------------------- */
  #case-studies2 #results {
  background: #f8f9fa;
  width: 100%;
  /* border: 1px solid; */
  padding: 0%;
  
  }
  
  /* #case-studies2 #results h2 {   
  font-weight: bold;
  font-size: 2rem;
  }
   */
  /* Results container */
  #case-studies2 .results-container {
    /* border: 1px solid; */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  }
  
  /* Connecting line */
  #case-studies2 .results-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height:100%;
  width: 2px;
  background: #007bff;
  transform: translateX(-50%);
  }
  
  /* Result items */
  #case-studies2 .result-item {
    /* border: 1px solid; */
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 1.5rem;
  margin: 0.5rem 0;
  background:linear-gradient(#e5f3ff,#f8f9fa,#f8f9fa);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  }
  
  #case-studies2 .result-item.left {
  margin-left: 0;
  text-align: right;
  margin-right: 50%;
  
  }
  
  #case-studies2 .result-item.right {
  margin-right: 4%;
  margin-left: auto;
  text-align: left;
  }
  
  /* Icon container */
  #case-studies2 .result-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #e5f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  }
  
  /* Icon styling */
  #case-studies2 .result-icon i {
  color: #5bb949;
  
  
  }
  
  /* Result content */
  #case-studies2 .result-content h4 {
  font-size: 1.25rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 0.5rem;
  }
  
  #case-studies2 .result-content p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 0;
  }
  
  /* Lines from items to center */
  .result-item.left::after,
  #case-studies2 .result-item.right::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #007bff;
  }
  
  #case-studies2 .result-item.left::after {
  right: -20px;
  transform: translateY(-50%);
  }
  
  #case-studies2 .result-item.right::after {
  left: -20px;
  transform: translateY(-50%);
  }
  
  /* Mobile responsiveness (340px - 480px) */
  @media (max-width: 480px) and (min-width: 340px) {
  
  /* Overall Section */
  #case-studies2 .results-container {
    position: relative;  /* Make sure the container is correctly positioned */
    padding: 15px;
  }
  
  /* Vertical Line in the Center */
  #case-studies2 .results-container::before {
    content: none;  /* Hide the vertical line on mobile */
  }
  
  /* Result items */
  #case-studies2 .result-item {
    width: 100%; /* Full width for each item */
    max-width: none;  /* No max-width for smaller screens */
    padding: 1rem;  /* Reduce padding */
    margin: 0.5rem 0;  /* Keep margins */
    flex-direction: column;  /* Stack items vertically */
    text-align: center;  /* Center align text */
    box-shadow: none;  /* Optional: Remove shadow for simplicity */
  }
  
  /* Adjust the "left" and "right" classes to align center */
  #case-studies2 .result-item.left,
  #case-studies2 .result-item.right {
    margin-right: 0;  /* Remove left and right margins */
    margin-left: 0;
    text-align: center;  /* Align text to center */
  }
  
  /* Icon container adjustments */
  #case-studies2 .result-icon {
    width: 60px;  /* Smaller icon */
    height: 60px;  /* Maintain circular size */
    font-size: 1.5rem;  /* Resize the icon */
    margin-bottom: 10px;  /* Add margin between icon and text */
  }
  
  /* Icon styling */
  #case-studies2 .result-icon i {
    font-size: 2rem;  /* Adjust icon size */
  }
  
  /* Result content text */
  #case-studies2 .result-content h4 {
    font-size: 1.1rem;  /* Smaller font size */
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  #case-studies2 .result-content p {
    color: #666;
    font-size: 1rem;  /* Adjust font size for readability */
    margin-bottom: 0;
  }
  
  /* Horizontal line from items to center (hide on mobile) */
  #case-studies2 .result-item.left::after,
  #case-studies2 .result-item.right::after {
    content: none;  /* Remove horizontal lines for mobile */
  }
  
  /* Adjust spacing and padding */
  .result-item {
    padding: 15px 10px;  /* Reduce padding for mobile */
  }
  
  /* Final Container Margin Adjustment */
  .container {
    padding: 0 15px;  /* Add padding to the container to prevent text from touching edges */
  }
  }
  
  /* ------------------------------------------------------------------------------------------------------------------ */
  /* #technologies h5 {
  color: #007bff;
  font-weight: bold;
  } */
  #case-studies2 #technologies {
  height: 100%;
  /* border: 2px solid; */
  box-shadow: 0 5px 10px lightgray;
  padding: 10px;
  
  }
  
  
  /* Tech list styling */
  #case-studies2 .tech-list {
    /* border: 1px solid; */
  margin-top: 3%;
  display: flex;
  flex-direction: column;
  margin-left: 10%;
  }
  
  /* Tech item styling */
  #case-studies2 .tech-item {
    /* border: 1px solid lightgray; */
  display: flex;
  align-items: center;
  padding: 5px;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0 5px 10px lightgray;
  }
  
  #case-studies2 .tech-icon {
  font-size: 2.5rem;
  color:#64c4e4 ;
  width: 50px;
  text-align: center;
  margin-right: 15px;
  margin-top: 2%;
  }
  
  /* Tech content styling */
  #case-studies2 .tech-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color:#4a9f3b ;
  margin-left: 10px;
  margin-bottom: 10px;
  }
  
  #case-studies2 .tech-content p {
  font-size: 1.1rem;
  color: #2c3e50;
  margin-left: 10px;
  }
  
  /* Hover effect */
  #case-studies2 .tech-item:hover .tech-content h4 {
  text-decoration: underline;
  color: #1078bf;
  }
  
  /* ----------------------------------------------------------------- */
  #conclusion {
  border: 1px solid red;
  background:#084c57;
  height:100%;
  margin-top: 2%;
  padding: 20px;
  text-align: center;
  }
  #conclusion h2 {
  /* margin-top: -15px; */
  color: #5bb949;
  text-decoration: underline;
  }
  #conclusion p {
  color: #f8f9fa;
  padding-left: 3%;
  font-size: 1.1rem;
  padding-top: 1%;
  }
  #contactBtn {
  border-radius: 5px;
  padding: 8px 20px;
  /* margin-left: 42%; */
  margin-top: 3%;
  color: black;
  background-color: #e5f3ff;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  }
  /* ------------------------------------------------------------------------------------------------------------ */
  
  /* ----------------------------------------------------------------------------------------------- */
  
  