@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  /* background-color: #111111; */
  /* background: linear-gradient(180deg, #111111, #1a1a1a); */
  background: linear-gradient(to bottom, #2c2c2c, #444);
  font-family: "Montserrat", sans-serif;
}

/* p {
  color: #cacaca !important;
} */

header {
  position: relative;
  /* background-image: url("../images/17581684_rm378-05f.jpg"); */
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: 80vh; /* optional */
  z-index: 1;
}

/* header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); 
  z-index: -1; 
} */
.navbar.scrolled {
  background: #000;
}
.navbar {
  /* margin: 0px 60px; */
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999 !important;
}

.links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.links ul li {
  list-style-type: none;
}

.links ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
}

.navbar .links ul li a :hover {
  color: #f26e2e;
}

.buttons a {
  background-color: #f26e2e;
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  margin: 0;
  font-size: 14px;
}

.hero .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12rem 60px 20px 60px;
}

.hero h1 {
  background: linear-gradient(
    101.63deg,
    #ff3733 23.06%,
    #ff3733 47.79%,
    #fe904d 80.78%
  );

  -webkit-background-clip: text; /* for Safari & Chrome */
  background-clip: text;
  color: transparent; /* make actual text transparent */
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 54px;
  font-weight: 600;
}

.hero p {
  text-align: center;
  color: #353f37;
  line-height: 1.8;
}

.hero-chart {
  width: 80%;
  margin: 0 auto;
  margin-top: 6W0px;
  position: relative;
  border-radius: 8px;
  /* z-index: 1; */
}

/* The glowing orange halo */
.hero-chart::before {
  content: "";
  position: absolute;
  top: -60px; /* how high the glow starts */
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 300px;

  background: radial-gradient(
    circle,
    rgba(255, 150, 50, 0.45),
    /* bright orange center */ rgba(255, 100, 20, 0) 70% /* fade outward */
  );
  filter: blur(40px); /* smooth glow */
  z-index: -1; /* sits behind the chart */
  pointer-events: none;
}

.main-section {
  background: #110700;
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 500px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.section-title {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}
.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 136, 0.2);
  padding: 8px 15px;
  border-radius: 20px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}
.symbol-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.symbol-btn {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
}
.chart-container {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.chart-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}
.about-section {
  padding: 60px;
  /* margin-top: 70vh; */
}
.about-sec-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.about-text {
  width: 50%;
}

.about-img {
  width: 50%;
}

.about-img img {
  border-radius: 10px;
}

.about-text {
  width: 50%;
}

.about-img {
  width: 50%;
}

.why-chose {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 60px;
}

.why-chose h2 {
  background: linear-gradient(
    101.63deg,
    #faebdc 23.06%,
    #faebdc 47.79%,
    #837d77 80.78%
  );
  -webkit-background-clip: text; /* for Safari & Chrome */
  background-clip: text;
  color: transparent; /* make actual text transparent */
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 36px;
}

.why-chose p {
  color: #d3c4bb;
  line-height: 1.8;
  font-size: 15px;
  text-align: center;
}

.features {
  margin-top: 30px;
}

.row1,
.row2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.row2 {
  margin-top: 30px;
}

.feature-card {
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  width: 310px;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
  backdrop-filter: blur(18px);
  box-shadow: 0px 0px 54px 10px #fcead812 inset;
  border-radius: 10px;
  height: 300px;
  background-color: #2c2c2c;
}

.feature-card h3 {
  margin-top: 10px;
  color: #fff;
  text-transform: uppercase;
}

