/* =========================
   ✅ FINAL MOBILE MENU STYLE (Altireon)
   ========================= */
@media (max-width: 991px) {

  /* Hide old mega menu safely */
  .mobile-menu .rts-mega-menu {
    display: none !important;
    padding-left: 0 !important;
  }

  /* NEW mobile navigation structure */
  .mainmenu-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav-item > a {
    display: block;
    color: #fff !important;
    font-weight: 500;
    padding: 12px 18px;
    text-decoration: none;
  }

  .mobile-nav-item > a:hover {
    color: var(--color-primary, #26a9e0) !important;
  }

  /* Dropdown (mega + sub) hidden by default */
  .mobile-mega-menu,
  .mobile-submenu {
    display: none !important;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
  }

  /* Columns inside Services mega menu */
  .mobile-mega-col {
    margin-bottom: 15px;
  }

  .mobile-mega-col a {
    display: block;
    color: #ccc;
    padding: 5px 0;
    font-size: 14px;
    text-decoration: none;
  }

  .mobile-mega-col a:hover {
    color: #26a9e0;
  }

  .mobile-mega-head {
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
  }

  /* Regular submenus (Investment, AI Career Programs) */
  .mobile-submenu {
    padding-left: 20px;
  }

  .mobile-submenu li a {
    color: #ccc;
    font-size: 14px;
    display: block;
    padding: 6px 0;
  }

  /* Open state */
  .mobile-nav-item.open > .mobile-mega-menu,
  .mobile-nav-item.open > .mobile-submenu {
    display: block !important;
  }
}
/* =======================
   Mobile Fix: Mission & Vision Points
   ======================= */
@media (max-width: 767px) {

  /* Keep line spacing and alignment clean */
  .business-goal-area-2 .disc {
    white-space: normal !important;
    line-height: 28px !important;
    font-size: 15.5px !important;
    color: #444 !important;
    text-align: left !important;
  }

  /* Add spacing between bullet points */
  .business-goal-area-2 .disc br {
    display: block !important;
    content: "" !important;
    margin-bottom: 6px !important;
  }

  /* Slight left padding for bullets */
  .business-goal-area-2 .information {
    padding-left: 6px !important;
  }

  /* Ensure stars (★) or emojis stay inline properly */
  .business-goal-area-2 .disc::first-line {
    text-indent: 0 !important;
  }

  /* Maintain heading alignment */
  .business-goal-area-2 h2.title {
    font-size: 24px !important;
    margin-bottom: 18px !important;
    text-align: left !important;
  }

}
/* =============================
   Mobile Accordion Styles
   ============================= */
@media (max-width: 991px) {

  /* Hide nested links by default */
  .mobile-mega-col a {
    display: none;
  }

  /* When column is open, show its links */
  .mobile-mega-col.open a {
    display: block;
    padding: 6px 0;
    color: #ccc;
    font-size: 14px;
  }

  /* Make headers look clickable */
  .mobile-mega-head {
    cursor: pointer;
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
  }

  /* Small caret indicator */
  .mobile-mega-head::after {
    content: "\f078"; /* Font Awesome down arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 10px;
    transition: transform 0.3s ease;
  }

  /* Rotate caret when open */
  .mobile-mega-col.open .mobile-mega-head::after {
    transform: rotate(180deg);
  }

  /* Add smooth reveal animation */
  .mobile-mega-menu,
  .mobile-submenu {
    transition: all 0.3s ease;
  }
}
/* ---------------------------------------------------
   Altireon | Privacy Policy & Legal Pages Styling (px version)
   --------------------------------------------------- */

.rts-service-details-area-main-bottom {
  background-color: #f9fafc;
  color: #1a1a1a;
  line-height: 1.9;
  font-family: "Inter", "Poppins", sans-serif;
  padding-top: 70px;
  padding-bottom: 70px;
}

/* Major Title */
.rts-service-details-area-main-bottom .title {
  font-size: 36px;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 24px;
}

/* Section Headings */
.rts-service-details-area-main-bottom h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0a0a0a;
  margin-top: 40px;
  margin-bottom: 20px;
}

.rts-service-details-area-main-bottom h5 {
  color: #0056b3;
  font-size: 22px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
}

/* Paragraphs */
.rts-service-details-area-main-bottom p {
  font-size: 18px;
  color: #1f1f1f;
  margin-bottom: 20px;
}

/* Lists */
.rts-service-details-area-main-bottom ul {
  padding-left: 28px;
  margin-bottom: 20px;
}

.rts-service-details-area-main-bottom ul li {
  font-size: 18px;
  color: #2a2a2a;
  margin-bottom: 10px;
  list-style: disc;
}

/* Links */
.rts-service-details-area-main-bottom a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}
.rts-service-details-area-main-bottom a:hover {
  text-decoration: underline;
}

