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;
  max-width: 800px;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
 
}
.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;

  }
}


/*---------------what-is-leased-line-section-------------=--------------*/



.lease-lines-section {
    min-height: 50vh;
    background: linear-gradient(to bottom right, #ffffff, #ffffff);
    padding: 2rem;
}

.lease-lines-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

.lease-lines-section h1 {
    color: black;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.lease-lines-section .cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .lease-lines-section .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lease-lines-section .cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lease-lines-section .what-cards {
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lease-lines-section .what-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, 
        rgba(0, 0, 0, 0.05), 
        rgba(0, 0, 0, 0.1));
    pointer-events: none;
    border-radius: 1rem;
}

.lease-lines-section .what-cards:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.lease-lines-section .what-cards h2 {
    color: rgb(0, 0, 0);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
}

.lease-lines-section .what-cards p {
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 0.75rem;
    position: relative;
    transition: color 0.3s ease;
}

.lease-lines-section .what-cards:hover p {
    color: rgb(0, 0, 0 ,1);
}



/*---------------leased-benefits-section------------------------------*/



.leased-benefits-container-main {
    width: 100%;
    background-color: #f0f0f0;
}
.leased-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5vh 0 5vh 0;
}
.lease-lines-heading{
    text-align: center;
    font-size: 3rem;
    margin-bottom: 8vh;
}
.leased-benefits-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
}
.leased-benefits-header-content {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}
.leased-benefits-header-image {
    flex: 1;
    min-width: 300px;
}
.leased-benefits-header-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.leased-benefits-title {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 15px;
}
.leased-benefits-description {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 20px;
}

/* Benefit Items */
.leased-benefit-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
}
.leased-benefit-item:nth-child(even) {
    flex-direction: row-reverse;
}
.leased-benefit-content {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}
.leased-benefit-image {
    flex: 1;
    min-width: 250px;
}
.leased-benefit-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.leased-benefit-title {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 15px;
}
.leased-benefit-description {
    text-align: start;
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .leased-benefits-header-content,
    .leased-benefits-header-image,
    .leased-benefit-content,
    .leased-benefit-image {
        flex: 100%;
        min-width: 100%;
    }
    .leased-benefits-header-content {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .leased-benefit-item:nth-child(even) {
        flex-direction: column;
    }
    .leased-benefit-item {
        flex-direction: column;
    }
    .leased-benefits-title,
    .leased-benefit-title {
        font-size: 2rem;
    }
}



/*------------------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;
    }
  }