* {
  box-sizing: border-box;
  font-family:Georgia, 'Times New Roman', Times, serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  color: #333;
  line-height: 1.6;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px; /* Kept increased horizontal padding */
  background: #f5f7fa;
  border-bottom: 1px solid #e2e2e2;
}

.logo img {
  height: 40px;
  width: auto;
}

.header nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  cursor: pointer;
}

.header nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  padding: 8px 12px; /* Added padding for hover background */
  border-radius: 4px; /* Slightly rounded corners for hover */
  transition: background-color 0.3s ease; /* Smooth transition for hover */
}

.header nav a:hover {
  color: #2563eb; /* Optional: Change text color on hover for better contrast */
}

.phone {
  color: #2563eb;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
}
.phone a {
font-family:'Times New Roman', Times, serif;
color: #2563eb; 
text-decoration: none;
}
a {
font-family:'Times New Roman', Times, serif;
color: #2563eb; 
text-decoration: none;
}

.hero {
  display: flex;
  justify-content: space-between;
  padding: 60px 60px; /* Kept increased horizontal padding */
  gap: 40px;
}

.content {
  max-width: 50%;
  flex-shrink: 0;
}

.badge {
  background-color: #ffe3a3;
  padding: 4px 12px;
  border-radius: 8px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 14px;
  color: #a05c00;
}

h1 {
  font-size: 36px;
  font-weight: 800;
  color: #080707;
  margin-bottom: 20px;
  line-height: 1.2;
}

h1 mark {
  background: none;
  color: #2563eb;
  font-weight: inherit;
  border-bottom: 3px solid #ffa500;
}

.content p {
  font-size: 16px;
  margin-bottom: 20px;
  max-width: 600px;
  color: #555;
}

.demo-btn {
  background: #2563eb; /* Red color from the image */
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.demo-btn:hover {
  background-color: #2563eb; /* Slightly darker red on hover */
}

.certs {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.certs img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  padding: 6px;
}

.form-box {
background: #f1f0f0;
padding: 30px;
border-radius: 10px;
max-width: 450px;
width: 100%;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.form-box h3 {
font-size: 18px;
margin-bottom: 20px;
text-align: center;
color: #222;
font-weight: 600;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
.otp-input {
/* width: 100%; */
padding: 12px;
/* margin: 10px 0; */
border-radius: 6px;
border: 1px solid #ddd;
font-size: 15px;
}

.form-row {
display: flex;
flex-direction: column;
gap: 10px;
margin: 10px 0;
}

.phone-field {
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
margin: 10px 0;
}

.country-code {
padding: 12px;
border: 1px solid #ddd;
border-radius: 6px;
background: #f5f7fa;
font-size: 15px;
flex-shrink: 0;
}

.phone-number {
flex-grow: 1;
min-width: 120px;
}

.otp-send,
.otp-verify-btn {
background-color: #2563eb;
color: white;
border: none;
padding: 10px 12px;
border-radius: 6px;
cursor: pointer;
font-weight: 600;
font-size: 11px;
transition: background-color 0.3s ease;
}

.otp-send:hover,
.otp-verify-btn:hover {
background-color: #1b53cd;
}

.submit-btn {
width: 100%;
padding: 14px;
background: #2563eb;
color: white;
border: none;
border-radius: 6px;
font-size: 17px;
font-weight: 600;
margin-top: 20px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.submit-btn:hover {
background-color: #1b53cd;
}

.otp-row {
display: flex;
gap: 4px;
align-items: center;
margin: 10px 0;
flex-wrap: wrap;
}


/* Responsive adjustments */
@media (max-width: 992px) {
  .hero {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 60px 40px; /* Adjust padding for smaller screens */
  }

  .content {
      max-width: 100%;
  }

  h1 {
      font-size: 30px;
  }

  .certs {
      justify-content: center;
  }

  .form-box {
      max-width: 100%;
  }

  .header {
      padding: 20px 40px; /* Adjust header padding for smaller screens */
  }
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: relative;
}

.logo img {
  height: 40px;
}

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

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a:focus {
  color: #2563eb;
  outline: none;
}

.phone {
  font-weight: 600;
  font-size: 0.8rem;
  color: #2563eb;
  white-space: nowrap;
}

/* Hide checkbox */
#menu-toggle {
  display: none;
}

/* Hamburger button styles */
.menu-btn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #007BFF;
  user-select: none;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    flex-wrap: wrap;
  }

  /* Show hamburger */
  .menu-btn {
    display: block;
    order: 3;
  }

  .logo {
    order: 1;
    flex: 1 1 auto;
  }

  .phone {
    order: 2;
    flex: 1 1 auto;
    text-align: right;
  }

  nav {
    order: 4;
    width: 100%;
    display: none;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #eee;
  }

  /* Show nav when checkbox checked */
  #menu-toggle:checked + .menu-btn + nav {
    display: block;
  }
}
@media (max-width: 768px) {
  .header {
      /* flex-direction: column; */
      /* gap: 15px; */
      padding: 15px 20px;
  }

  .header nav ul {
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
  }

  .hero {
      padding: 40px 20px;
  }

  h1 {
      font-size: 26px;
  }

  
}

