/* HERO SECTION */
.hero{
  background:#d3e2f1;
  color:#1e293b;
  padding:50px 20px;
  text-align:center;
}

.hero h1{
  font-size:40px;
  margin-bottom:20px;
}

.hero p{
  font-size:18px;
  margin-bottom:30px;
}

.btn{
  display:inline-block;
  padding:12px 25px;
  margin:5px;
  background:#0a0036;
  color:#fbfafd;
  text-decoration:none;
  font-weight:bold;
  border-radius:5px;
  transition:0.3s;
}

.btn:hover{
  background:#ddd;
}

/* EXPERIENCE STRIP */
.experience {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.exp-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

/* Glow effect */
.exp-box::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(59,130,246,0.4), transparent);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: 0.5s;
}

/* Hover */
.exp-box:hover::before {
  opacity: 1;
}

.exp-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Number */
.exp-box h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.exp-box p {
  font-size: 15px;
  color: #cbd5e1;
  letter-spacing: 0.5px;
}

/* PROCESS */
.process{
  padding:70px 0;
  text-align:center;
}

.process-grid{
  display:flex;
  gap:30px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:40px;
}

.process-box{
  flex:1 1 250px;
  background:var(--gray);
  padding:30px;
  border-radius:8px;
  transition:0.3s;
}

.process-box:hover{
  background:var(--primary);
  color:#fff;
}

/* PRODUCTS */
.products{
  padding:70px 0;
  background:var(--gray);
  text-align:center;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  margin-top:40px;
}

.product-box{
  background:#fff;
  padding:25px;
  border-radius:8px;
  box-shadow:0 3px 10px rgba(0,0,0,0.08);
  transition:0.3s;
}

.product-box:hover{
  transform:translateY(-5px);
}

/* WHY US */
.why{
  padding:70px 0;
  text-align:center;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  margin-top:40px;
}

.why-box{
  background:var(--gray);
  padding:25px;
  border-radius:8px;
}

/* CTA */
.cta{
  background:var(--primary);
  color:#fff;
  text-align:center;
  padding:60px 20px;
}

.trade-section{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    padding:80px 20px;
    color:#fff;
    text-align:center;
}

.trade-title{
    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
}

.trade-subtitle{
    max-width:750px;
    margin:auto;
    color:#cbd5e1;
    margin-bottom:60px;
    line-height:1.8;
}

.trade-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:40px;
    max-width:1100px;
    margin:auto;
}

.trade-card{
    background:#ffffff;
    color:#1e293b;
    border-radius:20px;
    padding:35px 20px;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.trade-card img{
    width:80px;
    height:55px;
    object-fit:cover;
    border-radius:8px;
    margin-bottom:20px;
}

.trade-card h3{
    font-size:20px;
    margin-bottom:10px;
}

.trade-card p{
    font-size:14px;
    color:#475569;
}

.trade-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,0.25);
}