.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* =========================================================
   SABRAH GLOBAL - GLOBAL WEBSITE CSS
   Premium Global Trading UI System
   ========================================================= */

/* ---------- ROOT VARIABLES ---------- */
:root {
  --sg-bg: #07111f;
  --sg-bg-soft: #0d1b2d;
  --sg-bg-card: rgba(255, 255, 255, 0.05);
  --sg-surface: rgba(255, 255, 255, 0.06);
  --sg-border: rgba(255, 255, 255, 0.12);

  --sg-text: #f5f7fb;
  --sg-text-soft: #cfd8e6;
  --sg-text-muted: #98a8be;

  --sg-gold: #d4af37;
  --sg-gold-soft: #f0d77a;
  --sg-gold-dark: #9f7b16;

  --sg-accent: #86b7ff;
  --sg-success: #8fd3a7;

  --sg-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.35);
  --sg-shadow-md: 0 12px 30px rgba(0, 0, 0, 0.25);
  --sg-radius-xl: 28px;
  --sg-radius-lg: 20px;
  --sg-radius-md: 14px;
  --sg-radius-sm: 10px;

  --sg-container: 1240px;

  --sg-transition: all 0.35s ease;
  --sg-blur: blur(14px);
}

/* ---------- RESET ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(134, 183, 255, 0.08), transparent 25%),
    linear-gradient(180deg, #07111f 0%, #081523 32%, #091a2b 100%);
  color: var(--sg-text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* ---------- GLOBAL CONTAINER ---------- */
.sg-container {
  width: min(100% - 32px, var(--sg-container));
  margin-inline: auto;
}

/* ---------- SECTION SPACING ---------- */
.sg-section {
  position: relative;
  padding: 100px 0;
}

.sg-section-sm {
  padding: 70px 0;
}

.sg-section-lg {
  padding: 130px 0;
}

/* ---------- TYPOGRAPHY ---------- */
.sg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sg-gold-soft);
  margin-bottom: 18px;
}

.sg-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sg-gold), transparent);
  display: inline-block;
}

.sg-title {
  margin: 0 0 18px;
  font-size: clamp(32px, 5vw, 68px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--sg-text);
}

.sg-title-md {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.sg-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--sg-text-soft);
}

.sg-text-muted {
  color: var(--sg-text-muted);
}

/* ---------- BUTTONS ---------- */
.sg-btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--sg-transition);
  border: 1px solid transparent;
  cursor: pointer;
}

.sg-btn-primary {
  color: #0a1220;
  background: linear-gradient(135deg, #f7df87, #d4af37 55%, #b88a17);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.22);
}

.sg-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(212, 175, 55, 0.26);
}

.sg-btn-secondary {
  color: var(--sg-text);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--sg-border);
  backdrop-filter: var(--sg-blur);
}

.sg-btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.35);
}

.sg-btn-outline {
  color: var(--sg-gold-soft);
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.sg-btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.08);
}

/* ---------- CARDS ---------- */
.sg-card {
  background: var(--sg-bg-card);
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius-lg);
  backdrop-filter: var(--sg-blur);
  box-shadow: var(--sg-shadow-md);
}

.sg-glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: var(--sg-blur);
}

/* ---------- GRID HELPERS ---------- */
.sg-grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.sg-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sg-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ---------- IMAGE STYLES ---------- */
.sg-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--sg-radius-xl);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--sg-shadow-lg);
}

.sg-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sg-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,17,31,0.08) 0%, rgba(7,17,31,0.55) 100%);
}

/* ---------- MICRO ANIMATIONS ---------- */
.sg-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.8s ease;
}

.sg-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.sg-float {
  animation: sgFloat 5s ease-in-out infinite;
}

@keyframes sgFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes sgPulseGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(212,175,55,0.0); }
  50% { box-shadow: 0 0 30px rgba(212,175,55,0.18); }
}

/* ---------- FORM BASE ---------- */
.sg-form-control {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--sg-text);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  outline: none;
  transition: var(--sg-transition);
}

.sg-form-control:focus {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.10);
}

textarea.sg-form-control {
  min-height: 140px;
  resize: vertical;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .sg-grid-2,
  .sg-grid-3,
  .sg-grid-4 {
    grid-template-columns: 1fr;
  }

  .sg-section {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .sg-container {
    width: min(100% - 22px, var(--sg-container));
  }

  .sg-title {
    font-size: clamp(30px, 10vw, 46px);
  }

  .sg-title-md {
    font-size: clamp(24px, 8vw, 34px);
  }

  .sg-text {
    font-size: 15px;
    line-height: 1.75;
  }

  .sg-btn {
    width: 100%;
  }

  .sg-btn-wrap {
    flex-direction: column;
  }
}/* End custom CSS */