html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  padding-top: 80px;
  overflow-x: hidden;
}

:root {
  --primary-purple: #6A1564;
  --secondary-purple: #4b1365;
  --accent-pink: #d70b8c;
  --accent-violet: #9b4dca;
  --soft-bg: #f7f1fb;
  --brand-orange: #D96C1A;
  --brand-red: #E63D29;
  --brand-yellow: #E8B931;
  --hero-dark: #0f0505;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background-image: linear-gradient(rgba(15, 5, 5, 0.9), rgba(15, 5, 5, 0.8)), url('Images_Annapuurna/branding.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-glow {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 61, 41, 0.25) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  transform: translateY(-50%);
}

.moving-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.4;
}

.line-path {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: dash 10s linear infinite;
  opacity: 0.8;
}

.line-delay-1 {
  animation-delay: -5s;
  opacity: 0.5;
}

.neon-white {
  stroke-linecap: round;
}

.neon-orange {
  stroke-linecap: round;
}

@keyframes dash {
  from {
    stroke-dashoffset: 3000;
  }

  to {
    stroke-dashoffset: -3000;
  }
}

.brand-tag {
  color: var(--brand-red);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 800;
}

.text-brand-gradient {
  background: linear-gradient(90deg, #D96C1A, #E63D29);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  max-width: 500px;
  line-height: 1.6;
}

/* Buttons */
.btn-hero-primary {
  background: linear-gradient(135deg, #D96C1A, #E63D29);
  color: white;
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(217, 108, 26, 0.4);
  color: white;
}

.btn-hero-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: white;
}

/* Imagery */
.hero-img-wrapper {
  z-index: 2;
}

.product-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 185, 49, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(40px);
}

.floating-img {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
}

.main-img {
  position: relative;
  width: 80%;
  z-index: 3;
}

.sub-img-1 {
  position: absolute;
  width: 40%;
  top: -10%;
  right: 0%;
  z-index: 2;
  animation-delay: -3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Bottom Accent */
.bottom-accent-line {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 150px;
  z-index: 1;
  opacity: 0.8;
}

/* TICKER TAPE */
.ticker-tape {
  background: linear-gradient(90deg, #E63D29, #D96C1A, #E8B931);
  padding: 15px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.ticker-wrapper {
  display: flex;
  white-space: nowrap;
  animation: ticker 8s linear infinite;
}

.ticker-item {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0 40px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
}

.ticker-item i {
  margin-right: 10px;
  font-size: 1.3rem;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.scroll-down-icon {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 3;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }

  40% {
    transform: translate(-50%, -10px);
  }

  60% {
    transform: translate(-50%, -5px);
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-section {
    height: auto;
    padding: 100px 0;
  }

  .ticker-item {
    font-size: 1.25rem;
    padding: 0 30px;
  }

  .ticker-item i {
    font-size: 1.4rem;
  }
}

/* ========================================
   BRAND STATEMENT SECTION
======================================== */
.brand-statement-section {
  background: #fff;
  padding: 100px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

/* Subtle animated background glow */
.brand-statement-section::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 61, 41, 0.05) 0%, transparent 70%);
  animation: pulseGlow 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

.brand-big-text {
  padding-right: 2rem;
}

.brand-line {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -2px;
  overflow: hidden;
}

/* Slide-in reveal for each line */
.brand-line span {
  display: inline-block;
  animation: slideReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand-line:nth-child(1) span {
  animation-delay: 0.1s;
}

.brand-line:nth-child(2) span {
  animation-delay: 0.3s;
}

.brand-line:nth-child(3) span {
  animation-delay: 0.5s;
}

@keyframes slideReveal {
  from {
    transform: translateY(60px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.brand-muted {
  color: #d1d0d0;
  transition: color 0.4s ease;
}

.brand-big-text:hover .brand-muted {
  color: #aaa;
}

/* Animated flowing gradient on highlight text */
.brand-highlight {
  background: linear-gradient(90deg, #E63D29, #D96C1A, #E8B931, #E63D29);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 4s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 300% center;
  }
}

.brand-accent-text {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #E8B931;
  letter-spacing: 0;
  position: relative;
  display: inline-block;
}

/* Animated underline sweep */
.brand-accent-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #E63D29, #E8B931);
  animation: underlineSweep 2s ease-in-out 1s forwards;
  border-radius: 4px;
}

@keyframes underlineSweep {
  to {
    width: 100%;
  }
}

.brand-desc-panel {
  padding-left: 2rem;
  border-left: 3px solid #E8B931;
  animation: fadeInRight 1s ease 0.6s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.brand-divider-line {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, #E63D29, #D96C1A);
  border-radius: 4px;
  animation: expandLine 0.8s ease 0.8s both;
  transform-origin: left;
}

@keyframes expandLine {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.brand-desc-text {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.75;
}

.brand-desc-text strong {
  color: #D96C1A;
}

.brand-cta-link {
  color: #E63D29;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.brand-cta-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #E63D29, #D96C1A);
  transition: width 0.3s ease;
}

.brand-cta-link:hover {
  color: #D96C1A;
}

.brand-cta-link:hover::after {
  width: 100%;
}

.brand-cta-link:hover i {
  transform: translateX(5px);
}

.brand-cta-link i {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

@media (max-width: 991px) {
  .brand-statement-section {
    padding: 60px 0;
  }

  .brand-big-text {
    padding-right: 0;
    margin-bottom: 2.5rem;
  }

  .brand-desc-panel {
    padding-left: 1.25rem;
  }

  .brand-line {
    letter-spacing: -1px;
  }
}

/* ========================================
   BRAND PARTICLES
======================================== */
.brand-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: floatParticle 8s ease-in-out infinite;
}

.p1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #E63D29, transparent);
  top: -80px;
  left: -80px;
  animation-duration: 10s;
}

.p2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #D96C1A, transparent);
  bottom: -60px;
  left: 30%;
  animation-duration: 7s;
  animation-delay: -3s;
}

.p3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #E8B931, transparent);
  top: 20%;
  right: 10%;
  animation-duration: 9s;
  animation-delay: -5s;
}

.p4 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #E63D29, transparent);
  bottom: 10%;
  right: 30%;
  animation-duration: 6s;
  animation-delay: -2s;
}

@keyframes floatParticle {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.1);
  }
}


/* ========================================
   BRAND USP LIST
======================================== */
.brand-usp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-usp-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #444;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(230, 61, 41, 0.04);
  border: 1px solid rgba(230, 61, 41, 0.1);
  transition: all 0.3s ease;
}

.brand-usp-list li:hover {
  background: rgba(230, 61, 41, 0.08);
  border-color: rgba(217, 108, 26, 0.3);
  transform: translateX(4px);
}

.brand-usp-list li i {
  color: #E63D29;
  font-size: 1rem;
  flex-shrink: 0;
}






 