* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #1e1e1e;
  /* Dark background */
  color: #ffffff;
  /* White text */
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* Container to center and limit overall width */
.ipg-container {
  max-width: 100%;
  margin: auto;
  padding: 0 1rem;
  /* Add horizontal padding for smaller screens */
}

.mlops-container {
  max-width: 100%;
  margin: auto;
  padding: 0 1rem;
  /* Add horizontal padding for smaller screens */
}

.iot-sdk-container {
  max-width: 100%;
  margin: auto;
  padding: 0 1rem;
  /* Add horizontal padding for smaller screens */
}

/* Title Section */
.ipg-title {
  text-align: center;
  margin-bottom: 2rem;
}

.ipg-title h1 {
  font-size: 2.6rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.ipg-title .highlight {
  color: #0052cc;
  font-weight: 600;
}

.ipg-title h2 {
  font-size: 1.5rem;
  color: #0052cc;
  font-weight: 400;
}

/* Feature Boxes Section */
.ipg-features {
  display: flex;
  flex-wrap: wrap;
  /* Wrap to next line for smaller screens */
  gap: 1rem;
  /* Space between boxes */
  justify-content: space-between;
}

.ipg-feature-box {
  flex: 1 1 calc(33.333% - 1rem);
  /* 3 boxes per row on wide screens */
  background-color: rgba(1, 7, 13, 0.8);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  min-height: 140px;
  /* Ensures uniform box height */
  display: flex;
  align-items: center;
  justify-content: center;
  /* Centers horizontally */
  text-align: center;
  transition: transform 0.3s ease;
  /* Smooth transition for hover effect */
}

.mlops-feature-box {
  flex: 1 1 calc(33.333% - 1rem);
  /* 3 boxes per row on wide screens */
  background-color: rgba(1, 7, 13, 0.8);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  /* Centers vertically */
  justify-content: center;
  /* Centers horizontally */
  text-align: center;
  transition: transform 0.3s ease;
  /* Smooth transition for hover effect */
}

.mlops-feature-box:hover {
  transform: translateY(-5px);
  /* Move up slightly on hover */
}

.mlops-feature-box p {
  margin: 0;
  /* Remove default p margin */
  font-size: 1rem;
}

.ipg-feature-box:hover {
  transform: translateY(-5px);
  /* Move up slightly on hover */
}

.ipg-feature-box p {
  margin: 0;
  /* Remove default p margin */
  font-size: 1rem;
}

.ipg-image {
  text-align: center;
  width: calc(100% + 2rem);
  margin-left: -1rem;
  margin-right: -1rem;
}

.ipg-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile view adjustments: crop image from right and left */
@media (max-width: 480px) {
  .ipg-image {
    overflow: hidden;
    /* Hide the extra parts of the image */
  }

  .ipg-image img {
    width: 120%;
    /* Increase image width to zoom in */

  }
}



/* Responsive adjustments for tablets and small screens */
@media (max-width: 768px) {
  .ipg-feature-box {
    flex: 1 1 100%;
    /* Each box takes full width */
  }

  .mlops-feature-box {
    flex: 1 1 100%;
    /* Each box takes full width */
  }

  .ipg-title h1 {
    font-size: 2.5rem;
  }

  .ipg-title h2 {
    font-size: 1.25rem;
  }
}

/* Additional adjustments for very small screens */
@media (max-width: 480px) {

  .ipg-title h1 {
    font-size: 2rem;
  }

  .ipg-title h2 {
    font-size: 1rem;
  }
}

@media (min-width: 769px) {
  .other-products-section {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .other-products-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #0A0A41, #10106E);
    color: white;
    text-align: center;
  }

  .other-products-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .other-products-carousel {
    max-width: 1200px;
    margin: 0 auto;
  }

  .product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px 20px;
    margin: 0 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  }

  .product-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .product-card p {
    font-size: 0.95rem;
    color: #ccc;
  }
}

@media (max-width: 768px) {

  /* Remove background and border of flickity buttons */
  .flickity-button {
    background: none !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
  }

  /* Make arrow itself bigger and visible */
  .flickity-button-icon {
    fill: white !important;
    width: 24px !important;
    height: 24px !important;
  }

  /* Position adjust */
  .flickity-prev-next-button.previous {
    left: 5px !important;
  }

  .flickity-prev-next-button.next {
    right: 5px !important;
  }
}

.container-sdk {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.hero-section-sdk {
  text-align: center;
  padding: 60px 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  margin-bottom: 40px;
}

.hero-title-sdk {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-subtitle-sdk {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 30px;
  color: #ffffff;
}

.features-grid-sdk {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.feature-card-sdk {
  padding: 0;
  border-radius: 0;
  border: none;
  text-align: center;
  overflow: hidden;
  box-shadow: none;
}

.feature-card-sdk img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  margin-bottom: 0;
}

.feature-card-sdk h2 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  margin: 20px 0 10px 0;
}

.feature-card-sdk p {
  color: #ffffff;
  opacity: 1;
  font-size: 1rem;
  padding: 0 15px 20px;
}

.how-it-works-sdk {
  margin: 40px 0;
}
.how-it-works-sdk img {
 width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  border-radius: 0 !important; 
}

.how-it-works-sdk h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

.how-it-works-sdk ul {
  list-style: none;
  padding: 0;
}

.how-it-works-sdk li {
  margin: 15px 0;
  padding-left: 20px;
  position: relative;
}

.how-it-works-sdk li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0e60dd;
  font-weight: bold;
}

.business-impact-sdk {
  text-align: center;
  margin: 40px 0;
}

.business-impact-sdk h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.impact-grid-sdk {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.impact-item-sdk {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.impact-item-sdk img {
  width: 48px;
  height: 48px;
}

.impact-item-sdk h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.genai-section-sdk {
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 15px;
  margin: 40px 0;
}

.genai-section-sdk h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.genai-section-sdk .quote {
  font-size: 1.1rem;
  font-style: italic;
  margin: 20px 0;
  color: #ffffff;
}

.btn-sdk {
  display: inline-block;
  padding: 12px 30px;
  background: #0e60dd;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin: 10px;
  transition: background 0.3s;
}

.btn-sdk:hover {
  background: #0a4bb8;
}

.evolution-section-sdk {
  text-align: center;
  margin: 40px 0;
}

.evolution-grid-sdk {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 30px 0;
}
.evolution-item-sdk {
  border: 2px solid #ffffff;
  border-radius: 12px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05); /* optional for contrast */
}

.evolution-item-sdk h3 {
  font-size: 1.8rem;
}

.accordion-sdk {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin: 20px 0;
}

.accordion-item-sdk {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-item-sdk:last-child {
  border-bottom: none;
}

.accordion-header-sdk {
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  color: white;
  background: rgba(0, 0, 0, 0.2);
}

.accordion-header-sdk:hover {
  background: rgba(0, 0, 0, 0.3);
}

.accordion-content-sdk {
  padding: 20px;
  display: none;
}

.accordion-content-sdk ul {
  list-style: disc inside;
  color: #fff;
}

@media (max-width: 768px) {
  .hero-title-sdk {
    font-size: 2rem;
  }

  .features-grid-sdk {
    grid-template-columns: 1fr;
  }

  .evolution-grid-sdk {
    grid-template-columns: 1fr;
  }
}