/* end-to-end-cloud-services.component.css */
.end-to-end-cloud-services-container {
    
    text-align: center;
    padding: 50px 20px;
  }
  
  .end-to-end-cloud-services-container h2 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .end-to-end-cloud-services-container p {
    font-size: 1.4em;
    color: #6c757d;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .end-to-end-cloud-services-container h2 {
      font-size: 2.5em;
    }
  
    .end-to-end-cloud-services-container p {
      font-size: 1em;
    }
  }
   /* cards-section.component.css */
.cards-section-it {
    /* display: flex; */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }
/*   
.cardit {
    background-color: orange;
    color: white;
    border-radius: 10px;
    width: 300px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, max-height 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 200px;
  }
  
  .cardit:hover {
    transform: translateY(-10px);
    height: 200px; /* Adjust as per the additional content height  
  }
  
  .cardit-content {
    position: relative;
    z-index: 2;
  } */
/*   
  .cardit i {
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  .cardit h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  
  .hidden-content {
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1em;
    margin-top: 10px;
  }
  
  .cardit:hover .hidden-content {
    opacity: 1;
  }
  
  .learn-more {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
  }
  
  .learn-more:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .cardit {
      width: 100%;
    }
  } */
  .cardit {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: orange;
    color: white;
     filter: brightness(90%);
    /* width: 300px; */
    padding: 20px;
    text-align: center;
    
    position: relative;
     
    height: 250px;
  }

  .cardit-content {
    position: relative;
    padding: 16px;
  }

  .awsimg {
    display: inline;
    width: 100%;
    transition: opacity 0.3s ease;
    align-items: center;
  }

  h3 {
    margin: 16px 0;
    font-size: 1.65rem;
    transition: transform 0.3s ease;
  }

  .hidden-content {
    max-height: 0;
    overflow: hidden;
    /* transition: max-height 1s ease; */
    /* margin-top: 0; */
    margin-top: -62px;
  }

  .cardit:hover .awsimg {
    opacity: 0;
  }

  .cardit:hover h3 {
    /* transform: translateY(-70px); */
    /* transform: translateY(-30px); Reduce the translate value old */
    transform: translateY(-84px); /* Reduce the translate value new */
    margin-bottom: 0; /* Remove bottom margin to decrease space */
  }

  .cardit:hover .hidden-content {
    max-height: 100px; /* Adjust based on your content */
  }

  /* cloud-consulting.component.css */
.cloud-consulting-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 10px;
    margin-top: 24px;
  }
  
  .text-content {
    max-width: 50%;
  }
  
  .text-content h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
  }
  
  .text-content p {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #777;
  }
  
  .plan-button {
    background-color: #ff9900;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .plan-button:hover {
    background-color: #e68a00;
  }
  
  .image-content {
    max-width: 40%;
  }
  
  .image-content img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* styles.css */
.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .icon-container img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }
  
  .awsimg{
    width: 70px;
    height: 70px;
  }
  
  @media (max-width: 768px) {
    .icon-container p {
      font-size: 14px;
    }
  }
  

  .container1 {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #f5f5f5;
  }
  
  .case-study {
    width: 48%;
    background-color: white;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  .case-study-header {
    background-color: orange;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
  }
  
  .case-study-body {
    padding: 20px;
  }
  
  .case-study-body h3 {
    font-size: 18px;
    color: #333;
  }
  
  .case-study-body p {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
  }
  
  .case-study-body ul {
    padding-left: 20px;
  }
  
  .case-study-body ul li {
    margin: 5px 0;
  }
  