/* Divider line */
.rts-service-details-area-main-bottom hr {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 35px 0;
}

/* Footer text inside section */
.rts-service-details-area-main-bottom .text-center {
  font-size: 17px;
  color: #444;
  margin-top: 32px;
}

/* Strong emphasis */
.rts-service-details-area-main-bottom strong {
  color: #000;
}

/* Responsive Typography */
@media (max-width: 991px) {
  .rts-service-details-area-main-bottom {
    padding: 50px 25px;
  }

  .rts-service-details-area-main-bottom .title {
    font-size: 30px;
  }

  .rts-service-details-area-main-bottom h2 {
    font-size: 26px;
  }

  .rts-service-details-area-main-bottom h5 {
    font-size: 20px;
  }

  .rts-service-details-area-main-bottom p,
  .rts-service-details-area-main-bottom li {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .rts-service-details-area-main-bottom {
    padding: 35px 20px;
  }

  .rts-service-details-area-main-bottom .title {
    font-size: 26px;
  }

  .rts-service-details-area-main-bottom h2 {
    font-size: 22px;
  }

  .rts-service-details-area-main-bottom h5 {
    font-size: 18px;
  }

  .rts-service-details-area-main-bottom p,
  .rts-service-details-area-main-bottom li {
    font-size: 16px;
  }
}

.space-space {
  margin-right: 15px;
}

/* ============================================
   GLOBAL / LAYOUT
============================================ */
.alt-section {
  padding: 80px 0;
}

.alt-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  animation: fadeIn 0.7s ease;
}

.alt-section-header .title {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
}

.alt-section-subtitle {
  font-size: 16px;
  color: #6e7685;
  margin-top: 6px;
}

/* ============================================
   BANNER FIX — Remove ghost overlay text
============================================ */
.banner-inner-service-details-1 .bg-title {
  display: none !important;
}

.alt-banner {
  padding: 120px 0 70px 0;
  position: relative;
  z-index: 1;
}

.marquee-content {
  position: relative;
  z-index: 5;
}

.alt-banner-title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px !important;
}

.alt-banner-subtitle,
.alt-banner-tags {
  color: #e8e8e8;
  font-size: 18px;
  max-width: 700px;
  line-height: 1.6 !important;
  margin-bottom: 6px;
  display: block;
}

/* ============================================
   INFO STRIP (Light Blue box)
============================================ */
.alt-info-strip {
  background: rgba(38, 169, 224, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  color: #333;
}

.alt-bullet-list {
  margin: 0;
  padding-left: 18px;
}

.alt-bullet-list li {
  margin-bottom: 6px;
  font-size: 15px;
}

/* ============================================
   FORM FIELDS
============================================ */
.alt-form-field {
  display: flex;
  flex-direction: column;
}

.alt-label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
  color: #2a2f3a;
}

.alt-input,
.alt-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #dcdfe6;
  background: #fff;
  color: #111;
  font-size: 15px;
  transition: all 0.2s ease;
}

.alt-input:focus,
.alt-textarea:focus {
  border-color: #26a9e0;
  box-shadow: 0 0 0 3px rgba(38,169,224,0.25);
}

