/* ====== PRODUCTS SECTION ====== */
.pro-section {
  padding: 80px 0;
  /* background-color: #0d1117; */
  color: var(--itzone-white);
}

.pro-section-header {
  max-width: 800px;
  margin: 0 auto 50px;
}

.pro-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--itzone-white);
}

.pro-subtitle {
  color: #c0c0c0;
  font-size: 17px;
  margin-top: 10px;
}

/* ====== GRID ====== */
.pro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 991px) {
  .pro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .pro-grid {
    grid-template-columns: 1fr;
  }
}

/* ====== CARD ====== */
.pro-card {
   background: linear-gradient(145deg, #161b22, #1c202b);
  padding: 30px;
  border-radius: 15px;
  transition: all 0.4s ease-in-out;
  border: 1px solid #1e242d;
}

.pro-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--itzone-base);
  box-shadow: 0 8px 20px rgba(241, 140, 53, 0.4);
}

.pro-card-title {
  color: var(--itzone-base);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pro-card-desc {
  font-size: 15px;
  color: #bfbfbf;
  margin-bottom: 15px;
}

.pro-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pro-card-list li {
    transition: transform 0.3s ease, color 0.3s ease;
  margin-bottom: 8px;
  font-size: 15px;
  color: #dcdcdc;
}

.pro-card-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.pro-card-list li:hover {
  color: var(--itzone-base);
  transform: translateX(5px);
}


/* ====== HERO CARD (from your base) ====== */
.fr-hero-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(var(--itzone-white-rgb), .04);
}

/* ====== BUTTONS ====== */
.fr-thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  border: none;
  font-weight: 700;
  font-size: 17px;
  color: var(--itzone-white);
  padding: 10px 20px 9px;
  border-radius: var(--itzone-bdr-radius);
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  overflow: hidden;
  gap: 10px;
  text-align: center;
  background-color: var(--itzone-base);
  z-index: 1;
}

.fr-thm-btn::before {
  content: "";
  background-color: var(--itzone-black);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.fr-thm-btn:hover::before {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
  transition-delay: 200ms;
}

.fr-thm-btn::after {
  content: "";
  background-color: rgba(var(--itzone-black-rgb), 0.3);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.fr-thm-btn:hover::after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

.fr-thm-btn span {
  font-size: 14px;
  position: relative;
  top: -1px;
  transition: all 500ms ease;
}

.fr-thm-btn:hover {
  color: var(--itzone-white);
  border: 1px solid #f18c35;
}

/* ====== OUTLINE BUTTON ====== */
.fr-thm-btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  border: 1px solid var(--itzone-white);
  background: transparent;
  color: var(--itzone-white);
  font-weight: 700;
  font-size: 17px;
  padding: 10px 20px;
  border-radius: var(--itzone-bdr-radius);
  overflow: hidden;
  transition: 0.5s ease-in-out;
}

.fr-thm-btn-outline:hover {
  background-color: var(--itzone-base);
  border-color: var(--itzone-base);
  color: var(--itzone-white);
}

/* ====== WHITE LABEL ====== */
.pro-white-label {
  margin-top: 80px;
}

.pro-white-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--itzone-white);
}

.pro-white-desc {
  color: #bfbfbf;
  margin-bottom: 30px;
}

.pro-white-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.pro-white-item {
  background: #161b22;
  border: 1px solid #1e242d;
  border-radius: 8px;
  padding: 12px 20px;
  color: var(--itzone-base);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.pro-white-item:hover {
    color: #fff;
  border-color: var(--itzone-base);
  box-shadow: 0 0 10px rgba(255,159,13,0.2);
  transform: translateY(-3px);
}

/* ===== ABOUT SECTION ====== */
.pro-about {
  padding: 100px 0;
  /* background-color: #0d1117; */
  color: var(--itzone-white);
}

.pro-about-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.pro-about-content {
  flex: 1;
  min-width: 300px;
}

.pro-about-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--itzone-base);
  margin-bottom: 20px;
}

.pro-about-desc {
  color: #bfbfbf;
  font-size: 17px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.pro-about-image img {
    animation: leftRight 4s 
ease-in-out infinite;
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255,159,13,0.15);
}

@media (max-width: 991px) {
  .pro-about-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .pro-about-image img {
    max-width: 100%;
  }
}

.pro-about-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 30px;
}

.pro-about-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #c0c0c0;
}

.pro-about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--itzone-base);
  font-size: 16px;
  line-height: 1;
}



.pro-why {
  padding: 100px 0;
  /* background: linear-gradient(180deg, #0d1117 0%, #161b22 100%); */
  color: var(--itzone-white);
}

