body,
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
body, html {
  font-family: 'Poppins', sans-serif;
}

/* Ensure all text elements use Poppins */
body, h1, h2, h3, h4, h5, h6, p, span, div {
  font-family: 'Poppins', sans-serif;
}


.cloud-compute-hero-section {
  background: linear-gradient(135deg, #4a0080, #0080ff);
  color: white;
  padding: 4rem 2rem;
  margin-top: -10vh;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cloud-compute-hero-content {
  position: relative;
  z-index: 2;
  margin-top: 15vh;
}
.cloud-compute-hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
 
}
.cloud-compute-hero-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cloud-compute-hero-cta {
  background-color: white;
  color: #0080ff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}
.cloud-compute-hero-shape {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(-30deg);
  z-index: 1;
}

@media (max-width: 768px) {
  .cloud-compute-hero-title {
    font-size: 2rem;

  }
}




/* --------------------services--------------------------- */


.lir-services-container {

    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  
  .lir-services-title {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
  }
  
  .lir-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
  }
  
  .lir-services-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .lir-services-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  }
  
  .lir-services-icon {
    width: 64px;
    height: 64px;
    color: #00bf8f;
    margin-bottom: 1rem;
  }
  
  .lir-services-card:nth-child(n) .lir-services-icon {
    color: #4b006b;  /* Blue */
  }
  .lir-services-card-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  
  .lir-services-card-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  @media (max-width: 768px) {
    .lir-services-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
    }
    
    .lir-services-title {
      font-size: 2rem;
      margin-bottom: 2rem;
    }
  }



  /* -------------------benefits--------------------- */
  .lir-why-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 4rem 1rem;
    background: #f8f9fa;
  }
  
  .lir-why-title {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 600;
  }
  
  .lir-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
  }
  
  .lir-why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .lir-why-image{
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .lir-why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  }
  
  .lir-why-item:nth-child(n) .lir-why-icon {
    color: #4b006b;  /* Blue */
  }
  
  
  .lir-why-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
  }
  
  .lir-why-item:hover .lir-why-icon {
    transform: scale(1.1);
  }
  
  .lir-why-content h3 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
  }
  
  .lir-why-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .lir-why-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .lir-why-title {
      font-size: 2rem;
      margin-bottom: 3rem;
    }
    
    .lir-why-item {
      gap: 1rem;
      padding: 1.25rem;
    }
  }


    /* ----------------------------managed-service------------------------------ */



    .lir-manage-services-container {

        max-width: 1200px;
        margin: 0 auto;
        padding: 4rem 1rem;
      }
      
      .lir-manage-services-header {
        text-align: center;
        margin-bottom: 4rem;
      }
      
      .lir-manage-services-title {
        color: #1a1a1a;
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-weight: 600;
      }
      
      .lir-manage-services-subtitle {
        color: #666;
        font-size: 1.1rem;
      }
      
      .lir-manage-services-grid {
        display: grid;
        gap: 4rem;
      }
      
      .lir-manage-services-item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
      }
      
      .lir-manage-services-item:nth-child(even) {
        direction: rtl;
      }
      
      .lir-manage-services-item:nth-child(even) .lir-manage-services-content {
        direction: ltr;
      }
      
      .lir-manage-services-content {
        padding: 2rem;
      }
      
      .lir-manage-services-content h3 {
        color: #1a1a1a;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
      }
      
      .lir-manage-services-content p {
        color: #666;
        line-height: 1.7;
        margin-bottom: 1rem;
      }
      
      .lir-manage-services-image {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }
      
      .lir-manage-services-illustration {
        background: #f8f9ff;
        padding: 2rem;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 300px;
      }
      
      @media (max-width: 968px) {
        .lir-manage-services-item {
          grid-template-columns: 1fr;
          gap: 2rem;
        }
        
        .lir-manage-services-item:nth-child(even) {
          direction: ltr;
        }
        
        .lir-manage-services-content {
          padding: 1rem 0;
        }
        
        .lir-manage-services-title {
          font-size: 2rem;
        }
      }

 /* ----------------------------FAQ------------------------------ */
 
