.navbar {
	margin: 48px 0% !important;
	background-color: transparent;
	border-bottom: 1px solid #ccc;
}
.banner_text_sec {
	padding: 6% 0% 5% 10%;
}
.banner_box {
	height: 45.5vw;
}
.banner_text3 {
	color: #006eaa;
	font-size: 1.9vw;
}
.ticketSystemImgBox {
	width:100%;
	float:left;
}
.rowSection {
	width: 100%;
	float: left;
	padding-top: 10%;
}
@media only screen and (max-width:768px) {
.navbar {
 background-color: #fff;
 border-bottom: 1px solid #ccc;
 margin: 0px 0% !important;
}
.banner_text_sec {
 padding: 0% 0% 5% 3%!important;
}
.banner_text3 {
 font-size: 2.8vw;
 padding-top: 1vw;
 line-height: 3.0vw;
}
.request-demo-section {
 margin-left:14px!important;
}
.ticketSystemImgBox {
 padding-top:30px;
 padding-bottom:30px;
}
.rowSection {
 width: 100%;
float: left;
padding-top: 10%;
border-top: 1px solid;
padding-bottom: 10%;
}
}
.title {
	font-size: 22px;
	font-weight: 400;
	/*display: flex;
	align-items: center;
	justify-content: center;*/
	margin-bottom: 40px;/*font-family: 'Poppins';*/
}
.features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px 50px;
      max-width: 1200px;
      margin: auto;
    }
    .feature {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .feature-icon {
      background: #ffcc00;
      color: #222;
      font-size: 18px;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      flex-shrink: 0;
    }
    .feature h3 {
      margin: 0;
      font-size: 16px;
      color: #000000;
    }
    .feature p {
      margin: 4px 0 0;
      font-size: 15px;
      color: #555;
      line-height: 1.5;
    }
	.highlight
	{
		color:#0b87b9;
	}

    /* Responsive */
    @media (max-width: 768px) {
      .features {
        grid-template-columns: 1fr;
		padding:10px;
      }
    }
	
	.faq-container {
  max-width: 1100px;
  margin: auto;
}

.faq-item {
  background: #e3e9f1d6;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: none;
  border: none;
  padding: 16px;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "▼"; 
  position: absolute;
  right: 20px;
  transition: transform 0.3s;
}

.faq-question.active::after {
  transform: rotate(-180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.4s ease;
  background-color: #f8f8f8;
}

.faq-answer p {
  margin: 15px 0;
  color: #333;
  font-size: 15px;
}
.faq-answer ul
{
	list-style-type:disc;
	font-size: 1.6rem;
}

@media (max-width: 600px) {
  .faq-question {
    font-size: 15px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}