@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  color: #fff3f5;
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  background: #6d041b;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

main {
  width: 100%;
  flex: 1;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  background: none;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #6d041b;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(#ff9a3c, #d72652);
}

.container {
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  max-width: 1240px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}
@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.8rem;
  gap: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label::before {
  border-radius: 2px;
  width: 24px;
  height: 2px;
  content: "";
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
}

.section-title {
  margin-bottom: 20px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
}
.section-title span {
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: #d7a6af;
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.8;
}

.btn-primary {
  color: #ffffff;
  position: relative;
  z-index: 1;
  border: none;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 10px;
  cursor: pointer;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  outline: none;
  overflow: hidden;
}
.btn-primary::after {
  position: absolute;
  z-index: -1;
  border-radius: inherit;
  content: "";
  inset: 0;
  background: linear-gradient(135deg, rgba(210, 166, 174, 0.18) 0%, rgba(109, 8, 29, 0.22) 100%);
  opacity: 0;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(210, 166, 174, 0.35), 0 0 28px rgba(109, 8, 29, 0.28);
}
.btn-primary:hover::after {
  opacity: 1;
}
.btn-primary {
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  box-shadow: 0 4px 24px rgba(210, 166, 174, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(210, 166, 174, 0.45);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.404) !important;
  border-radius: 60px;
  color: #ffffff;
  position: relative;
  z-index: 1;
  border: none;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 10px;
  cursor: pointer;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  outline: none;
  overflow: hidden;
}
.btn-outline::after {
  position: absolute;
  z-index: -1;
  border-radius: inherit;
  content: "";
  inset: 0;
  background: linear-gradient(135deg, rgba(210, 166, 174, 0.18) 0%, rgba(109, 8, 29, 0.22) 100%);
  opacity: 0;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(210, 166, 174, 0.35), 0 0 28px rgba(109, 8, 29, 0.28);
}
.btn-outline:hover::after {
  opacity: 1;
}
.btn-outline {
  background: transparent;
}
.btn-outline:hover {
  border-color: #ff9a3c !important;
  color: #ff9a3c;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(210, 166, 174, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  filter: blur(6px);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  filter: blur(6px);
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  filter: blur(6px);
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.delay-1 {
  transition-delay: 0.1 s;
}

.delay-2 {
  transition-delay: 0.2 s;
}

.delay-3 {
  transition-delay: 0.3 s;
}

.delay-4 {
  transition-delay: 0.4 s;
}

.delay-5 {
  transition-delay: 0.5 s;
}

.delay-6 {
  transition-delay: 0.6 s;
}

.delay-7 {
  transition-delay: 0.7 s;
}

.delay-8 {
  transition-delay: 0.8 s;
}

.navbar {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  padding: 0px 0;
  background: #fffcfd;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .nav-logo {
  z-index: 10;
  display: flex;
  gap: 10px;
}
.navbar .nav-logo img {
  width: auto;
  height: 90px;
}
.navbar .nav-links {
  display: none;
}
@media (min-width: 992px) {
  .navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
  }
}
.navbar .nav-links a {
  position: relative;
  color: #010101;
  font-weight: 500;
  font-size: 1.3rem;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .nav-links a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  border-radius: 2px;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .nav-links a:hover, .navbar .nav-links a.active {
  color: #010101;
}
.navbar .nav-links a:hover::after, .navbar .nav-links a.active::after {
  width: 100%;
}
.navbar .nav-cta {
  display: none;
}
@media (min-width: 992px) {
  .navbar .nav-cta {
    display: flex;
  }
}
.navbar .nav-cta {
  padding: 10px 24px;
  font-size: 0.88rem;
}
.navbar .hamburger {
  position: relative;
  z-index: 1001;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px;
  gap: 5px;
  cursor: pointer;
  background: transparent;
}
@media (min-width: 992px) {
  .navbar .hamburger {
    display: none;
  }
}
.navbar .hamburger span {
  border-radius: 20px;
  width: 26px;
  height: 2px;
  display: block;
  background: #1a050b;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
  transform-origin: center;
}
.navbar .hamburger {
  /* OPEN STATE */
}
.navbar .hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: #fffcfd;
}
.navbar .hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar .hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: #ffffff;
}
.navbar {
  /* ───────────────── MOBILE MENU ───────────────── */
}
.navbar .mobile-menu {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -100%;
  width: min(340px, 100vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  background: linear-gradient(180deg, #421421 0%, #430915 55%, #42111b 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.45);
  gap: 8px;
  /* IMPORTANT FIX */
  transition: right 0.35s ease;
  will-change: right;
}
.navbar .mobile-menu.open {
  right: 0;
}
.navbar .mobile-menu a {
  padding: 14px 0;
  color: #e6c7ce;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.navbar .mobile-menu a:hover {
  padding-left: 10px;
  color: #ffffff;
}
.navbar .mobile-menu .mobile-cta {
  margin-top: 24px;
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  color: #ffffff;
  font-weight: 600;
  background: linear-gradient(135deg, #6d041b 0%, #c2184b 100%);
  box-shadow: 0 10px 30px rgba(109, 4, 27, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.navbar .mobile-menu .mobile-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(109, 4, 27, 0.38);
}
.navbar {
  /* ───────────────── MENU OVERLAY ───────────────── */
}
.navbar .menu-overlay {
  position: fixed;
  z-index: 998;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.navbar .menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.footer {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(90, 4, 8, 0.12), transparent 35%), radial-gradient(circle at bottom right, rgba(77, 23, 6, 0.12), transparent 35%), linear-gradient(180deg, #3d0714 0%, #6d041b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer::before {
  position: absolute;
  content: "";
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
}
.footer .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  gap: 50px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
  }
}

.footer-col h4 {
  position: relative;
  margin-bottom: 24px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}
.footer-col h4::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  border-radius: 50px;
  width: 50px;
  height: 3px;
  content: "";
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
}
.footer-col p {
  margin-top: 0px;
  color: #d7a6af;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.9;
}
.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 16px;
}
.footer-col ul a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #d7a6af;
  font-weight: 500;
  font-size: 19px;
  text-decoration: none;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-col ul a::before {
  position: absolute;
  left: -12px;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
.footer-col ul a:hover {
  color: #ffffff;
  transform: translateX(8px);
}
.footer-col ul a:hover::before {
  width: 8px;
  opacity: 1;
}

.footer-brand .footer-logo {
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.footer-brand .footer-logo .logo-ny,
.footer-brand .footer-logo .logo-24 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: 1px;
}
.footer-brand .footer-logo .logo-ny {
  color: #ffffff;
}
.footer-brand .footer-logo .logo-24 {
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-icons {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-icons a {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  color: #ffffff;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}
.social-icons a:hover {
  border-color: transparent;
  transform: translateY(-6px) scale(1.08);
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  box-shadow: 0 0 40px rgba(255, 154, 60, 0.28);
}

.footer-contact-list li {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  color: #d7a6af;
  gap: 16px;
}
.footer-contact-list li i {
  border-radius: 50%;
  width: 20px;
  height: 40px;
  color: #ffffff;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 48px;
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-contact-list li:hover i {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 0 40px rgba(255, 154, 60, 0.28);
}
.footer-contact-list li span,
.footer-contact-list li a {
  color: #d7a6af;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.7;
  text-decoration: none;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-contact-list li a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 70px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4509803922);
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  color: #d7a6af;
  font-size: 16px;
  line-height: 1.8;
}
.footer-bottom p strong {
  color: #ffffff;
}
.footer-bottom p a {
  text-decoration: none;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-bottom p .tripledots {
  font-weight: 700;
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-bottom p .tripledots:hover {
  opacity: 0.8;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  min-height: 75vh;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(ellipse 75% 65% at -10% -10%, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.82) 18%, rgba(0, 0, 0, 0.42) 42%, transparent 78%), radial-gradient(ellipse 75% 65% at 110% -10%, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.82) 18%, rgba(0, 0, 0, 0.42) 42%, transparent 78%), radial-gradient(ellipse 85% 65% at 72% 38%, rgba(109, 4, 27, 0.2) 0%, transparent 72%), radial-gradient(ellipse 65% 65% at 18% 75%, rgba(32, 5, 12, 0.32) 0%, transparent 72%), linear-gradient(135deg, #6d041b 0%, #430915 48%, #1a050b 100%);
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: floatBlob 8s ease-in-out infinite;
  pointer-events: none;
}
.hero__blob--1 {
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 154, 60, 0.18) 0%, transparent 70%);
  animation-delay: 0s;
}
.hero__blob--2 {
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(215, 38, 82, 0.15) 0%, transparent 70%);
  animation-delay: -3s;
}
.hero__blob--3 {
  top: 40%;
  left: 40%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 180, 80, 0.18) 0%, transparent 70%);
  animation-delay: -5s;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
.hero__content .badge {
  margin-bottom: 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  color: #ff9a3c;
  font-weight: 600;
  font-size: 0.82rem;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: fadeUp 0.8s ease forwards;
}
.hero__content .badge .dot {
  border-radius: 50%;
  width: 7px;
  height: 7px;
  background: #ff9a3c;
  box-shadow: 0 0 10px #ff9a3c;
  animation: pulse 2s ease infinite;
}
.hero__content h1 {
  margin-bottom: 24px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.08;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero__content h1 span {
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__content p {
  margin-bottom: 40px;
  color: #d7a6af;
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.9;
  animation: fadeUp 0.8s 0.25s ease both;
}
.hero__content .hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeUp 0.8s 0.35s ease both;
}
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero__visual .bottle-wrap {
  position: relative;
  width: 280px;
  height: 400px;
}
@media (min-width: 768px) {
  .hero__visual .bottle-wrap {
    width: 340px;
    height: 480px;
  }
}
.hero__visual .bottle-wrap .bottle-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 60px rgba(255, 154, 60, 0.28));
  animation: floatBottle 5s ease-in-out infinite;
}
.hero__visual .hero-ring {
  position: absolute;
  border: 1px solid rgba(255, 154, 60, 0.2);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}
.hero__visual .hero-ring--1 {
  width: 360px;
  height: 360px;
}
.hero__visual .hero-ring--2 {
  border-color: rgba(215, 38, 82, 0.16);
  width: 480px;
  height: 480px;
  animation-direction: reverse;
  animation-duration: 30s;
}
.hero__visual .hero-ring .ring-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #ff9a3c;
  transform: translateX(-50%);
  box-shadow: 0 0 12px #ff9a3c;
}
.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 36px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #d7a6af;
  font-size: 0.75rem;
  transform: translateX(-50%);
  gap: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 1s 0.8s ease both;
}

