*{
  user-select: none;
}
/* Custom container max width */
.custom-container {
  max-width: 1200px;
}
nav a b{
    font-size:24px;
}
/* Logo size */
.logo-img {
  height: 40px;
  width: auto;
  padding-right:5px;
}

/* Navbar link hover */
.navbar-nav .nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #007bff;
}

/* Banner 1 Background */

.banner1 {
  position: relative;
  width: 100%;
  overflow: hidden;
}




/* Feature list */
.feature-list {
  list-style: none;
  display: flex;
  padding: 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.feature-list img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.feature-list span {
  font-weight: bold;
  margin-right: 5px;
}

.info-section h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: bold;
}

.info-section p {
  text-align: justify;
  font-size: 16px;
  color: #444;
}

.featured-section {
  padding: 20px 0;
  background: #f9f9f9;
}

.featured-heading {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

.featured-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.featured-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.featured-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.featured-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.featured-item p {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1200px) {
  .featured-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .featured-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .featured-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .featured-row {
    grid-template-columns: 1fr;
  }
}


.screenshot-section {
    padding: 20px 0;
}

.screenshot-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

/*.screenshots-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}*/

.screenshot-box {
  margin-bottom: 20px;
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    transition: transform 0.3s ease;
}

.screenshot-box:hover {
    transform: translateY(-5px);
}

.screenshot-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.screenshot-desc {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
}

.screenshot-box img {
    max-width: 100%;
    border-radius: 10px;
}

.faqs-section {
  padding: 20px;
  background: #f9f9f9;
}

.faqs-section .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #222;
}

.faqs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.faq-item .faq-question {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.faq-item .faq-answer {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  color: #555;
}


.site-footer {
  background-color: #f44336; /* Red strip */
  color: #fff;
  text-align: center;
  font-size: 14px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-top {
  padding: 12px 0;
}

.footer-top p {
  margin: 8px 0 0;
}

.footer-bottom {
  background-color: #f5f5f5;
  color: #333;
  padding: 10px 0;
}


.breadcrumb-section {
  background: #e9ecef; /* apni marzi ka color */
  padding: 50px;
}

.breadcrumb {
  font-size: 18px;
  font-weight: 500;
}

.breadcrumb a {
  text-decoration: none;
  color: #007bff;
}

.breadcrumb a:hover {
  text-decoration: underline;
}


.download-custom-section {
  background-color: #f9f9f9; /* light grey background */
  border-radius: 10px;
  padding: 40px 20px;
}


.download-custom-section .section-para {
  font-size: 1.1rem;
  color: #555;
}

.download-custom-section .justified-text {
  text-align: justify;
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
}
