/* General styles for the IP PBX section */
body {
  font: 1rem/1.7 "Inter", sans-serif;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.why-ip-pbx-section {
    background: #ffffff;
    padding: 48px 0 56px 0;
}
/* Card grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual card */
.feature-card {
    background: #fff;
    border: 2px solid #1d5376;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(50, 159, 223, 0.06);
    padding: 32px 22px 26px 22px;
    text-align: center;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
    box-shadow: 0 4px 24px rgba(245, 183, 69, 0.13);
    border-color: #ff8001;
}

/* Icon styling */
.feature-card .icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1d5376;
    border-radius: 50%;
}

.feature-card .icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

/* Card title */
.feature-card h3 {
    font-size: 1.18rem;
    font-weight: 600;
    color: #16181B;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* Card description */
.feature-card p {
    color: #494B5B;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .card-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-ip-pbx-section {
        padding: 28px 0 32px 0;
    }
}

/*eight card */
.eight-card-section {
    background: #ffffff;
    padding: 48px 0 56px 0;
}
/* Card grid */
.eight-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual card */
.eight-feature-card {
    background: #fff;
    border: 2px solid #1d5376;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(50, 159, 223, 0.06);
    padding: 32px 22px 26px 22px;
    text-align: center;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.eight-feature-card:hover {
    box-shadow: 0 4px 24px rgba(245, 183, 69, 0.13);
    border-color: #ff8001;
}

/* Icon styling */
.eight-feature-card .icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1d5376;
    border-radius: 50%;
}

.eight-feature-card .icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

/* Card title */
.eight-feature-card h3 {
    font-size: 1.18rem;
    font-weight: 600;
    color: #16181B;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* Card description */
.eight-feature-card p {
    color: #494B5B;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .eight-card-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .eight-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .eight-card-section {
        padding: 28px 0 32px 0;
    }
}

/* Two view Card */
.two-card-section {
    background: #ffffff;
    padding: 48px 0 56px 0;
}
/* Card grid */
.two-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual card */
.two-feature-card {
    background: #fff;
    border: 2px solid #1d5376;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(50, 159, 223, 0.06);
    padding: 32px 22px 26px 22px;
    text-align: center;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.two-feature-card:hover {
    box-shadow: 0 4px 24px rgba(245, 183, 69, 0.13);
    border-color: #ff8001;
}

/* Icon styling */
.two-feature-card .icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1d5376;
    border-radius: 50%;
}

.two-feature-card .icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

/* Card title */
.two-feature-card h3 {
    font-size: 1.18rem;
    font-weight: 600;
    color: #16181B;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* Card description */
.two-feature-card p {
    color: #494B5B;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .two-card-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .two-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .two-card-section {
        padding: 28px 0 32px 0;
    }
}


/* Extra CSS if asttecs.css does not cover the layout */
.key-features-section {
  padding: 40px 0;
}

.key-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.key-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.feature-icon {
  min-width: 56px;
  min-height: 56px;
  color: #1d5376;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  margin-top: 4px;
}

.feature-title {
  color: #1d5376;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-desc {
  color: #494B5B;
}

@media (max-width: 900px) {
  .key-features-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Extra CSS for table style if not present in asttecs.css */
.technical-spec-section {
  padding: 40px 0;
}

.table-responsive {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.spec-table th,
.spec-table td {
  border: 1px solid #e0e0e0;
  padding: 16px 18px;
  text-align: left;
  font-size: 1rem;
}

.spec-table th {
  background: #f5f5f5;
  font-weight: 700;
}

.spec-table tr:not(:last-child) td {
  border-bottom: 1px solid #e0e0e0;
}

@media (max-width: 700px) {
  .spec-table th,
  .spec-table td {
    padding: 10px 8px;
    font-size: 0.95rem;
  }
}

/* Extra CSS for AI Voicebot Industries section */
.ai-voicebot-industries {
  padding: 40px 0;
}

.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.industry-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1.5px solid #1d5376;
  border-radius: 6px;
  background: #fff;
  padding: 18px 18px 12px 18px;
  min-height: 170px;
}
.industry-icon {
  font-size: 2.2rem;
  color: #1d5376;
  margin-top: 4px;
  min-width: 38px;
}
.industry-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #16181B;
}
.industry-card ul {
  margin: 0;
  padding-left: 18px;
  color: #494B5B;
  font-size: 1rem;
}
.industry-card li {
  margin-bottom: 4px;
}
@media (max-width: 900px) {
  .industry-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/*call center solutions*/
.key-offerings-section {
  padding: 40px 0;
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.offering-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: none;
  border: none;
  padding: 0;
}
.offering-icon {
  font-size: 2.4rem;
  color: #1d5376;
  min-width: 44px;
  margin-top: 4px;
}
.offering-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #16181B;
}
.offering-card p {
  color: #494B5B;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 1100px) {
  .offerings-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .offerings-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/*voice logger solutions*/
.key-offerings-two-section {
  padding: 40px 0;
}
.offerings-two-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  margin: 0 auto;
}
.offering-two-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: none;
  border: none;
  padding: 0;
}
.offering-two-icon {
  font-size: 2.4rem;
  color: #1d5376;
  min-width: 44px;
  margin-top: 4px;
}
.offering-two-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #16181B;
}
.offering-two-card p {
  color: #494B5B;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 1100px) {
  .offerings-two-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .offerings-two-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}