
body { font-family: 'Inter', sans-serif; }
html { scroll-behavior: smooth; overflow-x: hidden; }

/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  background: #4a5ea4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 2;
  transition: opacity 1s ease;
}
.snum {
  font-family: "Playfair Display", serif;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(60px); transition: 1s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Glass */
.glass {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Navbar scroll */
.navbar-scroll {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding-top: 10px;
  padding-bottom: 10px;
  transition: 0.4s ease;
}

/* Hamburger */
.hamburger div {
  width: 25px;
  height: 3px;
  background: rgb(0, 0, 0);
  margin: 5px;
  transition: 0.4s;
}

.hamburger.active div:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger.active div:nth-child(2) {
  opacity: 0;
}
.hamburger.active div:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Parallax */
.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

#products{
    padding:60px 5%;
}

h2{
    text-align:center;
    font-size:32px;
    margin-bottom:40px;
}



.swiper {
  width: 100%;
  padding-bottom: 60px;
}

.swiper-slide {
  height: 300px;
  width: 250px;
  border-radius: 20px;
  overflow: hidden;
  background: transparent; /* remove background layer */
  box-shadow: none;        /* remove shadow */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Remove any overlay if exists */
.swiper-slide::before,
.swiper-slide::after {
  display: none !important;
  content: none !important;
}

/* Pure image */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* IMPORTANT: use cover (not fit) */
  border-radius: 20px;
  display: block;
}





/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 999;
  transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }


@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(34,197,94,0.6),
                0 0 10px rgba(34,197,94,0.5),
                0 0 15px rgba(34,197,94,0.4);
  }
  50% {
    box-shadow: 0 0 15px rgba(34,197,94,0.9),
                0 0 25px rgba(34,197,94,0.8),
                0 0 35px rgba(34,197,94,0.7);
  }
  100% {
    box-shadow: 0 0 5px rgba(34,197,94,0.6),
                0 0 10px rgba(34,197,94,0.5),
                0 0 15px rgba(34,197,94,0.4);
  }
}

.whatsapp-glow {
  animation: glow 2s infinite ease-in-out;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #374151;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #facc15; /* gold accent */
  color: #0f172a;
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 10px 20px rgba(250,204,21,0.4);
}

/* Optional fade-in animation */
.social-icon {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.social-icon:nth-child(1) { animation-delay: 0.1s; }
.social-icon:nth-child(2) { animation-delay: 0.2s; }
.social-icon:nth-child(3) { animation-delay: 0.3s; }
.social-icon:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #374151;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-social:hover {
  background: #facc15;
  color: #0f172a;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 18px rgba(250,204,21,0.4);
}


/* ===== ABOUT SECTION ===== */

#about {
  padding: 90px 2px;
  background: #f8fafc;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.about-container {
  max-width: 900px;
  margin: auto;
}

/* SMALL LABEL */
.eyl {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c59d2a;
  font-weight: 600;
  margin-bottom: 15px;
}

/* TITLE */
.stitle {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.stitle em {
  color: #c59d2a;
  font-style: normal;
}

/* PARAGRAPH */
.ap {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}

/* FEATURES */
.afeats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.af {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.afi {
  font-size: 24px;
}

.aft {
  font-weight: 600;
  margin-bottom: 5px;
  /* font-family: 'Playfair Display', serif; */
  text-align: center;
  align-items: center;
}

.afs {
  font-size: 14px;
  color: #6b7280;
  font-family: Arial, sans-serif;
}

/* MARKETS */
.mkts {
  margin-top: 40px;
}

.mp {
  display: inline-block;
  background: #e5e7eb;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  margin: 5px;
  font-family: Arial, sans-serif;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

  .stitle {
    font-size: 32px;
  }

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

  #about {
    padding: 40px 40px;
  }

}






/* ===== SERVICES SECTION ===== */

#services {
  padding: 100px 20px;
  background: #f8fafc;
  text-align: center;
}

.shd {
  max-width: 800px;
  margin: 0 auto 70px;
}

.eyc {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c59d2a;
  font-weight: 600;
  margin-bottom: 15px;
}

.stitle {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  color: #111827;
}

.stitle em {
  color: #c59d2a;
  font-style: normal;
}

.ssub {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.6;
}

/* ===== GRID ===== */

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

/* ===== CARD ===== */

.sc {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  overflow: hidden;
}

.sc:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Number */
.scn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 70px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
}

/* Icon */
.sci {
  font-size: 38px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;   /* horizontal center */
  align-items: center; 
}

/* Title */
.scname {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111827;
}

/* Description */
.scdesc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Link */
.sclink {
  font-size: 14px;
  font-weight: 600;
  color: #c59d2a;
  cursor: pointer;
  transition: 0.3s;
}

.sclink:hover {
  letter-spacing: 1px;
}

/* ===== REVEAL ANIMATION ===== */

.rv {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.rv.active {
  opacity: 1;
  transform: translateY(0);
}















/* SECTION WRAPPER */
.trade-visual {
  position: relative;
  width: 100%;
}

/* IMAGE CONTAINER */
.trade-bg {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  
 
}

.trade-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */
.trade-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* CONTENT OVER IMAGE */
.trade-content {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10%;
  color: white;
}

/* LEFT SIDE */
.trade-left h2 {
  font-size: 42px;
  font-family: "Playfair Display", serif;
}

.trade-left em {
  color: #c59d2a;
  font-style: normal;
}

/* RIGHT SIDE */
.trade-right {
  max-width: 400px;
  font-size: 18px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .trade-bg {
    height: 400px;
  }

  .trade-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }

  .trade-left h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .trade-right {
    max-width: 100%;
  }
}








/* ROW LAYOUT */
.about-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
}

/* LEFT IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  /* border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08); */
}

/* RIGHT FEATURES */
.afeatures {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* EACH FEATURE ROW */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.feature-item img {
  width: 40px;
}

.feature-item h4 {
  margin: 0 0 5px;
  font-weight: 600;
}

.feature-item p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

/* MARKETS CENTER */
.mkts {
  text-align: center;
  margin-top: 60px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-row {
    flex-direction: column;
  }
}




/* .brand-bg {
  text-align: center;
  font-weight: 900;
  letter-spacing: 8px;

  font-size: clamp(20px, 9vw, 80px);
  
  color: #000;
  opacity: 0.2;
  filter: blur(3px);

  margin-bottom: 10px;
  user-select: none;
} */



/* ================= SECTION ================= */
#coming-soon {
  padding: 80px 20px;
  background: #f9fafb;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  background: #e5f3ff;
  color: #0077cc;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* .section-title {
  font-size: 32px;
  margin: 10px 0;
  font-weight: 700;
}

.section-sub {
  color: #555;
  font-size: 16px;
  max-width: 600px;
  margin: auto;
} */

/* ================= GRID ================= */
.coming-soon-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* ================= CARD ================= */
.coming-card {
  width: 100%;
  max-width: 390px; /* Normal desktop width */
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 390px;
}

.coming-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
}

/* ================= IMAGE ================= */
.card-img {
  position: relative;
}

.card-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ================= BADGE (ON IMAGE TOP) ================= */
.cs-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff0000;
  color: #000000;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* ================= CONTENT ================= */
/* .card-content {
  padding: 20px;
  text-align: center;
}

.card-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.card-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
} */

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  #coming-soon {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 26px;
  }

  .coming-card {
    max-width: 100%; /* Full width on mobile */
  }

  .card-img img {
    height: 390px;
  }
}