    /* ===================================
       HEADER DESIGN
    =================================== */
    body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}
    .jos_header {
    background: rgb(252 158 27);
    padding: 0px 0;
    position: relative;
    z-index: 1000;
    position: sticky;
    top: 0;
}

    .jos_header_logo img {
      width: 130px;
      height: 48px;
      border-radius: 10px;
    }

    .jos_header .navbar-nav .nav-link {
      color: black !important;
      font-weight: 600;
      font-size: 14px;
      margin-right: 25px;
      transition: 0.3s;
    }

  /*  .jos_header .navbar-nav .nav-link:hover {
      color: white !important;
    }*/

    .jos_header_btns {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .jos_header_contact {
      background: transparent;
      color: #fff;
      border: 2px solid #fff;
      padding: 8px 20px;
      border-radius: 6px;
      font-weight: 600;
      transition: 0.3s;
    }

    .jos_header_contact:hover {
      background: #fff;
      color: #0b1b35;
    }

    .jos_header_login {
    background: #17094d;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}
    .jos_header_login:hover {
      background: #17034d;
    }

    /* ===================================
       DROPDOWN MENU DESIGN
    =================================== */
    .jos_header .dropdown-menu {
      width: 700px;
      background: #fff;
      border: none;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      padding: 0;
      overflow: hidden;
    }

    .jos_header_dropdown .row {
      margin: 0;
    }

    .jos_header_dropdown_left {
      background: #fff;
      padding: 20px;
    }

    .jos_header_dropdown_left h6 {
    font-size: 15px;
    font-weight: 700;
    color: #0b1b35;
    margin-bottom: 15px;
    margin-left: 40px;
}
    .jos_header_dropdown_item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 12px;
      border-radius: 8px;
      transition: 0.3s;
      text-decoration: none;
      color: #0b1b35;
    }

    .jos_header_dropdown_item:hover {
      background: #f3f6fa;
    }

    .jos_header_dropdown_icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      flex-shrink: 0;
    }

    .jos_header_dropdown_content h5 {
      font-size: 15px;
      font-weight: 700;
      margin: 0;
    }

    .jos_header_dropdown_content p {
      font-size: 13px;
      margin: 2px 0 0;
      color: #555;
    }

    /* Right side yellow card */
    .jos_header_dropdown_right {
    background: #fc9e1b;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .jos_header_dropdown_right img {
      width: 100%;
      border-radius: 6px;
      margin-bottom: 10px;
    }

    .jos_header_dropdown_right p {
      font-size: 15px;
      font-weight: 500;
      color: #0b1b35;
      flex-grow: 1;
    }

    .jos_header_dropdown_right button {
      background: #fff;
      color: #0b1b35;
      border: 1px solid #ccc;
      font-weight: 700;
      border-radius: 6px;
      padding: 8px 14px;
      width: fit-content;
    }
    /* ---------------- Enterprise Section CSS ---------------- */
    .enterprise-section {
      padding: 40px 0;
      background-color: #fff;
        color: #fff;
        z-index: 1;
        overflow: hidden;
          position: relative;
    }

    .enterprise-left h6 {
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 1px;
      color: white;
      font-size: 14px;
    }

    .enterprise-left h1 {
      font-size: 40px;
      font-weight: 700;
      line-height: 1.2;
      color: white;
      margin: 20px 0;
    }

    .enterprise-left p {
      font-size: 16px;
      color: white;
      margin-bottom: 10px;
      line-height: 1.6;
    }

    .enterprise-btn-primary {
      background-color: #17094d;
      color: #fff;
      border: none;
      padding: 14px 28px;
      font-weight: 600;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .enterprise-btn-primary:hover {
      background-color: #17044d;
    }

    .enterprise-btn-outline {
      background: transparent;
      border: 2px solid white;
      color: white;
      padding: 14px 28px;
      font-weight: 600;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .enterprise-btn-outline:hover {
      background-color: #17094d;
      color: #fff;
    }

    .enterprise-image {
      text-align: center;
    }

    .enterprise-image img {
      width: 100%;
      height: 500px;
    }
    /* ---------------- Jobs Logo Marquee Section ---------------- */
    .jobs_logo-marquee {
      background: #bdbdbd;
      padding: 12px 0;
      overflow: hidden;
      position: relative;
    }

    .jobs_logo-track {
      display: flex;
      align-items: center;
      gap: 100px;
      animation: jobs_logo_scroll 25s linear infinite;
      width: max-content;
    }

    .jobs_logo-inner {
      display: flex;
      align-items: center;
      gap: 100px;
    }

    .jobs_logo-item {
      flex: 0 0 auto;
    }

    .jobs_logo-item img {
      width: 160px;
      height: 60px;
      object-fit: contain;
     
      transition: all 0.4s ease;
      opacity: 0.9;
    }

    .jobs_logo-item img:hover {
      filter: grayscale(0%) brightness(1);
      transform: scale(1.08);
      opacity: 1;
    }

    @keyframes jobs_logo_scroll {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-50%);
      }
    }
   /* ---------------- Productivity at Scale Section ---------------- */
    .productivity-at-scale-section {
      background-color: #fffaf2;
      padding: 40px 0;
      font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }
 .productivity-at-scale-section2 {
      background-color: white;
      padding: 40px 0;
      font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    .productivity-at-scale-content h6 {
      font-size: 12px;
      font-weight: 700;
      color: #5a5a5a;
      text-transform: uppercase;
      margin-bottom: 10px;
      letter-spacing: 0.5px;
    }

    .productivity-at-scale-content h2 {
      font-size: 26px;
      font-weight: 700;
      color: #1c1c1c;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .productivity-at-scale-content ul {
      list-style: none;
      padding: 0;
      margin-bottom: 30px;
    }

    .productivity-at-scale-content ul li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 12px;
      color: #333;
      font-size: 16px;
    }

    .productivity-at-scale-content ul li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: #6f42c1;
      font-size: 20px;
      top: -3px;
    }

    .productivity-at-scale-content a {
      color: #6f42c1;
      text-decoration: none;
      font-weight: 500;
    }

    .productivity-at-scale-content a:hover {
      text-decoration: underline;
    }

    .productivity-at-scale-learn {
      color: #6f42c1;
      font-weight: 600;
      text-decoration: none;
    }

    .productivity-at-scale-quote {
      font-style: italic;
      font-size: 15px;
      color: #333;
      margin: 25px 0 10px;
      border-left: 3px solid #6f42c1;
      padding-left: 10px;
    }

    .productivity-at-scale-company {
      font-weight: 700;
      color: #002d72;
      font-size: 18px;
    }

    .productivity-at-scale-person {
      font-size: 13px;
      color: #555;
    }

    .productivity-at-scale-img {
      text-align: center;
    }

    .productivity-at-scale-img img {
    width: 100%;
    height: auto;
}
.productivity_logo img {
    width: 46px;
}.enterprise-level-section {
  padding: 40px 0;
  background: #fff;
  font-family: "Inter", sans-serif;
}

