/* Add custom CSS styles below */ 
.s-products-slider-card{
  transition: all 0.35s ease;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
#mainnav{
  background-color:/*#1d1f1f*/;
}
.header-btn__icon sicon-user-circle
{
  font-color:white;
}
html[color-theme="dark"] .s-products-slider-card:hover{
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(255,255,255,0.1); 
  cursor: pointer;
}


html[color-theme="light"] .s-products-slider-card:hover{
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
salla-button button:hover{
  border-radius: 50px;
  transform: translateY(-6px) scale(1.03);
  border: 2px solid white;
  box-shadow: 
    0 0 5px rgb(245, 148, 37),
    0 0 15px rgb(245, 148, 37),
    0 0 25px rgba(245, 148, 37,0.1);
}/* round button colorful 
salla-button button{
  transition: all 3s ease;
}
@property --angle{
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}


salla-button button::after, salla-button button::before{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(from var(--angle), #EBC042, #F0B54E, #F59142, #FA704D, #B2532C);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 3px;
  border-radius: 10px;
  animation: 3s spin linear infinite;
}
salla-button button::before{
  filter: blur(1.5rem);
  opacity: 0.5;
}
@keyframes spin{
  from{
    --angle: 0deg;
  }
  to{
    --angle: 360deg;
  }
}*/
  /*
  border-radius: 14px;
  transform: translateY(-6px) scale(1.03);
  border: 2px solid white;
  box-shadow: 
    0 0 5px rgb(237, 115, 33),
    0 0 15px rgb(237, 115, 33),
    0 0 25px rgba(237, 115, 33,0.1);
} old glowing code*/

/* Trading Disclaimer Page Style 

.content--single-page{
border-radius:16px;
box-shadow:0 15px 40px rgba(0,0,0,.15);
border-top:4px solid #ed7220;
}

.content--single-page h1{
color:#ed7220;
font-size:32px;
text-align:center;
margin-bottom:25px;
}



.content-entry p{
background:#f8f8f8;
padding:18px 20px;
border-radius:10px;
margin-bottom:15px;
line-height:1.9;
font-size:16px;
color:#333;
border-right:4px solid #ed7220;
transition:all .3s ease;
}



.content-entry p:hover{
transform:translateY(-3px);
box-shadow:0 8px 25px rgba(0,0,0,.08);
}



.content-entry p:nth-child(1),
.content-entry p:nth-child(2){
background:#ed7220;
color:#fff;
font-weight:bold;
text-align:center;
border-right:none;
}



@media(max-width:768px){

.content--single-page{
padding:20px;
}

.content--single-page h1{
font-size:24px;
}

.content-entry p{
font-size:15px;
padding:16px;
}

}*/
/*bubble effect*/
.feature-icon{

  background: #4CAF50;
  border-radius: 50%;
  position: relative;
  animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
  0%{
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(237, 115, 33, 0.5);
  }

  70%{
    transform: scale(1);/*to increase the shape size*/
    box-shadow: 0 0 0 17px rgba(237, 115, 33, 0);
  }

  100%{
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(237, 115, 33, 0);
  }
}
/*smoth*/
.s-products-slider-card{
opacity:0;
transform:translateY(60px);
transition:all .8s ease;
}
.s-products-slider-card:nth-child(1){transition-delay:.1s;}
.s-products-slider-card:nth-child(2){transition-delay:.2s;}
.s-products-slider-card:nth-child(3){transition-delay:.3s;}
.s-products-slider-card:nth-child(4){transition-delay:.4s;}

/* when visible */
.s-products-slider-card.show{
opacity:1;
transform:translateY(0);
}
/*///////////////////////////////////////*/
/*///////////////////////////////////////*/
/*Here is the product part*/
/* Add custom CSS styles below */ 
.s-products-slider-card{
  transition: all 0.35s ease;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
/*#mainnav{
  background-color:#1d1f1f;
}*/
.header-btn__icon sicon-user-circle
{
  font-color:white;
}
html[color-theme="dark"] .s-products-slider-card:hover{
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(255,255,255,0.1); 
  cursor: pointer;
}


html[color-theme="light"] .s-products-slider-card:hover{
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
salla-button button:hover{
  border-radius: 50px;
  transform: translateY(-6px) scale(1.03);
  border: 2px solid white;
  box-shadow: 
    0 0 5px rgb(245, 148, 37),
    0 0 15px rgb(245, 148, 37),
    0 0 25px rgba(245, 148, 37,0.1);
}/* round button colorful 
salla-button button{
  transition: all 3s ease;
}
@property --angle{
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}


salla-button button::after, salla-button button::before{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(from var(--angle), #EBC042, #F0B54E, #F59142, #FA704D, #B2532C);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 3px;
  border-radius: 10px;
  animation: 3s spin linear infinite;
}
salla-button button::before{
  filter: blur(1.5rem);
  opacity: 0.5;
}
@keyframes spin{
  from{
    --angle: 0deg;
  }
  to{
    --angle: 360deg;
  }
}*/
  /*
  border-radius: 14px;
  transform: translateY(-6px) scale(1.03);
  border: 2px solid white;
  box-shadow: 
    0 0 5px rgb(237, 115, 33),
    0 0 15px rgb(237, 115, 33),
    0 0 25px rgba(237, 115, 33,0.1);
} old glowing code*/

/* Trading Disclaimer Page Style 

.content--single-page{
border-radius:16px;
box-shadow:0 15px 40px rgba(0,0,0,.15);
border-top:4px solid #ed7220;
}

.content--single-page h1{
color:#ed7220;
font-size:32px;
text-align:center;
margin-bottom:25px;
}



.content-entry p{
background:#f8f8f8;
padding:18px 20px;
border-radius:10px;
margin-bottom:15px;
line-height:1.9;
font-size:16px;
color:#333;
border-right:4px solid #ed7220;
transition:all .3s ease;
}



.content-entry p:hover{
transform:translateY(-3px);
box-shadow:0 8px 25px rgba(0,0,0,.08);
}



.content-entry p:nth-child(1),
.content-entry p:nth-child(2){
background:#ed7220;
color:#fff;
font-weight:bold;
text-align:center;
border-right:none;
}



@media(max-width:768px){

.content--single-page{
padding:20px;
}

.content--single-page h1{
font-size:24px;
}

.content-entry p{
font-size:15px;
padding:16px;
}

}*/
/*bubble effect*/
.feature-icon{

  background: #4CAF50;
  border-radius: 50%;
  position: relative;
  animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
  0%{
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(237, 115, 33, 0.5);
  }

  70%{
    transform: scale(1);/*to increase the shape size*/
    box-shadow: 0 0 0 17px rgba(237, 115, 33, 0);
  }

  100%{
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(237, 115, 33, 0);
  }
}
/*smoth*/
.s-products-slider-card{
opacity:0;
transform:translateY(60px);
transition:all .8s ease;
}
.s-products-slider-card:nth-child(1){transition-delay:.1s;}
.s-products-slider-card:nth-child(2){transition-delay:.2s;}
.s-products-slider-card:nth-child(3){transition-delay:.3s;}
.s-products-slider-card:nth-child(4){transition-delay:.4s;}

/* when visible */
.s-products-slider-card.show{
opacity:1;
transform:translateY(0);
}
/* Here is the product ////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////
//////////////////////////////////////////////// */
/*Here is the product part*/
/* ===== Reset & Base ===== */
/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #fafbfc;
  --fg: #0f1729;
  --card: #ffffff;
  --card-fg: #0f1729;
  --primary: #ed7220;
  --primary-fg: #ffffff;
  --primary-light: rgba(237, 114, 32, 0.08);
  --primary-border: rgba(237, 114, 32, 0.18);
  --muted: #64748b;
  --border: #e8ecf1;
  --secondary-bg: #f1f5f9;
  --glass-bg: rgba(255,255,255,0.72);
  --glass-border: rgba(200,210,225,0.45);
  --radius: 1rem;
  --radius-sm: 0.625rem;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 40px -8px rgba(237,114,32,0.2);
  --shadow-glow-hover: 0 0 60px -8px rgba(237,114,32,0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg);
  color: var(--fg);
  direction: rtl;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Utilities ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm {
  max-width: 800px;
}

.text-gradient {
  background: linear-gradient(135deg, #ed7220 0%, #f5a060 50%, #ed7220 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.text-accent {
  color: var(--primary);
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
}

/* ===== Scroll Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   HOME PAGE — HERO
   ============================================================ */
.home-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,114,32,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-secondary {
  position: absolute;
  top: 60%;
  left: 25%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 100%);
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.home-header {
  text-align: center;
  position: relative;
  z-index: 1;
}

.home-header .hero-badge {
  margin: 0 auto 2rem;
}

.home-title {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.home-desc {
  font-size: 1.25rem;
  color: var(--muted);
  font-weight: 400;
}


/* ============================================================
   HERO BADGE
   ============================================================ */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  color: var(--primary);
}

.hero-badge span {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* ============================================================
   SECTIONS — SERVICES
   ============================================================ */
.section-services {
  position: relative;
  padding: 5rem 0 2rem;
  background: var(--bg);
}

.section-services-secondary {
  position: relative;
  padding: 0 0 5rem;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.services-grid-secondary {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.875rem;
  padding: 2.5rem 2rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-xs);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-8px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-pro {
  border-color: var(--primary-border);
  background: linear-gradient(170deg, var(--card) 0%, rgba(237,114,32,0.03) 100%);
}

.service-card-pro::before {
  opacity: 0.5;
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrap {
  background: rgba(237,114,32,0.14);
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(237,114,32,0.15);
}

.icon-pro {
  background: rgba(237,114,32,0.1);
  border-color: rgba(237,114,32,0.25);
}

.service-badge {
  display: inline-block;
  padding: 0.2rem 0.85rem;
  border-radius: 2rem;
  font-size: 0.7rem;
  font-weight: 800;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-border);
  letter-spacing: 0.06em;
}

.badge-pro {
  background: rgba(237,114,32,0.12);
  border-color: rgba(237,114,32,0.3);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  flex-grow: 1;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0.65rem 2rem;
  border-radius: 0.625rem;
  background: var(--primary);
  color: var(--primary-fg);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  box-shadow: 0 2px 8px rgba(237,114,32,0.2);
  font-family: 'Cairo', sans-serif;
}

.btn-service:hover {
  background: #d4640f;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}


/* ============================================================
   INFO LINKS SECTION
   ============================================================ */
/* ===== Info Links ===== */
.info-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.info-link-item {
  padding: 0.55rem 1.6rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-link-item:hover {
  border-color: rgba(237, 114, 32, 0.3);
  color: var(--primary);
  background: rgba(237, 114, 32, 0.05);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--secondary-bg);
}

.footer p {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}


/* ============================================================
   HERO (Product pages)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 1rem;
}

.hero-desc-secondary {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(237,114,32,0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  box-shadow: var(--shadow-glow-hover);
  transform: translateY(-2px) scale(1.02);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--fg);
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--primary-border);
  color: var(--primary);
}

/* Chart Mockup */
.hero-chart .chart-mockup {
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-glow);
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.chart-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.chart-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(107,122,141,0.3);
}

.dot-primary {
  background: rgba(237,114,32,0.6);
}

.chart-label {
  margin-right: auto;
  font-size: 0.75rem;
  color: var(--muted);
}

.chart-area {
  flex: 1;
  border-radius: 0.75rem;
  background: rgba(245,246,248,0.6);
  border: 1px solid rgba(223,227,234,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.chart-icon {
  color: rgba(237,114,32,0.35);
}

.chart-area p {
  font-size: 0.875rem;
  color: var(--muted);
}

.chart-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.stat-box {
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.6rem;
  background: rgba(245,246,248,0.5);
  border: 1px solid rgba(223,227,234,0.3);
}

.stat-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}


/* ============================================================
   SECTIONS (Product pages)
   ============================================================ */
.section {
  padding: 6rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto;
}


/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-xs);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  transform: translateY(-4px);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrap {
  background: rgba(237,114,32,0.14);
  transform: scale(1.06);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}


/* ===== Guarantee ===== */
.guarantee-wrap {
  display: flex;
  justify-content: center;
}

.guarantee-card {
  max-width: 680px;
  width: 100%;
  text-align: center;
  padding: 3rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(237,114,32,0.2);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.guarantee-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 2px solid rgba(237,114,32,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.guarantee-card h2 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.guarantee-card p {
  font-size: 1.1rem;
  color: var(--muted);
}


/* ===== Note ===== */
.note-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(237,114,32,0.15);
  background: rgba(237,114,32,0.04);
  max-width: 800px;
  margin: 0 auto;
}

.note-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-top: 2px;
}

.note-box p {
  font-size: 0.9rem;
  color: rgba(15,23,41,0.75);
  line-height: 1.9;
}

.note-label {
  color: var(--primary);
  font-weight: 700;
}


/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xs);
}

.faq-item.open {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  cursor: pointer;
  text-align: right;
  transition: color 0.3s ease;
}

.faq-trigger:hover {
  color: var(--primary);
}

.faq-chevron {
  transition: transform 0.3s ease;
  color: var(--muted);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-content {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.faq-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
}


/* ============================================================
   INFO PAGES
   ============================================================ */
.info-page {
  min-height: 100vh;
  padding: 3rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.info-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--primary);
}

.back-link svg {
  transform: rotate(180deg);
}

.info-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 2px solid var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.info-icon-about {
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.25);
  color: #3b82f6;
}

.info-icon-gold {
  background: linear-gradient(135deg, rgba(234,179,8,0.15), rgba(245,158,11,0.1));
  border-color: rgba(234,179,8,0.4);
  color: #d97706;
}

.info-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.text-gold {
  background: linear-gradient(135deg, #d97706, #f59e0b, #eab308);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-badge {
  display: inline-block;
  padding: 0.4rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-border);
  letter-spacing: 0.05em;
}

.badge-gold {
  background: linear-gradient(135deg, rgba(234,179,8,0.15), rgba(245,158,11,0.1));
  border-color: rgba(234,179,8,0.35);
  color: #b45309;
}

.info-content {
  border-radius: 1.25rem;
  padding: 2.5rem;
}

.info-section {
  margin-bottom: 1.75rem;
}

.info-section:last-child {
  margin-bottom: 0;
}

.info-section p {
  font-size: 1rem;
  line-height: 2;
  color: var(--fg);
}

.info-section strong {
  color: var(--primary);
  font-weight: 700;
}

.warning-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.15);
}

.warning-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(239,68,68,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc2626;
  margin-top: 2px;
}

.warning-box p {
  color: rgba(15,23,41,0.85);
}

.highlight-box {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(237,114,32,0.05);
  border: 1px solid rgba(237,114,32,0.15);
}

.highlight-box .highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
}