.cin-number {
  font-weight: 600;
}

.about-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: radial-gradient(circle at left top, rgba(0, 0, 0, 0.35), transparent 32%), radial-gradient(circle at right bottom, rgba(109, 4, 27, 0.16), transparent 35%), radial-gradient(circle at right center, rgba(67, 9, 21, 0.22), transparent 42%), linear-gradient(rgb(106, 7, 35) 0%, rgb(19, 3, 8) 45%, rgb(106, 13, 29) 100% 100%);
}
@media (min-width: 992px) {
  .about-section {
    padding: 130px 0;
  }
}
.about-section .container {
  position: relative;
  z-index: 2;
}

/* Background blur elements */
.about-blur {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.9;
}

/* Top left blur */
.about-blur-one {
  top: -140px;
  left: -140px;
  width: 340px;
  height: 340px;
  background: rgba(109, 4, 27, 0.3);
}

/* Bottom right blur */
.about-blur-two {
  right: -120px;
  bottom: -140px;
  width: 300px;
  height: 300px;
  background: rgba(67, 9, 21, 0.28);
}

/* Center glow */
.about-blur-three {
  top: 45%;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%);
  background: rgba(255, 40, 90, 0.08);
}

/* Section heading */
.section-heading {
  margin-bottom: 50px;
  text-align: center;
}
@media (min-width: 992px) {
  .section-heading {
    margin-bottom: 70px;
  }
}
.section-heading .section-tag {
  margin-bottom: 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  color: #ff9a3c;
  font-weight: 700;
  font-size: 0.82rem;
  gap: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.section-heading .section-tag i {
  color: #ff9a3c;
  font-size: 0.95rem;
}
.section-heading h2 {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
}
.section-heading h2 span {
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Layout */
.about-wrapper {
  display: grid;
  align-items: center;
  gap: 50px;
}
@media (min-width: 992px) {
  .about-wrapper {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
  }
}

/* Left image */
.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-box {
  position: relative;
  border-radius: 40px;
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}
.about-image-box::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.18) 100%);
}
.about-image-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
  transform: scale(1);
  transition: transform 0.7s ease;
}
.about-image-box:hover img {
  transform: scale(1.05);
}