.enterprise-level-heading {
  font-size: 34px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.enterprise-level-link {
  color: #0b5cff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.enterprise-level-link:hover {
  text-decoration: underline;
}

.enterprise-level-features {
  margin-top: 50px;
}

.enterprise-level-box {
  text-align: left;
  padding: 25px;
}

.enterprise-level-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.enterprise-level-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.enterprise-level-text {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
.agentforce-in-slack-section {
  background: #eaf5ff;
  border-radius: 20px;
  padding: 40px 40px;
  margin: 50px 0;
  font-family: "Inter", sans-serif;
}

.agentforce-in-slack-label {
  font-size: 14px;
  font-weight: 600;
  color: #007aff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.agentforce-in-slack-label img {
  width: 60px;
  height: auto;
}

.agentforce-in-slack-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
}

.agentforce-in-slack-text {
  font-size: 18px;
  color: #2b2b2b;
  margin-bottom: 25px;
  line-height: 1.5;
}

.agentforce-in-slack-link {
  font-size: 18px;
  color: #0b63ff;
  text-decoration: none;
  font-weight: 500;
}

.agentforce-in-slack-link:hover {
  text-decoration: underline;
}

.agentforce-in-slack-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.15);
}
.solutions-section {
  background: #f6f1ea;
  padding: 40px 0;
  font-family: "Inter", sans-serif;
}
.solutions-section2 {
  background: white;
  padding: 40px 0;
  font-family: "Inter", sans-serif;
}

.solutions-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.solutions-desc {
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
  max-width: 500px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.solutions-box {
  background: #fff;
  border-radius: 4px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #eee;
  font-size: 18px;
  font-weight: 600;
  justify-content: space-between;
  transition: 0.3s;
}

.solutions-box:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.solutions-icon {
  font-size: 28px;
}

.solutions-arrow {
  font-size: 22px;
}

.solutions-link {
  font-size: 18px;
  color: #0f6cd7;
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
}

.solutions-right img {
  width: 90%;
  max-width: 450px;
  display: block;
  margin-left: auto;
}

/* Responsive */
@media(max-width:768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .solutions-right img {
    margin: 40px auto 0;
  }
}

/* ✅ Responsive */
@media(max-width: 768px) {
  .agentforce-in-slack-section {
    padding: 50px 20px;
  }

  .agentforce-in-slack-title {
    font-size: 28px;
  }

  .agentforce-in-slack-text {
    font-size: 16px;
  }

  .agentforce-in-slack-img {
    margin-top: 30px;
    text-align: center;
  }
}


/* ✅ Responsive */
@media(max-width: 768px) {
  .enterprise-level-heading {
    font-size: 26px;
  }
  
  .enterprise-level-box {
    text-align: center;
  }

  .enterprise-level-title {
    font-size: 18px;
  }
}

    /* Responsive adjustments */
    @media (max-width: 991px) {
      .productivity-at-scale-content {
        text-align: center;
      }

      .productivity-at-scale-content ul {
        display: inline-block;
        text-align: left;
      }

      .productivity-at-scale-img {
        margin-top: 30px;
      }
    }
    /* Responsive */
    @media (max-width: 768px) {
      .jobs_logo-item img {
        width: 120px;
        height: 50px;
      }
      .jobs_logo-inner {
        gap: 60px;
      }
    }
    /* Responsive adjustments */
    @media (max-width: 992px) {
      .enterprise-left {
        text-align: center;
      }
      .enterprise-left h1 {
        font-size: 36px;
      }
      .enterprise-left p {
        font-size: 16px;
      }
      .enterprise-btn-primary,
      .enterprise-btn-outline {
        width: 100%;
        margin-bottom: 10px;
      }
    }
    /* Hover show on desktop */
    @media (min-width: 992px) {
      .jos_header .dropdown:hover .dropdown-menu {
        display: block;
      }
    }

    /* Mobile styles */
    @media (max-width: 991px) {
      .jos_header .navbar-collapse {
        background: white;
        padding: 15px 10px;
        border-radius: 8px;
      }

      .jos_header_btns {
        flex-direction: column;
        align-items: stretch;
        margin-top: 10px;
      }

      .jos_header_contact,
      .jos_header_login {
        width: 100%;
        text-align: center;
      }

      .jos_header .dropdown-menu {
        width: 100%;
      }
    }