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;

  }
}
/*-----------------------------Highlights---------------------------------*/
.sla-highlights-container-main {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f5f5f5;
}
.sla-highlights-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.sla-highlights-title {
    text-align: center;
    color: #333;
    font-size: 32px;
}
.sla-highlights-underline {
    width: 60px;
    height: 3px;
    border-radius: 10px;
    background-color: #4CAF50;
    margin: 0px auto 20px;
}
.sla-highlights-item {
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}
.sla-highlights-header {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
}
.sla-highlights-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
}
.sla-highlights-heading {
    font-size: 16px;
    margin: 0;
}
.sla-highlights-content {
    padding: 0 15px 15px;
    display: none;
    font-size: 14px;
    color: #666;
}
.sla-highlights-arrow {
    margin-left: auto;
    font-size: 24px;
    font-weight: 600;
    transition: transform 0.3s ease;
}
.sla-highlights-item.active .sla-highlights-arrow {
    transform: rotate(90deg);
}

/*---------------------core-metrics ----------------------------*/

.sla-core-metrics-container-main {
    width: 100%;

    background-color: #f5f5f5;
}

.sla-core-metrics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.sla-core-metrics-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
}

.sla-core-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.sla-core-metrics-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sla-core-metrics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.sla-core-metrics-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.sla-core-metrics-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.sla-core-metrics-card-title {
    font-size: 1.3rem;
    color: #0066cc;
    margin: 0;
}

.sla-core-metrics-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .sla-core-metrics-container {
        padding: 40px 20px;
    }

    .sla-core-metrics-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .sla-core-metrics-card-title {
        font-size: 1.2rem;
    }

    .sla-core-metrics-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .sla-core-metrics-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .sla-core-metrics-card {
        padding: 20px;
    }

    .sla-core-metrics-card-title {
        font-size: 1.1rem;
    }

    .sla-core-metrics-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .sla-core-metrics-container {
        padding: 30px 15px;
    }

    .sla-core-metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .sla-core-metrics-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .sla-core-metrics-card {
        padding: 15px;
    }

    .sla-core-metrics-card-title {
        font-size: 1rem;
    }

    .sla-core-metrics-description {
        font-size: 0.75rem;
    }

    .sla-core-metrics-icon {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .sla-core-metrics-container {
        padding: 20px;
    }

    .sla-core-metrics-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .sla-core-metrics-card {
        padding: 10px;
    }

    .sla-core-metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .sla-core-metrics-card-title {
        font-size: 0.9rem;
    }

    .sla-core-metrics-description {
        font-size: 0.7rem;
    }

    .sla-core-metrics-icon {
        width: 40px;
        height: 40px;
        margin-right: 5px;
    }
}

/*-----------------guarantees----------------*/
.sla-guarantees-container {

    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.sla-guarantees-heading {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}
.sla-guarantees-subheading {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 20px;
    text-align: center;
}
.sla-guarantees-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
}
.sla-guarantees-table th, .sla-guarantees-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}
.sla-guarantees-table th {
    background-color: #3498db;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.sla-guarantees-table tr:last-child td {
    border-bottom: none;
}
.sla-guarantees-table tr:hover {
    background-color: #f5f7fa;
}
@media (max-width: 600px) {
    .sla-guarantees-table th, .sla-guarantees-table td {
        padding: 10px;
        font-size: 12px;
    }
    .sla-guarantees-heading {
        font-size: 20px;
    }
    .sla-guarantees-subheading {
        font-size: 14px;
    }
}

/*------------------contact-us-form ---------------------*/
.cloud-compute-form-container-main {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  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: 0 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;
  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;
  }
}

