body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: #f4f4f4;
}

nav {
    background-color: #1a1a40;
    /* color: white;
    display: flex;
    justify-content: space-between;
    align-items: center; */
    /* padding: 12px 40px; */
    padding: 5px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}

#topfixed-image {
    height: 45px;
    display: block;
}

.content {
    min-width: 330px;
    padding-top: 100px;
}

h1 {
    color: #333;
    font-size: 32px;
    font-weight: bold;
}

.banner {
    background: #f8f9fa;
    padding: 50px 20px;
}


#tradeSelect {
  margin-bottom: 20px;
  /* width: 300px; */
  /* min-width: 180px; */
  /* max-width: 280px;              */
  padding: 8px 12px;
  font-size: 15px;
  border: 1px solid #bbb;
  border-radius: 4px;
  appearance: none;
  background-color: #fff;
  background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="8" viewBox="0 0 10 10" width="8" xmlns="http://www.w3.org/2000/svg"><polygon points="0,0 10,0 5,5"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 8px;
  padding-right: 35px;           /* arrow के लिए जगह */
  cursor: pointer;
  box-sizing: border-box;
  height: 43px;
  box-shadow: 0px 5px 7px 0px #bebfd9
}

#tradeSelect:hover {
  box-shadow: 0px 2px 4px black;
}

.start-btn {
  padding: 11px 10px;
  font-size: 17px;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.25s ease;
  white-space: nowrap;
  font-weight: bold;
}

.start-btn:hover {
  background-color: #218838;
  box-shadow: 0px 2px 4px black;
}





/* gagggggggaggagagga */
.trades {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.trades h2 {
    font-size: 28px;
    color: #2b5553;
    text-align: center;
    margin-bottom: 10px;
}

.trades p {
    font-size: 16px;
    color: #555555;
    text-align: center;
    margin-bottom: 30px;
}


.trade-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px; /* box ke beech space ke liye */
    justify-content: center; /* center align items */
    padding: 10px;
}

.trade-box {
    width: 200px;
    height: 160px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    box-shadow: 0px 2px 4px black;
    background: linear-gradient(to left, rgb(189, 255, 219),  rgb(157, 188, 255));
}

.trade-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to left, rgb(189, 255, 219),  rgb(157, 188, 255));
}

.trade-box img {
    max-width: 80px;
    max-height: 80px;
    margin-bottom: 5px;
}

.trade-box h3 {
    font-size: 15px;
    margin: 0;
    line-height: 1.2;
}

.trade-box p {
    display: block; /* chhoti box me description chhupaye */
}




/* shgkhigeriekg,uargkjawuhlkghsggajhrkgkhharsiug
ygvhargkwahgirhgn */

.aflitediv {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    padding: 20px;
    box-sizing: border-box;
}

.aflite_discl {
    font-size: 13px;
    text-align: justify;
}

.aflite_discl span {
    font-size: 15px;
    background-color: rgba(255, 0, 0, 0.356);
    text-decoration: underline;
}

.slider-container {
    max-width: 1000px;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    padding: 10px;
    text-align: center;
}

.book-subject {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.slide img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 10px;
}

.buy-btn {
    margin-top: 10px;
    display: inline-block;
    padding: 10px 20px;
    background: #ff9900;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.nav-left {
    left: 10px;
}

.nav-right {
    right: 10px;
}

.dots {
    text-align: center;
    margin-top: 15px;
}

.dot {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #333;
}




@media (min-width: 600px) {
    .slide {
        flex: 0 0 50%;
    }
}

@media (min-width: 900px) {
    .slide {
        flex: 0 0 33.3333%;
    }
}

@media (max-width: 1200px) {
    .nav-links a:nth-child(4) {
        display: none;
    }
}

@media (max-width: 1024px) {
    .nav-links a:nth-child(3) {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links a:nth-child(2) {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-links a:nth-child(1) {
        display: none;
    }
}




section.practical-trade-section {
      background-color: #fff;
      padding: 30px;
      max-width: 750px;
      margin: auto;
      border-radius: 12px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

    .practical-trade-section h2 {
      font-size: 26px;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    .practical-trade-section p {
      font-size: 16px;
      margin-bottom: 20px;
      color: #555;
    }

    select.trade-select {
      padding: 10px;
      width: 100%;
      max-width: 320px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 8px;
      margin-bottom: 25px;
    }

    .trade-question-box {
      display: none;
      padding: 20px;
      background-color: #f9f9f9;
      border-left: 5px solid #3498db;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .trade-question-box h3 {
      color: #2980b9;
      margin-top: 0;
    }

    .trade-question-box ul {
      padding-left: 20px;
    }

    .trade-question-box ul li {
      margin-bottom: 8px;
    }

    .trade-question-box ul li a {
      color: #007bff;
      text-decoration: none;
    }

    .trade-question-box ul li a:hover {
      text-decoration: underline;
    }








    
    
  #itiTradeExplorerContainer {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgb(0 0 0 / 0.1);
  }

  #itiTradeExplorerHeader h2 {
    font-size: 2.8rem;
    color: #004a99;
    margin-bottom: 8px;
    text-align: center;
  }
  #itiTradeExplorerHeader p.subtitle {
    font-size: 1.15rem;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
  }
  #itiTradeExplorerHeader p.description {
    font-size: 1rem;
    text-align: center;
    color: #555;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.5;
  }

  label.uniqueLabel {
    font-weight: 600;
    font-size: 1.1rem;
    color: #444;
    display: block;
    margin-bottom: 10px;
  }

  select.uniqueSelect {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1.8px solid #ddd;
    margin-bottom: 30px;
    cursor: pointer;
    transition: border-color 0.3s ease;
  }
  select.uniqueSelect:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 6px #007bffaa;
  }

  #syllabusDisplaySection {
    background: #e7f1ff;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: inset 0 0 8px #007bff33;
  }

  #syllabusDisplaySection h3 {
    color: #004a99;
    margin-top: 0;
    margin-bottom: 15px;
  }
  #syllabusDisplaySection ul {
    list-style: none;
    padding-left: 0;
  }
  #syllabusDisplaySection ul li {
    background: #fff;
    margin-bottom: 12px;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
    color: #007bff;
    cursor: pointer;
    transition: background-color 0.25s ease;
  }
  #syllabusDisplaySection ul li:hover {
    background-color: #cce4ff;
  }
  .noSelectionMessage {
    font-style: italic;
    color: #888;
    text-align: center;
    padding: 25px;
  }

  @media (max-width: 600px) {
    #itiTradeExplorerContainer {
      padding: 25px 20px;
    }
    #itiTradeExplorerHeader h1 {
      font-size: 2.2rem;
    }
  }








  
  .site-footer {
    background-color: #000; /* Pure Black */
    color: #ccc;
    padding: 30px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .footer-links {
    margin-bottom: 15px;
  }

  .footer-links a {
    color: #aaa;
    margin: 0 12px;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    font-size: 16px;
  }

  .footer-links a:hover {
    color: #fff;
    text-shadow: 0 0 5px #ffffffaa;
  }

  .footer-copy {
    font-size: 14px;
    color: #888;
  }

  /* Responsive tweak (optional) */
  @media (max-width: 600px) {
    .footer-links a {
      display: block;
      margin: 8px 0;
    }
  }