* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
section {
  scroll-margin-top: 100px;
}
html {
  scroll-behavior: smooth;
}
:root {
  --primary: #93032e;
  --dark: #151515;
  --light: #ffffff;
}

body {
  background: var(--dark);
  color: white;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;

  background: rgba(21, 21, 21, 0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* LOGO */
.logo {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.logo span {
  color: var(--primary);
  font-weight: 700;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

/* UNDERLINE ANIMATION (CLEAN) */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--primary);
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: white;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ACTIVE LINK STYLE */
.nav-links a:first-child {
  color: white;
}

.nav-links a:first-child::after {
  width: 100%;
}

/* HERO */
.hero {
  display: flex;
  height: 100vh;
  align-items: center;
  padding: 0 8%;
}

/* LEFT SIDE */
.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 70px;
  line-height: 1.1;
}

.hero-left span {
  color: var(--primary);
}

.hero-left p {
  margin: 20px 0;
  color: #aaa;
  max-width: 400px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-main {
  padding: 14px 35px;
  background: var(--primary);
  border: none;
  color: white;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* GLOW ANIMATION */
.btn-main::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  background: white;
  left: 0;
  top: 0;
  opacity: 0.1;
  transition: 0.4s;
}

.btn-main:hover::after {
  width: 100%;
}

.btn-ghost {
  padding: 14px 35px;
  border: 1px solid var(--primary);
  background: transparent;
  color: white;
}

/* RIGHT SIDE VISUAL */
.hero-right {
  flex: 1;
  position: relative;
}

/* GRID EFFECT */
.grid {
  width: 100%;
  height: 400px;
  background-image:
    linear-gradient(#93032e20 1px, transparent 1px),
    linear-gradient(90deg, #93032e20 1px, transparent 1px);
  background-size: 40px 40px;
  animation: moveGrid 10s linear infinite;
}

@keyframes moveGrid {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(40px);
  }
}

/* GLOW LINE */
.glow-line {
  position: absolute;
  width: 2px;
  height: 100%;
  background: var(--primary);
  left: 50%;
  animation: scan 3s infinite;
}

@keyframes scan {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 40px;
  }

  .hero-right {
    display: none;
  }
}
/* SERVICES SECTION */
.services {
  padding: 100px 8%;
  background: #151515;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.services-header p {
  color: #aaa;
}

/* CONTAINER */
.services-container {
  display: flex;
  gap: 20px;
}

/* CARD BASE */
.service-card {
  flex: 1;
  padding: 40px 25px;
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* NUMBER */
.service-card h3 {
  font-size: 50px;
  color: rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

/* TITLE */
.service-card h4 {
  font-size: 22px;
  margin: 20px 0 10px;
}

/* DESCRIPTION */
.service-card p {
  color: #aaa;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s;
}

/* HOVER EFFECT */
.service-card:hover {
  flex: 2;
  background: linear-gradient(180deg, #1b1b1b, #93032e20);
  border-color: var(--primary);
}

/* TEXT REVEAL */
.service-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* NUMBER GLOW */
.service-card:hover h3 {
  color: var(--primary);
}

/* TOP GLOW LINE */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--primary);
  transition: 0.4s;
}

.service-card:hover::before {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-container {
    flex-direction: column;
  }

  .service-card:hover {
    flex: unset;
  }

  .service-card p {
    opacity: 1;
    transform: none;
  }
}
/* ABOUT SECTION */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 8%;
  position: relative;
  gap: 60px;
}

/* LEFT */
.about-left {
  flex: 1;
}

.about-left h2 {
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about-left h3 {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-left p {
  color: #aaa;
  margin-bottom: 15px;
  max-width: 500px;
}

/* RIGHT GRID */
.about-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  position: relative;
}

/* STAT CARDS */
.stat-card {
  padding: 30px;
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* NUMBER */
.stat-card h4 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 5px;
}

/* TEXT */
.stat-card p {
  color: #aaa;
}

/* HOVER EFFECT */
.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

/* GLOW EFFECT */
.stat-card::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  background: var(--primary);
  left: 0;
  top: 0;
  opacity: 0.05;
  transition: 0.4s;
}

.stat-card:hover::before {
  width: 100%;
}

/* BACKGROUND LINE */
.about::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #93032e40, transparent);
  right: 10%;
  top: 20%;
  filter: blur(100px);
  z-index: -1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-right {
    grid-template-columns: 1fr;
  }
}
/* WHY SECTION */
.why {
  padding: 120px 8%;
  position: relative;
}

.why-header {
  text-align: center;
  margin-bottom: 80px;
}

.why-header h2 {
  font-size: 40px;
}

.why-header p {
  color: #aaa;
}

/* CONTAINER */
.why-container {
  display: flex;
  position: relative;
}

/* LEFT LINE */
.why-line {
  width: 2px;
  background: linear-gradient(var(--primary), transparent);
  margin-right: 40px;
  position: relative;
}

/* ITEMS */
.why-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* EACH ITEM */
.why-item {
  position: relative;
  padding: 25px 30px;
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.4s;
  cursor: pointer;
}

/* NUMBER */
.why-item h3 {
  position: absolute;
  left: -60px;
  top: 20px;
  font-size: 18px;
  color: var(--primary);
}

/* TITLE */
.why-item h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

/* TEXT */
.why-item p {
  color: #aaa;
}

/* HOVER EFFECT */
.why-item:hover {
  transform: translateX(10px);
  border-color: var(--primary);
}

/* GLOW BAR */
.why-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--primary);
  opacity: 0.08;
  transition: 0.4s;
}