.feature-card p {
  text-align: left;
  color: #fcfcfc;
}
.croudfunding {
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.crowd-img {
  width: 50%;
  /* background-image: url("../images/back.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  /* height: 400px; */
  /* width: 450px; */
  /* border-radius: 10px; */
}

.crowd-text {
  width: 50%;
}

.crowd-text p {
  color: #d3c4bb;
  line-height: 1.8;
  font-size: 15px;
}

.crowd-text h3 {
  background: linear-gradient(
    101.63deg,
    #faebdc 23.06%,
    #faebdc 47.79%,
    #837d77 80.78%
  );
  -webkit-background-clip: text; /* for Safari & Chrome */
  background-clip: text;
  color: transparent; /* make actual text transparent */
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  margin-bottom: 20px;
}

.tokenomics {
  position: relative;
  margin: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  /* background-image: url("../images/17581684_rm378-05f.jpg"); */
  background-color: #110700;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  z-index: 0;
}

/* .tokenomics::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0; 
} */

.tokenomics * {
  position: relative;
  z-index: 2; /* content above overlay */
}

.token-text {
  width: 50%;
}

.token-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.token-div {
  padding: 20px;
  /* border: 1px solid #f26e2e; */
  border-radius: 10px;
}

.token-div h3 {
  color: #f26e2e;
}

.token-div p {
  color: #353f37;
  margin-top: 20px;
  line-height: 1.8;
  font-size: 16px;
}

.token-div ul li {
  margin-bottom: 10px;
  color: #f26e2e;
  font-weight: 700;
  /* margin-left: 20px; */
  list-style-type: none;
}
.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-left: 30px;
  margin: 8px 0;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  background-image: url("../images/arrow.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.token-div ul {
  margin-bottom: 20px;
}
.social-icons .icon {
  font-size: 28px; /* adjust size */
  color: #d85b1f;
  margin: 0 12px;
  transition: 0.3s ease;
}

.social-icons .icon:hover {
  color: #b44a1a; /* darker hover optional */
}

footer {
  display: flex;
  /* justify-content: center; */
  /* align-items: center; */
  gap: 20px;
  flex-direction: column;
}

footer .first {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

hr {
  border: none;
  height: 2px;
  background: #2e2e2e;
}
/* Hide mobile button by default */
.mobile-btn {
  display: none;
}

/* Hamburger icon (hidden on desktop) */
.menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
}

/* ===== Responsive Navbar ===== */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  footer .first {
    flex-direction: column;
    gap: 20px;
  }
  .hero h1 {
    font-size: 46px;
  }

  /* Hide desktop button */
  .buttons {
    display: none;
  }

  /* Mobile menu styles */
  .links {
    position: absolute;
    top: 70px;
    left: -100%;
    width: 100%;
    background-color: #000;
    transition: left 0.3s ease;
    padding-top: 10px;
    padding-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    text-align: center;
  }

  .links.active {
    left: 0;
  }

  .links ul {
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    gap: 20px;
  }

  .mobile-btn {
    display: block;
  }

  .mobile-btn a {
    text-decoration: none;
    color: #fff;
    background-color: #f26e2e;
    padding: 10px 16px;
    border-radius: 6px;
    display: inline-block;
  }
  header {
    height: auto;
  }
  .about-sec-wrap {
    flex-direction: column;
  }
  .about-section {
    padding: 20px;
  }
  .about-text {
    width: 100%;
  }
  .about-img {
    width: 100%;
  }
  .why-chose {
    padding: 20px;
  }
  .row1,
  .row2 {
    flex-direction: column;
  }
  .croudfunding {
    padding: 20px;
    flex-direction: column;
  }
  .crowd-img {
    width: 100%;
  }
  .crowd-text {
    width: 100%;
  }
  .tokenomics {
    padding: 20px;
    flex-direction: column;
    margin: 20px;
  }
  .token-text {
    width: 100%;
  }
  .token-div {
    padding: 0;
  }
  .token-image {
    width: 100%;
  }
  .hero-chart {
    width: 95%;
  }
  .hero-chart::before {
    display: none;
  }
  .hero .content {
    padding-top: 7rem;
  }
  .navbar {
    /* margin: 0 20px !important; */
  }
  /* .features {
    margin: 30px 10px 0 10px;
  } */
  /* .row1 {
    margin: 10px;
  } */
  .feature-card {
    width: auto;
    height: auto;
  }
}

.linear-gradient-border {
  position: relative;
  padding: 10px;
  border-radius: 6px;
  z-index: 1;
}

.linear-gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px; /* border thickness */
  background: linear-gradient(101.63deg, #ff3733, #fe904d);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.edu-hub {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.edu-hub {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: relative;
  background: url("../images/abstract-technology-background-concept.jpg")
    center/cover no-repeat;
  z-index: 0;
  /* padding-top: 100px;
  padding-bottom: 100px; */
}

/* Black overlay */
.edu-hub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* 60% black overlay */
  z-index: 0;
}

/* To ensure your inside text stays above everything */
.edu-hub > * {
  position: relative;
  z-index: 2;
}

.edu-hub h2 {
  background: linear-gradient(
    101.63deg,
    #faebdc 23.06%,
    #faebdc 47.79%,
    #837d77 80.78%
  );
  -webkit-background-clip: text; /* for Safari & Chrome */
  background-clip: text;
  color: transparent; /* make actual text transparent */
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  line-height: 1.2;
  text-align: center;
  width: 1000px;
}

.edu-hub p {
  margin-top: 20px;
}

.edu-hub h2 {
  margin: 0 !important;
}

.edu-hub p {
  text-align: center;
  color: #fcfcfc;
  line-height: 2;
}
.edu-hub h2 {
  line-height: 1.5;
}
@media (max-width: 768px) {
  .edu-hub p,
  .edu-hub h2 {
    width: 100%;
  }

  .edu-hub h2 {
    font-size: 32px;
    line-height: 34px;
  }
  .edu-hub {
    padding: 20px;
  }
}
