body {
  margin: 0;
  font-family: 'Segoe UI', Calibri, sans-serif;
}

.full-nav-image img {
  width: 100%;
  display: block;
  cursor: pointer;
}
.hero-section {
  background: url("../images/img1.png") center center/cover no-repeat;
  height: 100vh;
  position: relative;
  width: 100%;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
}

.hero-text-box {
  position: relative;
  border-radius: 6px;
  color: #fff;
  opacity: 1;
  transform: translateZ(0);
}
.hero-text-box h1{
  font-size: 34px;
}
.hero-text-box p {
  font-size: 28px;
}
.support-section {
  background-color: #fff;
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box img {
  width: 50px;
  height: 50px;
}

h5 {
  font-size: 23px;
}

p {
  font-size: 18px;
}

.feature-grid-section {
  background-color: #fff;
}

.feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
  padding: 20px 24px;
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #0C71C3;
  transform: translateY(-3px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon img {
  width: 50px;
  height: 50px;
}

.feature-title {
  
  font-weight: 600;
}

.feature-text {
  color: #555;
}
.watsonx-card{
  align-items: center;
}
.watsonx-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.watsonx-icon img {
  width: 50px;
  height: 50px;
}

.watsonx-text {
  color: #000;
  text-align: justify;
}

.benefits-section {
  background-color: #fff;
}

.benefits-section i {
  font-size: 1rem;
  color: #0b66c3;
  background-color: #e9f3ff;
  border-radius: 50%;
  padding: 6px;
}

.benefits-section p {
  color: #000;
  font-size: 1rem;
  line-height: 1.6;
}

.sign{
    align-items: flex-start;
}

.numbered-cards-section {
  background-color: #fff;
}

.number-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.number-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.number-card .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0C71C3;
  opacity: 0.85;
  margin-bottom: 12px;
}

.number-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}
.pricing-section {
  background: linear-gradient(135deg, #004080, #0073e6);
  color: white;
}

.robot-img {
  max-width: 250px;
}
.main-container {
    color: #000000;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.faq-container {
    width: 100%;
    border-radius: 12px;
}
.faq-item {
    border-bottom: 1px solid #c8d3de;
    padding: 25px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 15px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #000;
    font-family: 'Segoe UI', Calibri, sans-serif;

}
.custom-btn {
  background-color: #0073e6;
  color: #fff;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.custom-btn:hover {
  background-color: #005bb5;
  color: #fff;
  transform: translateY(-2px);
}
.hero-2 {
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 60px 22px;
  background: url("../images/img5.png") center/cover no-repeat;
  color: #fff;
  position: relative;
}

.hero-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-inner {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.hero-2 h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .hero-section {
    height: 100%;
  }

  .hero-text-box {
    padding: 55px 0px 0px;
    backdrop-filter: none;
  }
  .feature-card {
    flex-direction: row;
    padding: 18px;
  }
  .watsonx-card{
  align-items: flex-start;
}
.watsonx-text {
  color: #000;
  text-align: start;
}
.sign{
    align-items: flex-start;
}
}