/* ===============================
   RETAIL ANALYTICS BANNER
================================ */

.retail-banner {
  height: 420px;
  background: url("../images/retail-banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.banner-overlay h1 {
  font-size: 42px;
  color: white;
  margin-bottom: 10px;
}

.banner-overlay p {
  color: #ddd;
  font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .banner-overlay h1 {
    font-size: 26px;
    padding: 0 15px;
  }
}


/* ==============================
   TRAINING PAGE SECTION DARK MODE
================================= */

.training-section {
  background: #000;
  padding: 70px 0;
  color: white;
}

.training-wrapper {
  width: 90%;
  max-width: 1250px;
  margin: auto;
  display: flex;
  gap: 40px;
}

/* Left Content Box */
.training-left {
  flex: 2;
}

/* Tabs */
.tab-buttons {
  display: flex;
}

.tab-buttons button {
  padding: 14px 35px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  background: #222;
  color: white;
}

.tab-buttons button.active {
  background: orange;
  color: black;
}

/* Tab Content */
.tab-content {
  background: #111;
  padding: 35px;
  border-radius: 8px;
  margin-top: -1px;
}

.tab-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: white;
}

.tab-content p {
  color: #ccc;
  line-height: 1.7;
}

.tab-content ul {
  margin-top: 15px;
  padding-left: 20px;
}

.tab-content ul li {
  margin-bottom: 10px;
  color: #bbb;
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid #333;
  padding: 18px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.faq-answer {
  display: none;
  margin-top: 12px;
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.arrow {
  transition: 0.3s;
}

/* Right Sidebar */
.training-right {
  flex: 1;
}

/* Video Box */
.video-box iframe {
  width: 100%;
  height: 220px;
  border-radius: 6px;
}

/* Buttons */
.sidebar-buttons {
  background: #111;
  padding: 25px;
  text-align: center;
  margin-top: 20px;
  border-radius: 8px;
}

.sidebar-buttons a {
  display: block;
  padding: 14px;
  margin: 12px 0;
  font-size: 15px;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;

  /* ✅ ADD THIS */
  color: black;
}

.call-btn {
  background: orange;
  color: black;
}

.contact-btn {
  border: 2px solid orange;
  color: orange;
}

.contact-btn:hover {
  background: orange;
  color: black;
}

/* Social Icons */
.social-box {
  margin-top: 25px;
  padding: 20px;
  background: #111;
  border-radius: 8px;
  text-align: center;
}

.social-box a {
  margin: 0 10px;
  font-size: 18px;
  color: orange;
  transition: 0.3s;
}

.social-box a:hover {
  color: white;
}

/* Sidebar Form Box */
.form-box {
  margin-top: 25px;
  padding: 25px;
  background: #111;
  border-radius: 8px;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  background: #222;
  color: white;
}

.form-box button {
  width: 100%;
  padding: 14px;
  background: orange;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.form-box button:hover {
  background: white;
  color: black;
}

/* Other Courses Box */
.other-courses {
  margin-top: 25px;
  padding: 25px;
  background: #111;
  border-radius: 8px;
}

.other-courses h4 {
  margin-bottom: 15px;
  color: white;
}

.other-courses ul {
  list-style: none;
  padding: 0;
}

.other-courses ul li {
  padding: 10px 0;
  border-bottom: 1px solid #222;
  color: #bbb;
}

.other-courses ul li:last-child {
  border-bottom: none;
}





/* ==============================
   CTA CALL SECTION DARK MODE
================================= */

.cta-call {
  padding: 60px 0;
  background: #000;
}

.cta-box {
  width: 90%;
  max-width: 1250px;
  margin: auto;
  background: #0b1c63;
  border-radius: 10px;
  padding: 35px 50px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-text h2 {
  color: white;
  font-size: 26px;
  font-weight: 600;
}

.cta-btn a {
  background: orange;
  color: black;
  padding: 14px 35px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.cta-btn a:hover {
  background: white;
  color: black;
}

/* Mobile Responsive */
@media(max-width:768px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}