.gold-highlight-box {
  padding: 1.75rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(234,179,8,0.08), rgba(245,158,11,0.04));
  border: 1px solid rgba(234,179,8,0.25);
  position: relative;
}

.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.gold-badge svg {
  width: 18px;
  height: 18px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero {
    padding: 3rem 0;
    min-height: auto;
  }

  .home-hero {
    min-height: auto;
    padding: 5rem 0 3rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid-secondary {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .section-services {
    padding: 3rem 0 1.5rem;
  }

  .section-services-secondary {
    padding: 0 0 3rem;
  }

  .service-card {
    padding: 2rem 1.5rem 1.75rem;
  }

  .info-links {
    flex-direction: column;
    align-items: center;
  }

  .info-link-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}


@media (max-width: 500px) {
  div.hero-chart.fade-up {
    display: none;
  }

  div.info-content.glass {
    padding: 0;
    margin: 0;
    border:none;
  }
  div.container.container-sm{
    padding: 0;
    margin: 0;
  }
  .section-info-links {
  padding: 3rem 0 5rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--secondary-bg) 100%);
}

.info-links {
  display: flex;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.info-link-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: 0.625rem;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xs);
}

.info-link-item svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.info-link-item:hover {
  border-color: var(--primary-border);
  color: var(--primary);
  background: rgba(237,114,32,0.03);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.info-link-item:hover svg {
  opacity: 1;
  color: var(--primary);
}
}
.home-hero{
  padding-top:30px;
}
.home-desc{
  padding-bottom:10px;
}