.pro-why-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--itzone-base);
}

.pro-why-subtitle {
  color: #c0c0c0;
  font-size: 17px;
  margin-bottom: 50px;
}

.pro-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.pro-why-item {
  background: #161b22;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 30px;
  transition: 0.3s ease-in-out;
}

.pro-why-item:hover {
  transform: translateY(-8px);
  border-color: var(--itzone-base);
  box-shadow: 0 0 15px rgba(255,159,13,0.2);
}

.pro-why-item i {
  font-size: 28px;
  color: var(--itzone-base);
  margin-bottom: 15px;
}

.pro-why-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--itzone-white);
}

.pro-why-item p {
  color: #bfbfbf;
  font-size: 15px;
}

@media (max-width: 991px) {
  .pro-why-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== END PRODUCTS SECTION ====== */

/* ====== Forex CRM - BridgeX Suite ====== */
/* Comparison Section */
.bs-compare-section {
  /* background-color: #0c0f14; */
  color: #e0e0e0;
}

.bs-compare-title {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}

.bs-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  overflow: hidden;
}

.bs-compare-table th,
.bs-compare-table td {
  color: #fff;
  padding: 1rem 1.2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: middle;
}

.bs-compare-table thead th {
  background: #f18c35;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.bs-compare-table tbody td:first-child {
  font-weight: 600;
  color: #f18c35;
  text-align: left;
}

.bs-compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.06);
  transition: 0.3s;
}

.bs-compare-analysis {
  color: #ccc;
  font-size: 0.95rem;
  max-width: 800px;
  margin: 0 auto;
}

.table-responsive {
  border-radius: 12px;
  overflow-x: auto;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .bs-compare-table th,
  .bs-compare-table td {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  .bs-compare-table thead {
    font-size: 0.85rem;
  }
}

/* ===== Portfolio Section ===== */
.bs-portfolio-section {
  /* background: #0d1117; */
  color: var(--itzone-white);
  position: relative;
}

.bs-section-subtitle {
  color: #bfbfbf;
  font-size: 16px;
}

/* Grid Items */
.bs-portfolio-item {
  padding: 1rem;
  position: relative;
  background: #161b22;
  border: 1px solid #1e242d;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.bs-portfolio-item img {
  width: 100%;
  transition: transform 0.5s ease;
  filter: grayscale(100%);
}

.bs-portfolio-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0);
}

.bs-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: center;
  padding: 15px;
}

.bs-portfolio-item:hover .bs-portfolio-overlay {
  opacity: 1;
}

.bs-portfolio-overlay h4 {
  color: var(--itzone-base);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
}

.bs-portfolio-overlay p {
  color: #fff;
  font-size: 14px;
}

/* ===== Lightbox ===== */
.bs-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.bs-lightbox-content {
  background: #161b22;
  border: 1px solid #1e242d;
  border-radius: 12px;
  padding: 25px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 159, 13, 0.2);
}

.bs-lightbox-content img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
}

.bs-lightbox-content p {
  color: #dcdcdc;
  font-size: 15px;
}

.bs-lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.bs-lightbox-close:hover {
  color: var(--itzone-base);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 767px) {
  .bs-lightbox-content {
    width: 90%;
  }
}

/* CTA Modal */

/* Modal */
.ubf-modal-content {
  border: none;
  border-radius: 12px;
  /* background: #1a1d23; */
  color: #fff;
}

.ubf-modal-header {
  background-color: #f18c35;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.ubf-label {
  color: #f18c35;
  font-weight: 600;
}

.ubf-label span {
  color: #f18c35;
}

.ubf-submit-btn {
  background-color: #f18c35;
  color: white;
  border: none;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.ubf-submit-btn:hover {
  background-color: #ffa85b;
}

.ubf-desc {
  color: #adb5bd;
}

.ubf-modal-dialog .ubf-modal-content {
  max-height: 450px;
  overflow-y: auto;
}

.ubf-modal-content .modal-body {
  padding: 1.5rem;
}

/* Demo Request Form */
.contact-one__input-box .formSelect {
    height: 50px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--itzone-white-rgb), .10);
    padding-left: 15px;
    padding-right: 45px;
    outline: none;
    font-size: 16px;
    color: var(--itzone-gray);
    display: block;
    font-weight: 400;
    border-radius: var(--itzone-bdr-radius);
    line-height: 50px;
    -webkit-appearance: none; /* remove default arrow in some browsers */
    -moz-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
}

.select-wrapper {
    position: relative;
    z-index: 999; /* make sure wrapper is above other elements */
}