.why-item:hover::before {
  width: 100%;
}

/* DOT ON LINE */
.why-item::after {
  content: "";
  position: absolute;
  left: -41px;
  top: 30px;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-container {
    flex-direction: column;
  }

  .why-line {
    display: none;
  }

  .why-item h3 {
    position: static;
    margin-bottom: 10px;
  }

  .why-item::after {
    display: none;
  }
}
/* CONTACT SECTION */
.contact {
  padding: 120px 8%;
  position: relative;
}

.contact-header {
  text-align: center;
  margin-bottom: 70px;
}

.contact-header h2 {
  font-size: 40px;
}

.contact-header p {
  color: #aaa;
}

/* CONTAINER */
.contact-container {
  display: flex;
  gap: 50px;
  align-items: center;
}

/* LEFT SIDE */
.contact-left {
  flex: 1;
}

.contact-left h3 {
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-left p {
  color: #aaa;
  margin-bottom: 25px;
  max-width: 400px;
}

/* CTA BUTTON */
.contact-btn {
  padding: 14px 35px;
  background: var(--primary);
  border: none;
  color: white;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* BUTTON GLOW */
.contact-btn::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  background: white;
  opacity: 0.1;
  left: 0;
  top: 0;
  transition: 0.4s;
}

.contact-btn:hover::after {
  width: 100%;
}

/* RIGHT SIDE */
.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARDS */
.contact-card {
  padding: 25px;
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
  position: relative;
}

/* TITLE */
.contact-card h4 {
  margin-bottom: 8px;
}

/* TEXT */
.contact-card p {
  color: #aaa;
}

/* HOVER EFFECT */
.contact-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

/* GLOW EFFECT */
.contact-card::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  background: var(--primary);
  left: 0;
  top: 0;
  opacity: 0.05;
  transition: 0.4s;
}

.contact-card:hover::before {
  width: 100%;
}

/* BACKGROUND GLOW */
.contact::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #93032e40, transparent);
  left: 20%;
  bottom: 10%;
  filter: blur(120px);
  z-index: -1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-left p {
    margin: auto;
  }
}
.footer {
  padding: 60px 8% 20px;
  background: #0f0f0f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-brand h3 span {
  color: var(--primary);
}

.footer-brand p {
  color: #aaa;
  margin-top: 10px;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  color: #666;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.contact-new {
  display: flex;
  min-height: 70vh;
}

/* LEFT SIDE */
.contact-cta {
  flex: 1;
  padding: 80px;
  background: linear-gradient(135deg, #93032e, #5a021c);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-cta h2 {
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.contact-cta p {
  opacity: 0.8;
  margin-bottom: 30px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 14px 30px;
  background: white;
  color: #151515;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateX(5px);
}

/* RIGHT SIDE */
.contact-info {
  flex: 1;
  background: #111;
  display: flex;
  flex-direction: column;
}

/* ROWS */
.info-row {
  padding: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
  cursor: pointer;
}

.info-row span {
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 1px;
}

.info-row p {
  margin-top: 8px;
  color: #aaa;
}

/* HOVER STRIP EFFECT */
.info-row:hover {
  background: linear-gradient(90deg, #93032e20, transparent);
  padding-left: 55px;
}
.footer-new {
  text-align: center;
  padding: 80px 20px 30px;
  background: #0d0d0d;
}

/* BRAND */
.footer-new h2 {
  font-size: 28px;
}

.footer-new span {
  color: var(--primary);
}

/* TAGLINE */
.footer-new p {
  color: #888;
  margin: 10px 0;
}

/* NAV */
.footer-nav {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.footer-nav a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-nav a:hover {
  color: white;
}

/* LINE */
.footer-line {
  width: 60%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 20px auto;
}

/* COPYRIGHT */
copyright {
  font-size: 14px;
}