/* Floating card */
.about-floating-card {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  left: 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 13, 26, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  animation: floatCard 4s ease-in-out infinite;
}
.about-floating-card p {
  color: #d7a6af;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Right content */
.about-content h3 {
  margin-bottom: 22px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.2;
}
.about-content h3 span {
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-content p {
  margin-bottom: 18px;
  color: #d7a6af;
  font-size: 1.3rem;
  line-height: 1.9;
  max-width: 680px;
}

/* Features */
.about-features {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}
@media (min-width: 768px) {
  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.feature-item {
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-item i {
  flex-shrink: 0;
  color: #ff9a3c;
  font-size: 1.1rem;
}
.feature-item span {
  color: #fff3f5;
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.5;
}
.feature-item:hover {
  border-color: rgba(0, 212, 255, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

/* Stats */
.about-stats {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}
@media (min-width: 576px) {
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-stat-card {
  border-radius: 20px;
  padding: 22px 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-stat-card h4 {
  margin-bottom: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.about-stat-card span {
  color: #d7a6af;
  font-size: 0.95rem;
  line-height: 1.4;
}
.about-stat-card:hover {
  border-color: rgba(180, 79, 255, 0.22);
  transform: translateY(-4px);
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .about-floating-card {
    bottom: 24px;
    left: 24px;
    padding: 18px 20px;
  }
}
@media (min-width: 992px) {
  .about-image-box {
    max-width: 560px;
  }
  .about-content p {
    max-width: 100%;
  }
}
/* Optional animation */
@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
/* ───────────────── PURPOSE SECTION ───────────────── */
.purpose-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(27, 10, 10, 0.38), transparent 30%), radial-gradient(circle at bottom right, rgba(138, 24, 49, 0.91), transparent 38%), radial-gradient(circle at center, rgba(67, 9, 21, 0.18), transparent 42%), linear-gradient(180deg, #500414 0%, rgb(98, 10, 10) 48%, rgb(94, 4, 20) 100%);
}
@media (min-width: 992px) {
  .purpose-section {
    padding: 130px 0;
  }
}
.purpose-section .container {
  position: relative;
  z-index: 2;
}

/* ───────────────── BLURS ───────────────── */
.purpose-blur {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.purpose-blur-one {
  top: -120px;
  left: -120px;
  width: 340px;
  height: 340px;
  background: rgba(109, 4, 27, 0.28);
}

.purpose-blur-two {
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: rgba(67, 9, 21, 0.26);
}

/* ───────────────── PURPOSE GRID ───────────────── */
.purpose-grid {
  margin-top: 70px;
  display: grid;
  gap: 24px;
}
@media (min-width: 992px) {
  .purpose-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ───────────────── PURPOSE CARD ───────────────── */
.purpose-card {
  position: relative;
  border-radius: 28px;
  padding: 40px 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.purpose-card:hover {
  border-color: rgba(255, 154, 60, 0.24);
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}
.purpose-card::before {
  position: absolute;
  top: -80px;
  right: -80px;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  content: "";
  background: radial-gradient(circle, rgba(255, 154, 60, 0.1) 0%, transparent 70%);
}

/* ACTIVE CARD */
.active-card {
  border-color: rgba(255, 154, 60, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  transform: translateY(-8px);
}

/* ───────────────── NUMBER ───────────────── */
/* ───────────────── ICON ───────────────── */
.purpose-icon {
  margin-bottom: 24px;
  border-radius: 18px;
  width: 70px;
  height: 70px;
  color: #ffffff;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ff9a3c 0%, #d72652 100%);
  box-shadow: 0 0 25px rgba(255, 154, 60, 0.22);
}
.purpose-icon i {
  line-height: 1;
}

/* ───────────────── TEXT ───────────────── */
.purpose-card h3 {
  margin-bottom: 16px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.2;
}
.purpose-card p {
  color: #d7a6af;
  font-size: 1.1rem;
  line-height: 1.9;
}

/* ───────────────── BOTTOM CONTENT ───────────────── */
.purpose-bottom {
  margin-top: 90px;
  display: grid;
  align-items: center;
  gap: 40px;
}
@media (min-width: 992px) {
  .purpose-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }
}

/* LEFT */
.purpose-bottom-left h3 {
  margin-bottom: 20px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}
.purpose-bottom-left p {
  color: #d7a6af;
  font-size: 1.3rem;
  line-height: 2;
}

/* RIGHT */
.purpose-bottom-right {
  border-radius: 30px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

/* ───────────────── LIST ───────────────── */
.purpose-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.purpose-list-item {
  display: flex;
  align-items: center;
  padding-bottom: 18px;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.purpose-list-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.purpose-list-item i {
  color: #ff9a3c;
  font-size: 1rem;
}
.purpose-list-item span {
  color: #fff3f5;
  font-weight: 500;
  font-size: 1rem;
}

/* ───────────────── RESPONSIVE ───────────────── */
@media (min-width: 768px) {
  .purpose-card {
    padding: 45px 38px;
  }
  .purpose-bottom-right {
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .purpose-grid {
    gap: 28px;
  }
}

/*# sourceMappingURL=about.css.map */