@media (max-width: 480px) {
  h1 {
      font-size: 22px;
  }

  .content p {
      font-size: 15px;
  }

  .form-box {
      padding: 20px;
  }

  .phone-field {
    display: grid;
      /* flex-direction: column; */
      /* align-items: flex-start; */
      gap: 5px;
  }

  .phone-field span {
      /* width: 100%; */
      text-align: center;
  }
  
}
/* Trusted Companies */
.trusted-logos-section {
  text-align: center;
  padding: 2rem 1rem;
}

.trust-text {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.trust-text span {
  color: #2d3eaf;
  font-weight: bold;
}

/* Scrolling Logo Carousel */
.logo-carousel {
  overflow: hidden;
  position: relative;
  height: 60px;
  background: #fff;
}

.logo-track {
  display: flex;
  width: calc(100% * 2);
  animation: scroll 20s linear infinite;
}

.logo-track img {
  height: 50px;
  margin: 0 20px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Feature Section */
.features-section {
  text-align: center;
  padding: 3rem 1rem;
}

.features-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  /* background: #bebfc1; */
  color: white;
  /* padding: 3rem 2rem; */
  border-radius: 10px;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.features-section {
  /* background-color: #f0f5ff; */
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.features-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
  color: #05060d;
  letter-spacing: 0.5px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  /* background: rgba(255, 255, 255, 0.05); */
  border: 1px solid rgba(0, 0, 0, 0.427);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); */
}



.feature-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: #1a73e8;
}

.feature-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #373535;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 16px;
  /* background: linear-gradient(135deg, #3f6ad8, #ffb947); */
  z-index: -1;
  opacity: 0.1;
}
@media (max-width: 480px) {
  .features-section h2,
  .why-teleforce h2 {
    font-size: 1.5rem;
  }

  .feature h3,
  .why-item h3 {
    font-size: 1rem;
  }

  .feature p,
  .why-item p {
    font-size: 0.9rem;
  }
}

.why-teleforce {
  text-align: center;
  padding: 3rem 1rem;
}

.why-teleforce h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #020202;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.why-item h3 {
  color: #1a73e8;
  margin-bottom: 0.5rem;
}

.why-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
.cloud-telephony-section {
  padding: 5rem 5rem;
  text-align: center;

  

  h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #0c0c0c;
  }

  p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #030303;
  }
}
.integrations-section {
  font-family: sans-serif;
  color: #333;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.integrations-section h2 {
  font-size: 2.5em;
  color: #020303; /* A shade of blue, common for tech */
  margin-bottom: 15px;
  text-align: center;
}

.integrations-section p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
  color: #555;
}

.integration-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h3 {
  font-size: 1.5em;
  color: #1a73e8;
  margin-bottom: 10px;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card li {
  font-size: 1em;
  margin-bottom: 8px;
  color: #666;
  display: flex;
  align-items: flex-start;
}

.card li:last-child {
  margin-bottom: 0;
}

.card li::before {
  content: '✓'; /* Checkmark icon */
  color: #28a745; /* Green color for checkmark */
  margin-right: 8px;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .integrations-section h2 {
    font-size: 2em;
  }

  .integrations-section p {
    font-size: 1em;
  }

  .card {
    min-width: unset;
    width: 100%;
    max-width: 400px; /* Limit width on smaller screens */
  }
}

@media (max-width: 480px) {
  .integrations-section {
    padding: 15px;
  }

  .integrations-section h2 {
    font-size: 1.8em;
  }
}
.teleforce-center-section {
  max-width: 960px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  text-align: center;
}

h1 {
  color: #030303;
  font-size: 2.5em;
  margin-bottom: 20px;
}

p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
}

