/* Center wrapper */
.center-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

/* Outer box */
.welcome__left {
  background-color: #f5faff;
  padding: 18px 22px;
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  border: 1px solid #dcebff;
  box-shadow: 0 4px 16px rgba(13, 110, 253, 0.08);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Layout: side-by-side on desktop, stacked on mobile */
.content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
}

/* Text section */
.text-content {
  flex: 1;
}

/* Image section */
.image-container {
  flex: 0 0 250px;
}

.image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Headings and paragraphs */
.suptitle {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  color: #555;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

h1.welcome__title {
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.welcome__left .welcome__tagline {
  font-size: 12.5px;
  margin-bottom: 5px;
}

.welcome__left .welcome__text {
  font-size: 12.5px;
  line-height: 1.35;
  margin-bottom: 5px;
}

.welcome__text,
.text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.text strong,
.welcome__text strong {
  color: #0077cc;
}

.text:last-child {
  font-weight: 500;
  color: #000;
}

/* MOBILE styles */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .image-container {
    margin-top: 10px;
    width: 110px;
    max-width: 32%;
    margin-left: auto;
    margin-right: auto;
  }

  .image {
    max-width: 100%;
    border-radius: 8px;
  }

  .welcome__left {
    padding: 14px 16px;
  }

  .title {
    font-size: 24px;
  }

  .text,
  .welcome__text {
    font-size: 15px;
  }
}
/* Optional wrapper padding for breathing room */
.well {
  padding: 30px;
}

/* Add top/bottom padding on small screens */
@media (max-width: 768px) {
  .well {
    padding: 20px;
  }

  .form-group,
  .checkbox {
    margin-bottom: 20px;
  }

  .alert {
    margin-bottom: 20px;
  }
}
/* Make the Sign In button modern and pill-shaped */
.btn.btn-primary {
  background-color: #0d6efd;  /* same as earlier code */
  border: none;
  padding: 12px 28px;
  border-radius: 999px; /* oval/pill shape */
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn.btn-primary:hover {
  background-color: #005fa3; /* a slightly darker shade on hover */
}
.well {
  background-color: #ffffff;            /* Pure white functional panel */
  padding: 40px;                        /* Spacious inner padding */
  border-radius: 16px;                  /* Rounded corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);  /* Soft shadow for depth */
  border: none;                         /* Remove Bootstrap's default border */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;                          /* Consistent text color */
}
/* Modern Input Fields */
.form-control {
  background-color: #ffffff;        /* Pure white functional input */
  border: 1px solid #ddd;           /* Light border for subtle distinction */
  padding: 12px 20px;                /* Comfortable padding for text */
  border-radius: 12px;               /* Rounded corners for a modern look */
  font-size: 16px;                   /* Clean, readable text size */
  height: auto;                      /* Let the box grow to fit the padding instead of the inherited fixed 34px, which was clipping select/input text */
  min-height: 46px;
  line-height: 1.5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;  /* Smooth transitions */
}

/* Focused Input Box (when clicked) */
.form-control:focus {
  border-color: #0077cc;            /* Highlight the border with your primary color */
  box-shadow: 0 0 8px rgba(0, 119, 204, 0.3); /* Soft glowing effect around the box */
  outline: none;                    /* Remove default outline */
}

/* Input Box on Disabled (optional) */
.form-control:disabled {
  background-color: #e9ecef;        /* Slightly darker background */
  border-color: #ddd;               /* Greyed out border */
  cursor: not-allowed;              /* Disable cursor */
}
/* Section styling */
.why-us {
  padding: 40px 0;
  position: relative;
}

/* Remove background from the section */
.why-us.dark_mode_section {
  background: none; /* no background color */
}

/* Container for content */
.why-us__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Left section styling */
.why-us__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Reason box styling */
.why-us__reason {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

/* Reason image icon styling */
.why-us__reason_img {
  width: 56px;
  height: 56px;
  background: #e6f7fd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.why-us__reason_img i {
  font-size: 32px;
  color: #0077cc;
}

/* Reason title styling */
.why-us__reason_title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* Right section styling */
.why-us__right {
  flex: 1;
}

/* Subtitle styling */
.suptitle {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  color: #555;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* Main title styling */
.why-us__subtitle {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

/* Text content styling */
.why-us__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #555;
}

.why-us__text strong {
  color: #0077cc;
}

/* Button styling */
.why-us__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4a9bff 0%, #0d6efd 100%);
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(13, 110, 253, 0.28), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
  border: none;
}

.why-us__btn:hover {
  background: linear-gradient(135deg, #5aa8ff 0%, #0b5ed7 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(13, 110, 253, 0.35), inset 0 1px 0 rgba(255,255,255,0.4);
  color: #fff;
}

.why-us__btn i {
  margin-left: 10px;
}

/* Responsive Design for mobile */
@media (max-width: 767.98px) {
  .why-us__inner {
    flex-direction: column;
    align-items: center;
  }

  .why-us__left {
    width: 100%;
    margin-bottom: 20px;
  }

  .why-us__right {
    width: 100%;
  }

  .why-us__reason {
    padding: 15px;
  }

  .why-us__reason_img {
    margin-right: 12px;
  }

  .why-us__reason_title {
    font-size: 16px;
  }

  .why-us__subtitle {
    font-size: 24px;
  }

  .why-us__text {
    font-size: 14px;
  }
}
/* Container for the FAQ section */
.qaa__top {
  padding: 40px 20px;
  background-color: #f9fafc;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

/* Header section (title and subtitle) */
.qaa__header {
  margin-bottom: 20px;
}

/* Subtitle above the main title */
.suptitle {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  color: #555;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* Main title for the FAQ */
.subtitle {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

/* Description text under the title */
.qaa__description .text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
}

/* Responsive Design for mobile screens */
@media (max-width: 768px) {
  .qaa__top {
    padding: 30px 15px;
  }

  .subtitle {
    font-size: 24px;
  }

  .qaa__description .text {
    font-size: 14px;
  }
}
/* General styles for the FAQ section */
.qaa__top {
  padding: 40px 30px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); /* Adding depth */
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Poppins', sans-serif;
}

/* Header styling */
.qaa__header {
  margin-bottom: 30px;
}

/* Subtitle styling */
.suptitle {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  color: #0077cc;
  letter-spacing: 1px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

/* Main title for the FAQ */
.subtitle {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.subtitle:hover {
  color: #0077cc;
}

/* Description text under the title */
.qaa__description .text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  font-weight: 400;
  text-align: justify;
}

/* Add a modern font for better readability */
body {
  font-family: 'Poppins', sans-serif;
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
  .qaa__top {
    padding: 30px 20px;
  }

  .subtitle {
    font-size: 28px;
  }

  .qaa__description .text {
    font-size: 16px;
  }

  .suptitle {
    font-size: 14px;
  }
}
/* General Styles */
section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    margin-bottom: 4rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Heading Styles */
h2 {
    font-size: 2.5rem; /* Bigger for impact */
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.375rem; /* Slightly larger */
    font-weight: 600;
    color: #222;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

/* Container */
.max-w-4xl {
    max-width: 900px;
    margin: 0 auto;
}

/* Center text */
.text-center {
    text-align: center;
}

/* Step Box Styling */
.bg-white {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.bg-white:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

/* Number Styling */
.text-2xl {
    font-size: 2rem;
    font-weight: 700;
    color: #1d4ed8;
}

/* Step Icons */
img {
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    object-fit: contain;
}

/* Description Text Styling */
.text-gray-600 {
    color: #444;
    font-size: 1rem; /* Increased for readability */
    line-height: 1.7;
}

.text-sm {
    font-size: 1rem; /* Make small text more readable */
}

/* Flex layout */
.flex {
    display: flex;
}

.items-start {
    align-items: flex-start;
}

.space-x-4 {
    margin-right: 1rem;
}

.flex-1 {
    flex-grow: 1;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .space-y-6 {
        margin-bottom: 2rem;
    }

    .bg-white {
        padding: 2rem;
    }

    .text-2xl {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .text-gray-600 {
        font-size: 1rem;
    }

    img {
        width: 48px;
        height: 48px;
    }

    .max-w-4xl {
        padding: 0 1rem;
    }
}
.image-container {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.why-us__btn {
  background-color: #0d6efd;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.why-us__btn:hover {
  background-color: #1743b3;
}

.why-us__btn i {
  font-size: 1.1rem;
}

/* RESPONSIVE: Stack image + button under text on small screens */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .image-container {
    width: 100%;
    margin-top: 20px;
    align-items: center;
  }

  .why-us__btn {
    margin-top: 12px;
  }

  .text-content {
    width: 100%;
  }
}
/* Basic Styles for Container */
.container {
  margin-top: 3px;
}

/* Side box layout styling */
.side-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.side-box:hover {
  transform: translateY(-4px); /* Slight lift effect on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

/* Media section styling */
.media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-left {
  margin-right: 20px;
}

.media-body h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.media-body h5 {
  font-size: 1rem;
  color: #555;
  font-weight: 400;
}

/* Icon size and color */
.fas, .fab {
  color: #060606;
  transition: color 0.3s ease;
}

.fas:hover, .fab:hover {
  color: #0077cc; /* Change icon color on hover */
}

.fa-3x {
  font-size: 2.5rem; /* Larger icon size */
}

/* Spacing for the columns */
.col-sm-4 {
  margin-bottom: 30px; /* Space between the profile boxes */
}

@media (max-width: 767px) {
  /* For smaller devices, make the icons and text more responsive */
  .fa-3x {
    font-size: 2rem; /* Smaller icons on mobile */
  }

  .media-body h4 {
    font-size: 1.1rem; /* Adjust the heading size */
  }

  .media-body h5 {
    font-size: 0.9rem; /* Adjust the subtitle size */
  }
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #eaf4ff;
  color: #111827;
  line-height: 1.6;
}

/* Main Tutorial Box */
.tutorial-box {
  background-color: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  margin: 40px auto;
}

/* Label */
.tutorial-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

/* Heading */
.tutorial-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111827;
}

/* Description */
.tutorial-description {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 24px;
}

.tutorial-description a {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 500;
}

/* Responsive YouTube Video */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .tutorial-box {
    padding: 20px;
  }

  .tutorial-heading {
    font-size: 1.25rem;
  }

  .tutorial-description {
    font-size: 0.95rem;
  }
}

.qaa__faq-list {
  padding: 20px 0;
}
.faq-item {
  margin-bottom: 25px;
}
.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}
.faq-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}


  * { margin: 0; padding: 0; box-sizing: border-box; }
  .airastay_banner {
    position: relative;
    width: 100%;
    max-width: 860px;
    background: #f5f0e8;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    border-radius: 4px;
  }

  .airastay_banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1a1a2e;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 1;
  }

  .airastay_banner:hover::before { transform: scaleX(1); }

  .airastay_banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.8rem 3.5rem;
    gap: 2rem;
  }

  .airastay_label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: skyblue;
    margin-bottom: 0.6rem;
    transition: color 0.4s ease;
  }

  .airastay_headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.4vw, 2.0rem);
    font-weight: 900;
    line-height: 1.1;
    color: #1a1a2e;
    transition: color 0.4s ease;
    max-width: 460px;
  }

  .airastay_sub {
    font-size: 0.85rem;
    color: #6b6460;
    margin-top: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
  }

  .airastay_cta-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: skyblue;
    color: #f5f0e8;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 2px;
    transition: background 0.4s ease, color 0.4s ease, gap 0.3s ease;
    white-space: nowrap;
  }

  .airastay_cta-btn .arrow {
    transition: transform 0.3s ease;
    font-size: 1rem;
  }

  .airastay_banner:hover .airastay_label { color: deepskyblue; }
  .airastay_banner:hover .airastay_headline { color: #f5f0e8; }
  .airastay_banner:hover .airastay_sub { color: rgba(245,240,232,0.55); }
  .airastay_banner:hover .airastay_cta-btn {
    background: darkblue;
    color: #fff;
    gap: 1.1rem;
  }
  .airastay_banner:hover .airastay_cta-btn .airastay_arrow { transform: translateX(4px); }

  .airastay_deco-line {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: skyblue;
    z-index: 3;
  }

  .airastay_deco-num {
    position: absolute;
    right: 3.5rem; bottom: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(26,26,46,0.07);
    line-height: 1;
    z-index: 2;
    transition: color 0.4s ease;
    pointer-events: none;
    user-select: none;
  }

  .airastay_banner:hover .airastay_deco-num { color: rgba(245,240,232,0.06); }

  @media (max-width: 600px) {
    .airastay_banner-inner { flex-direction: column; align-items: flex-start; padding: 2rem 2rem 2rem 2.5rem; }
    .airastay_cta-btn { align-self: flex-start; }
    .airastay_deco-num { display: none; }
  }

/* Platform picker (order form) */
.platform-picker { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04); padding: 0; overflow: hidden; margin-bottom: 15px; }
.platform-picker-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; cursor: pointer; user-select: none; }
.platform-picker-title { font-weight: 700; font-size: 15px; color: #222; }
.platform-picker-title i { color: #0d6efd; margin-right: 8px; }
.platform-picker-chevron { color: #64748b; transition: transform .15s ease; }
.platform-picker-chevron.rotated { transform: rotate(180deg); }
.platform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 20px 20px; transition: max-height .2s ease; }
.platform-grid.collapsed { display: none; }
.platform-card { display: flex; align-items: center; gap: 12px; border: 1px solid #e2e8f0; border-radius: 10px; padding: 12px 16px; cursor: pointer; background: #ffffff; transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.platform-card:hover { border-color: #0d6efd; background: #f2f8ff; box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15); transform: translateY(-1px); }
.platform-card:hover .platform-card-icon { background: #0d6efd; box-shadow: 0 2px 8px rgba(13, 110, 253, 0.35); }
.platform-card.active { border-color: #0d6efd; background: linear-gradient(135deg, #eaf2ff 0%, #d8e9ff 100%); box-shadow: 0 2px 10px rgba(13, 110, 253, 0.18); }
.platform-card-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: #5b9df5; color: #fff; flex-shrink: 0; font-size: 14px; transition: background .15s ease, box-shadow .15s ease; }
.platform-card.active .platform-card-icon { background: linear-gradient(135deg, #4a9bff, #0d6efd); box-shadow: 0 2px 6px rgba(13, 110, 253, 0.35); }
.platform-card-label { font-weight: 600; font-size: 14px; color: #222; }
@media screen and (max-width: 480px) { .platform-grid { grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 12px 16px; } .platform-card { padding: 10px 8px; gap: 8px; } .platform-card-label { font-size: 12.5px; } .platform-card-icon { width: 26px; height: 26px; font-size: 12px; } }


/* Compact one-line account summary (username / balance / account status) */
.summary-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  padding: 0;
  margin: 20px auto;
  max-width: 900px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}
.summary-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  padding: 12px 16px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-right: 1px solid #eef0f3;
}
.summary-box:hover { transform: none; }
.summary-box:last-child { border-right: none; }
.summary-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a9bff 0%, #0d6efd 100%);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(13, 110, 253, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.summary-box > div {
  min-width: 0;
  overflow: hidden;
}
.summary-box h4 {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin: 0 0 2px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.summary-box h4 p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  display: inline;
}
.summary-box > div > p {
  margin: 0;
  font-size: 11px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Always keep the three sections on one line, even on small phones */
@media (max-width: 640px) {
  .summary-container {
    margin: 12px auto;
  }
  .summary-box {
    gap: 6px;
    padding: 8px 6px;
  }
  .summary-icon {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }
  .summary-box h4,
  .summary-box h4 p {
    font-size: 11px;
  }
  .summary-box > div > p {
    font-size: 8px;
  }
}

@media (max-width: 380px) {
  .summary-box {
    gap: 4px;
    padding: 6px 4px;
  }
  .summary-icon {
    width: 18px;
    height: 18px;
    font-size: 9px;
  }
  .summary-box h4,
  .summary-box h4 p {
    font-size: 9.5px;
  }
  .summary-box > div > p {
    font-size: 7px;
  }
}


/* Collapse the category dropdown's outer shell to nothing when every option
   (including Select2's own "No results found" message) is hidden by our
   platform filter above - prevents a stray empty padded bar from floating
   under the Category box when a platform has zero matching categories. */
.select2-dropdown:not(:has(#select2-orderform-category-results li:not([style*="display: none"]))) {
  padding: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
  border: none !important;
}

/* Mobile bottom navigation bar (Services / Funds / New Order / Orders / Support) */
.mobile-bottom-nav {
  display: none;
}
@media (max-width: 767px) {
  body { padding-bottom: 78px; }
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.1);
    padding: 8px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    justify-content: space-around;
    align-items: flex-end;
  }
  .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #64748b;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    flex: 1 1 0;
    min-width: 0;
  }
  .mobile-bottom-nav a i {
    font-size: 18px;
  }
  .mobile-bottom-nav a.active {
    color: #0d6efd;
  }
  .mobile-bottom-nav .nav-fab-wrap {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    position: relative;
  }
  .mobile-bottom-nav .nav-fab {
    position: absolute;
    top: -26px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a9bff 0%, #0d6efd 100%);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.45), 0 0 0 6px rgba(13, 110, 253, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
  }
  .mobile-bottom-nav .nav-fab-label {
    margin-top: 30px;
    font-size: 11px;
    font-weight: 600;
    color: #0d6efd;
    white-space: nowrap;
  }
}


/* Followspanel AI Chat Widget */
#fp-chat-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a9bff 0%, #0d6efd 100%);
  box-shadow: 0 12px 26px rgba(13, 110, 253, 0.35), inset 0 1px 0 rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
#fp-chat-bubble:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(13, 110, 253, 0.45), inset 0 1px 0 rgba(255,255,255,0.4);
}
#fp-chat-bubble i {
  color: #fff;
  font-size: 22px;
  position: absolute;
}
#fp-chat-bubble .fp-chat-close-icon {
  display: none;
}
#fp-chat-bubble.open .fp-chat-open-icon {
  display: none;
}
#fp-chat-bubble.open .fp-chat-close-icon {
  display: inline-block;
}