.alt-textarea {
  min-height: 130px;
  resize: vertical;
}

/* ============================================
   INTEREST GROUP BOXES
============================================ */
.alt-interest-group {
  padding: 18px 20px;
  background: #f7f9fc;
  border-radius: 15px;
  margin-bottom: 14px;
  border: 1px solid #eef1f5;
}

.alt-interest-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.alt-checkbox-list {
  padding-left: 6px;
}

/* ============================================
   CHECKBOXES — PERFECT ALIGNMENT
============================================ */
.alt-checkbox {
  display: flex;
  align-items: center !important;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
  cursor: pointer;
}

.alt-checkbox input[type="checkbox"] {
  margin-top: 0 !important;
  transform: translateY(0.5px);
}

.alt-checkbox span {
  line-height: 1.5;
}

/* Consent checkbox */
.alt-checkbox-inline {
  display: flex;
  align-items: center !important;
  gap: 10px;
  cursor: pointer;
  line-height: 1.5;
}

.alt-checkbox-inline input[type="checkbox"] {
  margin-top: 0 !important;
  transform: translateY(0.5px);
}

.alt-checkbox-inline span {
  line-height: 1.5;
}

/* ============================================
   RADIO BUTTONS — ALIGN FIX
============================================ */
.alt-radio-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.alt-radio {
  display: flex;
  align-items: center !important;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

.alt-radio input[type="radio"] {
  margin-top: 0 !important;
  transform: translateY(0.5px);
}

/* ============================================
   DIVIDER & NOTES
============================================ */
.alt-divider {
  border-bottom: 1px dashed #e1e4ea;
  margin: 20px 0;
}

.alt-info-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

/* ============================================
   BUTTONS
============================================ */
.alt-btn {
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.2s ease;
}

.alt-btn-primary {
  background: linear-gradient(135deg, #26a9e0, #1f8ec0);
  color: #fff;
  box-shadow: 0 12px 24px rgba(38, 169, 224, 0.35);
}

.alt-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(38, 169, 224, 0.45);
}

/* Loading text */
.alt-loading-text {
  font-size: 14px;
  color: #6b7280;
}

/* Success message */
.alt-success-message .alert {
  border-radius: 12px;
  background: #d1fae5;
  border: 1px solid #10b981;
  color: #065f46;
}

/* Error message */
.alt-error-message .alert {
  border-radius: 12px;
  background: #fee2e2;
  border: 1px solid #dc2626;
  color: #991b1b;
}

/* ============================================
   ANIMATIONS
============================================ */
.fade-in {
  animation: fadeIn 0.6s ease;
}

.slide-up {
  animation: slideUp 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE FIXES
============================================ */
@media (max-width: 768px) {
  .alt-banner-title {
    font-size: 40px;
  }
  .alt-banner-subtitle,
  .alt-banner-tags {
    font-size: 15px;
  }
  .alt-card {
    padding: 28px;
  }
}

.mail-link {
    color: #26a9e0;
    font-weight: 600;
    text-decoration: none;
}

.mail-link:hover {
    text-decoration: underline;
    color: #1f8bbd;
}

@media only screen and (max-width: 575px) {
    .header-main-one-wrapper .thumbnail a img {
        max-width: 130px;
    }
    .img-logo-header {
    height: 40px;
    width: 250px;
}
}

/* Slideshow Container */
.banner-slideshow {
  position: relative;
  height: 480px;
  overflow: hidden;
}

/* Background Layer */
.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  opacity: 1;
  z-index: 1;
}

/* Overlay */
.banner-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55));
  z-index: 2;
}

/* Content */
.banner-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 90px;
}

/* Arrows */
.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(255,255,255,0.3);
  border: none;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.banner-arrow:hover {
  background: rgba(255,255,255,0.6);
  color: #000;
}

.left-arrow {
  left: 25px;
}

.right-arrow {
  right: 25px;
}