.center-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.center-feature-item {
  background-color: #e8f0fe;
  color: #1a73e8;
  padding: 15px 25px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, transform 0.3s ease;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2em;
  }

  p {
    font-size: 1em;
  }

  .teleforce-center-section {
    margin: 20px;
    padding: 15px;
  }

  .center-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .center-feature-item {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8em;
  }

  .center-feature-item {
    font-size: 0.9em;
    padding: 12px 20px;
  }
}
.benefits-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.content-left {
  flex: 1;
  min-width: 300px;
  position: relative; /* For the small yellow shapes */
}

.content-left img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px; /* Optional: subtle rounded corners for images */
}

.yellow-shape-top-left {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  background-color: #007bff; /* Yellow color */
  border-radius: 50%;
  opacity: 0.7;
  animation: bounce 2s infinite ease-in-out;
}

.yellow-shape-middle {
  position: absolute;
  top: 100px;
  left: 20px;
  width: 25px;
  height: 25px;
  background-color: #007bff;
  border-radius: 50%;
  opacity: 0.6;
  animation: bounce 2.5s infinite ease-in-out reverse;
}

@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

.content-right {
  flex: 1;
  min-width: 300px;
}

.content-right h3 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 10px;
}

.content-right p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 25px; /* Spacing between benefit points */
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
  position: relative; /* For the wavy yellow line */
}

.section-header h1 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.1em;
  color: #555;
}

.wavy-line {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px; /* Adjust as needed */
  height: 30px; /* Adjust as needed */
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 50"><path fill="%23FFD700" d="M0,25 Q25,0 50,25 T100,25 V50 H0 Z" /></svg>') no-repeat center center;
  background-size: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .benefits-section {
      flex-direction: column;
      align-items: center;
  }

  .content-left, .content-right {
      min-width: unset;
      width: 100%;
  }

  .section-header h1 {
      font-size: 2em;
  }

  .section-header p {
      font-size: 1em;
  }
  
  .yellow-shape-top-left, .yellow-shape-middle {
      display: none; /* Hide animated shapes on smaller screens */
  }
}.cta {
  text-align: center;
  padding: 3rem 1rem;
  margin-top: 3rem;
  background: #fff;
  border-radius: 1rem;
}

.cta a {
  background: #2563eb;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  margin: 0.5rem;
  display: inline-block;
}
/* h1 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 2.5rem;
} */

.subtitle {
  text-align: center;
  color: #7f8c8d;
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.toggle-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
}

.toggle-input {
  display: none;
}

.toggle-label {
  display: flex;
  background: #f5f5f5;
  border-radius: 30px;
  padding: 5px;
  cursor: pointer;
}

.toggle-option {
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.toggle-option.monthly {
  color: white;
  background: #2563eb;
}

.toggle-input:checked + .toggle-label .monthly {
  background: transparent;
  color: inherit;
}

.toggle-input:checked + .toggle-label .yearly {
  background: #2563eb;
  color: white;
}

.pricing-head{
  text-align: center;
  padding: 20px;
}
.pricing-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.pricing-plan {
  flex: 1;
  min-width: 250px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  /* transition: transform 0.3s ease; */
}



.plan-title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: bold;
}

.plan-price {
  font-size: 1.8rem;
  color: #002983;
  margin-bottom: 15px;
}

.price-note {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-bottom: 15px;
}

.plan-description {
  margin-bottom: 25px;
  color: #555;
}

.plan-features {
  margin-bottom: 25px;
  padding-left: 20px;
}

.plan-features li {
  margin-bottom: 8px;
  list-style-type: disc;
}

.signup-button {
  display: inline-block;
  background-color: #2563eb;
  color: white;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  /* transition: background-color 0.3s ease; */
}

.signup-button:hover {
  background-color: #1d57d4;
}

.monthly-price,
.yearly-price,
.yearly-note {
  display: none;
}

/* Default Monthly Display */
.monthly-price {
  display: block;
}

#yearly-toggle:checked ~ .pricing-container .monthly-price {
  display: none;
}