@media (max-width: 768px) {
  body.has-bottom-nav #fp-chat-bubble {
    bottom: 84px;
  }
}

#fp-chat-window {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 500px;
  max-height: calc(100vh - 140px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(13, 110, 253, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
  border: 1px solid #dcebff;
}
#fp-chat-window.open {
  display: flex;
}
@media (max-width: 768px) {
  body.has-bottom-nav #fp-chat-window {
    bottom: 156px;
  }
}

#fp-chat-header {
  background: linear-gradient(135deg, #4a9bff 0%, #0d6efd 100%);
  color: #fff;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
#fp-chat-header .fp-chat-sub {
  display: block;
  font-weight: 400;
  font-size: 12px;
  opacity: 0.85;
  margin-top: 2px;
}

#fp-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #f5faff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fp-msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.4;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.fp-msg-bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid #dcebff;
  color: #222;
  border-bottom-left-radius: 4px;
}
.fp-msg-user {
  align-self: flex-end;
  background: linear-gradient(135deg, #4a9bff 0%, #0d6efd 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.fp-msg-typing {
  align-self: flex-start;
  background: #fff;
  border: 1px solid #dcebff;
  border-bottom-left-radius: 4px;
  padding: 12px 16px;
}
.fp-typing-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9db8d8;
  margin-right: 3px;
  animation: fp-typing-blink 1.2s infinite;
}
.fp-typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}
.fp-typing-dot:nth-child(3) {
  animation-delay: 0.4s;
  margin-right: 0;
}
@keyframes fp-typing-blink {
  0%, 80%, 100% { opacity: 0.25; }
  40% { opacity: 1; }
}