.lir-questions-main {
  all: unset;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 80px;
  background-color: rgb(255, 247, 247);
}

.lir-questions {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.lir-questions h1 {
  text-align: center;
  color: #0f1e4e;
  font-size: 28px;
  margin-bottom: 60px;
}

.lir-questions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.lir-questions-subgrid1,
.lir-questions-subgrid2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}

.lir-questions-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lir-questions-item summary {
  color: #0f1e4e;
  
  font-size: 16px;
  font-weight: 500;
  padding-right: 30px;
  cursor: pointer;
  list-style: none;
  position: relative;
  margin: 0;
}

.lir-questions-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #0f1e4e;
  transition: transform 0.3s ease;
}

.lir-questions-item[open] summary::after {
  content: "-";
  transform: translateY(-50%) rotate(180deg);
}

.lir-questions-answer {
  margin-top: 15px;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.5;
  display: none;
}

.lir-questions-item.active .lir-questions-answer {
  display: block;
}

/* Media Queries for Responsiveness */
@media screen and (min-width: 768px) {
  .lir-questions-subgrid1,
  .lir-questions-subgrid2 {
    width: calc(50% - 10px);
  }

  .lir-questions h1 {
    font-size: 32px;
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  .lir-questions-main {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .lir-questions h1 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .lir-questions-item summary {
    font-size: 15px;
  }

  .lir-questions-answer {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .lir-questions-main {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .lir-questions h1 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .lir-questions-item {
    padding: 12px;
  }

  .lir-questions-item summary {
    font-size: 14px;
  }

  .lir-questions-answer {
    font-size: 12px;
  }
}


/*------------------contact-us-form ---------------------*/

.cloud-compute-form-container-main {
  width: 100%;
  padding-top: 30px;
  margin-bottom: 50px;
  background-color: #ffffff;
}

.cloud-compute-form-container {
  background: rgb(0,12,45);
  background: linear-gradient(90deg, rgba(0,12,45,1) 0%, rgba(0,0,0,1) 100%);
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1200px;
  margin: 5vh auto;
  border-radius: 15px;
}

.cloud-compute-form-left {
  flex: 1;
  padding-right: 2rem;
}

.cloud-compute-form-right {
  flex: 1;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
}

.cloud-compute-form-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cloud-compute-form-subtitle {
  margin-bottom: 2rem;
  font-weight: 600;
}

.cloud-compute-form-contact-info {
  margin-bottom: 1rem;
}

.cloud-compute-form-social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cloud-compute-form-social-icon {
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cloud-compute-form-social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cloud-compute-form-input {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.cloud-compute-form-submit {
  background-color: black;
  font-weight: 600;
  border: 2px solid black;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .cloud-compute-form-container {
    max-width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .cloud-compute-form-container {
    flex-direction: column;
    padding: 1.5rem;
  }

  .cloud-compute-form-left,
  .cloud-compute-form-right {
    flex: none;
    width: 100%;
    padding: 1rem;
  }

  .cloud-compute-form-left {
    padding-right: 1rem;
    margin-bottom: 1.5rem;
  }

  .cloud-compute-form-title {
    font-size: 1.75rem;
  }

  .cloud-compute-form-subtitle {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .cloud-compute-form-container-main {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .cloud-compute-form-container {
    padding: 1rem;
  }

  .cloud-compute-form-left,
  .cloud-compute-form-right {
    padding: 0.5rem;
  }

  .cloud-compute-form-title {
    font-size: 1.5rem;
  }

  .cloud-compute-form-subtitle {
    font-size: 0.8rem;
  }

  .cloud-compute-form-social-icons {
    justify-content: center;
  }

  .cloud-compute-form-submit {
    padding: 0.5rem;
  }
}