#yearly-toggle:checked ~ .pricing-container .yearly-price,
#yearly-toggle:checked ~ .pricing-container .yearly-note {
  display: block;
}
.site-footer {
  background-color: #eff6ff;
  padding: 20px 0;
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  color: #1d1d1f;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-container p {
  margin: 0;
}


/* --- Notification Styles --- */
.notification {
position: fixed; /* Or 'absolute' if it should be relative to a parent */
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background-color: #333; /* Dark background */
color: #fff; /* White text */
padding: 12px 20px;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
z-index: 1000;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
display: flex; /* Use flexbox for alignment */
align-items: center; /* Vertically align items */
gap: 10px; /* Space between icon and message */
min-width: 280px; /* Ensure it's not too narrow */
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Professional font */
}

.notification.show {
opacity: 1;
visibility: visible;
transform: translateX(-50%) translateY(0); /* Subtle slide-up effect */
}

.notification.hidden {
opacity: 0;
visibility: hidden;
transform: translateX(-50%) translateY(20px); /* Slide down when hidden */
}

.notification-content {
display: flex;
align-items: center;
gap: 10px;
}

.notification-icon {
font-size: 1.2em;
line-height: 1;
display: flex; /* To center the icon properly */
align-items: center;
justify-content: center;
}

.notification-message {
font-size: 1em;
font-weight: 500;
}

/* Specific styles for different notification types */
.notification.success {
background-color: #4CAF50; /* Green for success */
border-left: 5px solid #388E3C; /* Darker green border */
}

.notification.error {
background-color: #f44336; /* Red for error */
border-left: 5px solid #D32F2F; /* Darker red border */
}

.notification.info {
background-color: #2196F3; /* Blue for info */
border-left: 5px solid #1976D2; /* Darker blue border */
}

/* Optional: Add a subtle animation on entry */
@keyframes fadeInSlideUp {
from {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
}
to {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
}

.notification.show {
animation: fadeInSlideUp 0.3s ease-out forwards;
}

/* Optional: Add a subtle animation on exit */
@keyframes fadeOutSlideDown {
from {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
to {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
}
}

.notification.hidden {
animation: fadeOutSlideDown 0.3s ease-in forwards;
}
/* Make the 5th card span full width on desktop */
@media (min-width: 700px) {
  .challenge-item:last-child {
    grid-column: span 2;
  }
}
/* CSS for the highlighted state */
.form-box.highlighted-form {
border-color: #007bff; /* A nice blue border */
box-shadow: 0 0 20px rgba(0, 123, 255, 0.7); /* A stronger, glowing blue shadow */
background-color: #e6f7ff; /* A very light blue background */
transform: scale(1.02); /* Slightly grow the box to make it pop */
}

/* Optional: Keyframe animation for a subtle pulse effect */
@keyframes pulseHighlight {
0% {
box-shadow: 0 0 10px rgba(0, 123, 255, 0.4);
}
50% {
box-shadow: 0 0 30px rgba(0, 123, 255, 0.9);
}
100% {
box-shadow: 0 0 10px rgba(0, 123, 255, 0.4);
}
}

/* Apply the pulse animation when highlighted (optional) */
.form-box.highlighted-form {
animation: pulseHighlight 1.8s infinite alternate; /* 1.8s duration, repeats, alternates direction */
}
.accordion-section {
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fff;
}
.accordion-header {
  background-color: #2563eb;
  color: white;
  cursor: pointer;
  padding: 12px 20px;
  font-weight: bold;
  font-size: 1.1rem;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-header:hover {
  background-color: #0056b3;
}
.accordion-header .toggle-icon {
  font-size: 1.5rem;
  line-height: 1;
  width: 25px;
  text-align: center;
  user-select: none;
}
.accordion-content {
  display: none;
  overflow-x: auto;
  border-top: 1px solid #ccc;
}
table {
  border-collapse: collapse;
  width: 100%;
  min-width: 700px;
}
th, td {
  padding: 10px 12px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: middle;
}
th {
  background: #f0f0f0;
}
/* Plan name & price column bold */
th.plan-header {
  background: #e9ecef;
  font-weight: 700;
  text-align: center;
}
/* Responsive tip: horizontal scroll on small screens */
@media (max-width: 768px) {
  .accordion-content {
    overflow-x: scroll;
  }
}
.price-feature{
  margin: 50px;
}
.price-feature h2{
text-align: center;
margin: 30px;  
}