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---------------------------------*/
.datacenter-hosting-services-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}

.datacenter-hosting-services-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
  font-weight: 600;
}

.datacenter-hosting-services-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.datacenter-hosting-services-tab {
  padding: 0.75rem 1.5rem;
  background-color: #f0f0f0;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.datacenter-hosting-services-tab.active {
  background-color: #48a3cd;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(72, 163, 205, 0.3);
}

.datacenter-hosting-services-content {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 2rem;
}

.datacenter-hosting-services-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.datacenter-hosting-services-text h3 {
  margin-top: 0;
  padding-bottom: 1rem;
  font-size: 1.75rem;
  color: #333;
  font-weight: 600;
}

.datacenter-hosting-services-text p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.datacenter-hosting-services-text ul {
  padding-left: 0;
  list-style-type: none;
}

.datacenter-hosting-services-text li {
  position: relative;
  padding-left: 1.875rem;
  margin-bottom: 0.9375rem;
  color: #555;
}

.datacenter-hosting-services-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #48a3cd;
  font-weight: bold;
}

@media (min-width: 768px) {
  .datacenter-hosting-services-content {
      flex-direction: row;
      align-items: flex-start;
  }

  .datacenter-hosting-services-image {
      width: 50%;
      margin-bottom: 0;
      margin-right: 2rem;
  }

  .datacenter-hosting-services-text {
      width: 50%;
  }
}

@media (max-width: 480px) {
  .datacenter-hosting-services-title {
      font-size: 1.5rem;
  }

  .datacenter-hosting-services-tab {
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
  }

  .datacenter-hosting-services-text h3 {
      font-size: 1.5rem;
  }
}
/*---------------------solutions ----------------------------*/

.datacenter-hosting-solutions-container-main {
  width: 100%;
  

  background-color: #f5f5f5;

}

.datacenter-hosting-solutions-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.datacenter-hosting-solutions-title {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  color: #333;
  margin-bottom: 60px;
}

.datacenter-hosting-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Card styles */
.datacenter-hosting-solutions-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;
}

.datacenter-hosting-solutions-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Aligning the image and title horizontally */
.datacenter-hosting-solutions-card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 15px;
}

.datacenter-hosting-solutions-icon {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  object-fit: contain;
}

.datacenter-hosting-solutions-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000; /* Blue shade for title */
  margin: 0;
  text-align: left;
}

/* Description styles */
.datacenter-hosting-solutions-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .datacenter-hosting-solutions-title {
    font-size: 1.8rem;
    margin-bottom: 50px;
  }

  .datacenter-hosting-solutions-card-title {
    font-size: 1rem;
  }

  .datacenter-hosting-solutions-description {
    font-size: 0.8rem;
  }
}

@media (max-width: 992px) {
  .datacenter-hosting-solutions-container {
    padding: 40px 15px;
  }

  .datacenter-hosting-solutions-title {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  .datacenter-hosting-solutions-card {
    padding: 20px;
  }

  .datacenter-hosting-solutions-card-title {
    font-size: 0.9rem;
  }

  .datacenter-hosting-solutions-description {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .datacenter-hosting-solutions-container {
    padding: 30px 10px;
  }

  .datacenter-hosting-solutions-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }

  .datacenter-hosting-solutions-card {
    padding: 15px;
  }

  .datacenter-hosting-solutions-card-title {
    font-size: 0.85rem;
  }

  .datacenter-hosting-solutions-description {
    font-size: 0.7rem;
  }

  .datacenter-hosting-solutions-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .datacenter-hosting-solutions-container {
    padding: 20px 5px;
  }

  .datacenter-hosting-solutions-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .datacenter-hosting-solutions-card {
    padding: 10px;
  }
  .datacenter-hosting-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
  }
  

  .datacenter-hosting-solutions-card-title {
    font-size: 0.8rem;
  }

  .datacenter-hosting-solutions-description {
    font-size: 0.65rem;
  }

  .datacenter-hosting-solutions-icon {
    width: 40px;
    height: 40px;
  }
}

/*-----------------steps----------------*/
.cloud-compute-steps-container-main {
  width: 100%;
  background-color: rgb(255, 255, 255);
  padding-top: 4%;
}

.cloud-compute-steps-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px; /* Added padding for smaller screens */
}

.cloud-compute-steps-heading {
  font-size: 36px;

  margin-bottom: 20px;
  color: #333;
}

/* Image adjustment */
.cloud-compute-steps-image {
  max-width: 100%;
  height: auto;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .cloud-compute-steps-heading {
    font-size: 32px;
    margin-bottom: 15px;
  }
}

@media (max-width: 992px) {
  .cloud-compute-steps-container {
    padding: 0 15px;
  }

  .cloud-compute-steps-heading {
    font-size: 28px;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .cloud-compute-steps-container {
    padding: 0 10px;
  }

  .cloud-compute-steps-heading {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .cloud-compute-steps-container {
    padding: 0 5px;
  }

  .cloud-compute-steps-heading {
    font-size: 20px;
    margin-bottom: 5px;
  }
}

/*---------------------cost-section ----------------------------*/

.cloud-compute-cost-container {
  max-width: 1200px;
  margin: 100px auto;

}
.cloud-compute-cost-title {
  text-align: center;
  color: #333;
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: bold;
}
.cloud-compute-cost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.cloud-compute-cost-card {
  background-color: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cloud-compute-cost-card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #333;
}
.cloud-compute-cost-card-content {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.cloud-compute-cost-link {
  display: inline-block;
  margin-top: 16px;
  color: #0069ff;
  text-decoration: none;
  font-weight: bold;
}
.cloud-compute-cost-link:hover {
  text-decoration: underline;
}

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


.cloud-compute-form-container-main {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 10px;
  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;
  }
}


/*----------------questions ---------------------*/


.datacenter-hosting-questions-main {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 80px;
  background-color: rgb(255, 247, 247);
}

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

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

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

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

.datacenter-hosting-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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

  .datacenter-hosting-questions-item {
    padding: 12px;
  }

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

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