#fp-chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #eaf4ff;
  background: #fff;
  flex-shrink: 0;
}
#fp-chat-input {
  flex: 1;
  border: 1px solid #dcebff;
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 13.5px;
  outline: none;
}
#fp-chat-input:focus {
  border-color: #4a9bff;
}
#fp-chat-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #4a9bff 0%, #0d6efd 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
#fp-chat-send:disabled {
  opacity: 0.5;
  cursor: default;
}


/* Followspanel AI Chat Widget - action buttons (Order this / Transfer to agent) */
.fp-action-btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: -2px;
  padding: 8px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1.5px solid #0d6efd;
  color: #0d6efd;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.fp-action-btn:hover {
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
}


/* ==========================================================
   Followspanel — top nav restyle (rounded, card-style items)
   ========================================================== */
.navbar.navbar-default {
  background: #ffffff;
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  margin-bottom: 20px;
}
.navbar .navbar-header .navbar-toggle {
  border: 1.5px solid #dce6f5;
  border-radius: 10px;
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 9px 10px;
  background: #f7faff;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.navbar .navbar-header .navbar-toggle:hover,
.navbar .navbar-header .navbar-toggle:focus {
  background: #eaf2ff;
  border-color: #0d6efd;
}
.navbar .navbar-toggle .icon-bar {
  background-color: #0d6efd;
}
.navbar-brand {
  font-weight: 700;
}
#navbar.navbar-collapse {
  border-top: 1px solid #eef2f7;
  margin-top: 4px;
  padding: 10px 6px 14px;
  box-shadow: none;
}
@media (min-width: 768px) {
  #navbar.navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
  }
}
.navbar-nav {
  margin: 0;
}
.navbar-nav > li {
  margin: 3px 4px;
}
.navbar-nav > li > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  color: #3a4a63;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.3;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
  background: #f0f6ff;
  color: #0d6efd;
  transform: translateX(2px);
}
.navbar-nav > li.active > a,
.navbar-nav > li.active > a:hover,
.navbar-nav > li.active > a:focus {
  background: linear-gradient(135deg, #eaf2ff 0%, #d8e9ff 100%);
  color: #0d6efd;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(13, 110, 253, 0.12);
}
.navbar-nav > li > a .navbar-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eef3fb;
  color: #5b7ba8;
  font-size: 13px;
  transition: background 0.15s ease, color 0.15s ease;
}
.navbar-nav > li.active > a .navbar-icon {
  background: linear-gradient(135deg, #4a9bff, #0d6efd);
  color: #fff;
}
.navbar-nav > li > a:hover .navbar-icon {
  background: #dce9ff;
  color: #0d6efd;
}
.navbar-nav > li > a .badge {
  margin-left: auto;
  background: #0d6efd;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  padding: 3px 8px;
}
.navbar-nav.navbar-right-block {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #e5ecf6;
}
.navbar-nav .dropdown-menu {
  border-radius: 12px;
  border: 1px solid #e9eef5;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  padding: 6px;
  margin-top: 6px;
}
.navbar-nav .dropdown-menu > li > a {
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13.5px;
  color: #3a4a63;
}
.navbar-nav .dropdown-menu > li > a:hover,
.navbar-nav .dropdown-menu > li > a:focus {
  background: #f0f6ff;
  color: #0d6efd;
}
.navbar-nav .dropdown-menu > li.active > a {
  background: linear-gradient(135deg, #eaf2ff 0%, #d8e9ff 100%);
  color: #0d6efd;
  font-weight: 700;
}
.dropdown-currencies > .dropdown-toggle {
  cursor: pointer;
}
.dropdown-currencies > .dropdown-toggle .caret {
  margin-left: 4px;
  border-top-color: #5b7ba8;
}

/* ==========================================================
   Followspanel — site footer
   ========================================================== */
.fp-footer {
  margin-top: 48px;
  background: #f8fafd;
  border-top: 1px solid #e6edf7;
}
.fp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 28px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.fp-footer-brand .fp-footer-logo {
  display: inline-block;
  font-size: 19px;
  font-weight: 800;
  color: #16233a;
  text-decoration: none;
  margin-bottom: 10px;
}
.fp-footer-brand .fp-footer-logo img {
  max-height: 32px;
}
.fp-footer-tagline {
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
  max-width: 320px;
  margin: 0 0 16px;
}
.fp-footer-socials {
  display: flex;
  gap: 10px;
}
.fp-footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef3fb;
  color: #5b7ba8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.fp-footer-socials a:hover {
  background: linear-gradient(135deg, #4a9bff, #0d6efd);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}
.fp-footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #16233a;
  margin: 0 0 14px;
}
.fp-footer-col a {
  display: block;
  color: #5b6b81;
  font-size: 13.5px;
  line-height: 2.15;
  text-decoration: none;
  transition: color 0.15s ease;
}
.fp-footer-col a:hover {
  color: #0d6efd;
  text-decoration: none;
}
.fp-footer-bottom {
  border-top: 1px solid #e6edf7;
  padding: 16px 24px;
  text-align: center;
  color: #8494a8;
  font-size: 12.5px;
}
@media (max-width: 900px) {
  .fp-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .fp-footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 520px) {
  .fp-footer-inner {
    grid-template-columns: 1fr;
    padding: 32px 20px 20px;
  }
  .fp-footer-socials {
    justify-content: flex-start;
  }
}
