/* General Styles */
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;

  }
}

/* Features Section */

.iep-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .iep-main {
    flex-grow: 1;
  }
  

  /* About Section */
  .iep-about {
    padding: 64px 20px;
    text-align: center;
  }
  
  .iep-about-content {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .iep-about-title {
    font-size: 2.3rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 16px;
  }
  
  .iep-about-description {
    font-size: 1.125rem;
    color: #475569;
    text-align: left;
  }
  
/* Benefits Section */
.iep-benefits {
    background-color: white;
    padding: 64px 20px;
  }
  
  .iep-benefits-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .iep-benefits-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 48px;
  }
  
  .iep-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
  }
  
  .iep-benefit-item {
    text-align: center;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .iep-benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .iep-benefit-icon {
    width: 64px;
    height: 64px;
    color: #2563eb;
    margin-bottom: 16px;
  }
  
  .iep-benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
  }
  
  .iep-benefit-description {
    font-size: 1rem;
    color: #475569;
  }
  /* How It Works Section */
  

  .iep-work-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  .iep-work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .iep-work-title {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 40px;
    font-weight: bold;
    text-align: center;
  }
  
  .iep-work-item {
    display: flex;
    align-items: center;
    padding: 20px;
    transition: transform 0.2s ease-in-out;
    margin-bottom: -2vh;
    margin-top: -3vh;
  }
  
  .iep-work-number {
    font-size: 6rem;
    color: #e2e8f0;
    font-weight: bold;
    line-height: 1;
    margin-right: 20px;
  }
  
  .iep-work-content {
    flex: 1;
  }
  
  .iep-work-subtitle {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .iep-work-description {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
  }
  
  .iep-work-item:hover {
    transform: translateY(-5px);
  }
  
  @media (min-width: 769px) {
    .iep-work-item:nth-child(even) {
        flex-direction: row-reverse;
    }
  
    .iep-work-item:nth-child(even) .iep-work-number {
        margin-right: 0;
        margin-left: 20px;
    }
  
    .iep-work-item {
        width: 60%;
    }
  
    .iep-work-item:nth-child(even) {
        margin-left: auto;
    }
  }
  
  @media (max-width: 768px) {
    .iep-work-title {
        font-size: 2rem;
    }
  
    .iep-work-number {
        font-size: 5rem;
    }
  }
  
  @media (max-width: 480px) {
    .iep-work-title {
        font-size: 1.75rem;
    }
  
    .iep-work-subtitle {
        font-size: 1.25rem;
    }
  
    .iep-work-number {
        font-size: 4rem;
    }
  
    .iep-work-description {
        font-size: 0.9rem;
    }
  
    .iep-work-item {
        flex-direction: column;
        align-items: flex-start;
    }
  
    .iep-work-number {
        margin-bottom: 10px;
    }
  }




  /* Learn More Section */
  .iep-learn-more {
    padding: 64px 20px;
    text-align: center;
  }
  
  .iep-learn-more-content {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .iep-learn-more-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 16px;
  }
  
  .iep-learn-more-description {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 32px;
  }
  
  .iep-learn-more-button {
    background-color: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s;
  }
  
  .iep-learn-more-button:hover {
    background-color: #1d4ed8;
  }
  
  .iep-button-icon {
    margin-left: 8px;
    width: 20px;
    height: 20px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .iep-hero-title {
      font-size: 2rem;
    }
  
    .iep-hero-description,
    .iep-about-description,
    .iep-how-it-works-description,
    .iep-learn-more-description {
      font-size: 1rem;
    }
  
    .iep-benefits-grid {
      grid-template-columns: 1fr;
    }
  }



/* About Section */

  

  .uk-about-container {
    width: 100%;

    padding-bottom: clamp(5vh, 7vh, 10vh);
    background-color: #f0f0f0 ;
  }
  
  .uk-about {
    background-color: #f0f0f0 ;
    color: #000;
    padding: clamp(1rem, 2.5rem, 3rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
    gap: 1rem;
  }
  
  .uk-about-content {
    flex: 1;
    min-width: 280px;
    padding-left: clamp(0.5rem, 2rem, 3rem);
  }
  
  .uk-about-content h2 {
    font-size: clamp(1.5rem, 2.5rem, 3rem);
    line-height: 1.2;
  }
  
  .uk-about-content p {
    margin-top: clamp(1vh, 3vh, 5vh);
    font-size: clamp(0.9rem, 1rem, 1.2rem);
  }
  
  .uk-about-graphics {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    max-width: 300px;
    width: 100%;
  }
  
  .uk-about-arrow-group {
    position: relative;
    width: 100%;
    height: clamp(200px, 300px, 400px);
    max-width: 300px;
  }
  
  .uk-arrow-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(100px, 200px, 250px);
    height: clamp(100px, 200px, 250px);
   
  }
  
  .uk-arrow-icon-1 {
    z-index: 1;
    opacity: 0.5;
    transform: translate(-70%, -90%) scale(0.9);
  }
  
  .uk-arrow-icon-2 {
    z-index: 2;
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1.2);
  }
  
  .uk-arrow-icon-3 {
    z-index: 1;
    opacity: 0.5;
    transform: translate(-70%, -10%) scale(0.9);
  }
  
  
  
  /* Responsive Adjustments */
  @media screen and (max-width: 768px) {
    .uk-about {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .uk-about-content {
      padding-left: 0;
      width: 100%;
    }
  
    .uk-about-graphics {
      margin-top: 1rem;
      width: 100%;
      max-width: 250px;
    }
  
    .uk-about-arrow-group {
      height: clamp(150px, 250px, 300px);
    }
  }
  
  /* Zoom Level Accommodations */
  @media screen and (max-resolution: 120dpi) {
    .uk-about-container,
    .uk-about {
      width: 100%;
      max-width: 100%;
    }
  }
  
  /* High Resolution and Retina Displays */
  @media screen and (min-resolution: 2dppx) {
    .uk-about-content h2 {
      font-size: clamp(1.8rem, 2.7rem, 3.2rem);
    }
  }
  
  /* Accessibility and Print Considerations */
  @media print {
    .uk-about-container {
      background-color: transparent;
    }
  }


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