* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif !important;
  color: #2c3e50;
  line-height: 1.6;
}

/* Color palette inspired by beminimalist.co */
:root {
  --primary: #7b18ff;
  --primary-dark: #ff7a5c;
  --secondary: #ff0047;
  --third-color: #f77f72;
  --text-dark: #010101;
  --text-light: #666;
  --bg-light: #fafafa;
  --white: #ffffff;
}

header {
  background: linear-gradient(90deg, #26025b 0%, #9a1cba 100%);
  top: 0;
  z-index: 100;
}

#navbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 50px !important;
  padding-right: 20px !important;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.hero {
  background: url("./assets/img/updatedherobg.png") no-repeat center center /
    cover;
  padding: 6rem 5% 4rem;
  text-align: center;
  height: 120vh;
}

.af-bg-image-gradient {
  position: relative;
  background: url("./assets/img/agentforce-about.png");
  /* CHANGE IMAGE PATH */

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 6rem 2rem;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-weight: 700;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.cta-button {
  background: var(--primary);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 155, 130, 0.3);
}

.section {
  padding: 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 4rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  transition: all 0.3s;
  border: 1px solid #f0f0f0;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.card p {
  color: var(--text-light);
  line-height: 1.7;
  text-align: justify;
}

.departments {
  background: #ffffff;
}

.industries {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.agentforce-section {
  background: linear-gradient(135deg, #f8f9fa 0%, var(--secondary) 100%);
  padding: 5rem 5%;
  text-align: center;
}

.agentforce-content {
  /* max-width: 1000px; */
  margin: 0 auto;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: left;
}

.benefit-card h4 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 5%;
  text-align: center;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .nav-links {
    display: none;
  }

  .section {
    padding: 3rem 5%;
  }
}
/* ===============================
       CUSTOM HEADER (BOOTSTRAP-SAFE)
    =============================== */

.cl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  position: relative;
  z-index: 1000;
  background: transparent;
}

/* Logo */
.cl-logo {
  display: flex;
  align-items: center;
}

.cl-logo img {
  width: 154px;
  max-height: 42px;
}

/* Hamburger */
.cl-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
}

.cl-menu-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  display: block;
}

/* Nav links (desktop) */
.cl-nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cl-nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

/* ===============================
       MOBILE NAV
    =============================== */
@media (max-width: 768px) {
  .cl-menu-toggle {
    display: flex;
  }

  .cl-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    gap: 1.2rem;
    padding: 2rem 5%;

    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;

    transition:
      opacity 0.35s ease,
      transform 0.35s ease;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  }

  .cl-nav-links.cl-nav-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .cl-nav-links li {
    text-align: left;
  }

  .cl-nav-links a {
    display: block;
    width: 100%;
    color: #000;
  }
}
@media (min-width: 1500px) {
  .cl-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 15%;
    position: relative;
    z-index: 1000;
    background: transparent;
  }
}
