:root {
  --main-color: #110102; /* Dark rich black */
  --secondary-color: #EC1C23; /*  red shade */
  --accent-color: linear-gradient(90deg, #f7971e, #ffd200); /* Gradient yellow/orange */
  --text-gradient: linear-gradient(to bottom, #ffffff, #c59898); /* Soft white to grey gradient */
  --background-gradient: linear-gradient(135deg, #0f2027, #203a43, #2c5364); /* Elegant dark gradient */
  --text-color: #ffffff; /* Default fallback */
  --border-radius: 8px;
  --transition-speed: 0.3s;
}
html, body {
  height: 100%;
  scroll-behavior: auto !important; /* Prevent native scroll conflicts */
  background-color: var(--main-color);
}
/* a{
  list-style: none;
} */

.heading{
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Poppins", serif;
  line-height: 1.3;
}
.text{
 
  font-family: "Montserrat", sans-serif;
  font-size: clamp(18px, 2vw, 19px);  
  line-height: 1.5;
}

.text-secondary{
 
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}
.highlight-color{
  color: #EC1C23;
}
::selection {
  background: red;
  color: white; /* Optional: change text color too */
}
/* cards */

  .glass-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    box-shadow:
      inset -4px -4px 12px rgba(255, 255, 255, 0.08),
      inset 4px 4px 20px rgba(255, 255, 255, 0.2),
      0 30px 60px rgba(0, 0, 0, 0.9),
      0 10px 25px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .corner-shine {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.85), transparent 90%);
    filter: blur(80px);
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
  }

  .icon-box {
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.2), 0 4px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

@media (max-width: 768px) {
.glass-card {
  background: #0D0D0D; /* Solid dark background */
  backdrop-filter: none; /* No blur since it's solid */
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.1); /* Optional subtle border */
  box-shadow:
    inset -1px -1px 5px rgba(255, 255, 255, 0.05),
    inset 1px 1px 10px rgba(255, 255, 255, 0.03),
    0 15px 35px rgba(0, 0, 0, 0.6),
    0 5px 15px rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}

.corner-shine {
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.07),
    transparent 75%
  );
}

}



/* Stats section */
#stats-section{
  background-color: var(--main-color);
}

  /* Animated Button css */
  /* From Uiverse.io by gharsh11032000 */ 
.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding:0px 28px;
  border: 4px solid transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: var(--text-color); /* 🔴 Deep red */
  box-shadow: 0 0 0 2px var(--secondary-color);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: var(--secondary-color); /* 🔴 Red arrow */
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: white;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: white;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px var(--secondary-color);
}

.animated-button:hover .circle {
  width: 350px;
  height: 300px;
  opacity: 1;
}

/* Hero Main line */
.hero-main-line{
  color: var(--text-gradient);
}