/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* BODY */
body {
  background: #0d0d0d;
  color: #e5e5e5;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  background: #000;
  padding: 15px 0;
  border-bottom: 1px solid #222;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.navbar a:hover {
  color: #fff;
}

/* BUTTON */
.btn {
  background: linear-gradient(45deg, #ff4d4d, #ff0000);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 6px;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.85;
}

/* HERO */
.hero {
  height: 90vh;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero h2 {
  font-size: 60px;
  margin-bottom: 15px;
  color: #fff;
}

.hero p {
  color: #ccc;
  margin-bottom: 25px;
}

/* SPLIT SECTION */
.split {
  padding: 70px 20px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 12px;
}

/* FEATURES */
.features {
  padding: 70px 20px;
  background: #111;
}

.center {
  text-align: center;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #222;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #ff4d4d;
}

.card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto 15px;
  display: block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

.card img {
  width: 70px;
  transition: 0.3s;
}

.card:hover img {
  filter: drop-shadow(0 0 10px #ff4d4d);
}

.card h3 {
  margin-bottom: 10px;
  color: #fff;
}

.card p {
  color: #aaa;
}

/* LIST */
ul li {
  margin-bottom: 10px;
}

/* CTA */
.cta {
  background: linear-gradient(45deg, #ff0000, #990000);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.cta p {
  color: #ddd;
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  background: #000;
  text-align: center;
  padding: 20px;
  color: #777;
  border-top: 1px solid #222;
}

/* MOBILE */
@media (max-width: 768px) {
  .split-grid {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .hero h2 {
    font-size: 30px;
  }
}

/* HEADINGS */
h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* PARAGRAPHS */
p {
  font-family: "Inter", sans-serif;
  color: #a0a0a0; /* soft grey */
  line-height: 1.7;
}

/* LIST */
li {
  color: #b5b5b5;
  font-family: "Inter", sans-serif;
}

/* SECTION SPACING */
section {
  margin-bottom: 40px;
}

/* HEADING STYLE */
h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

/* SUBTEXT BELOW HEADING */
h2 + p {
  color: #888;
  font-size: 15px;
}

h2 {
  font-size: 34px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff, #bbbbbb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.split {
  padding: 80px 20px;
}

.split p {
  max-width: 500px;
}

/* IMAGE SIDE */
.split img {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #ff4d4d;
    margin: 10px auto 0;
} */

/* FEATURE LIST */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

/* EACH ITEM */
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  color: #bfbfbf;
  font-size: 16px;
  transition: 0.3s;
}

/* ICON */
.feature-item i {
  color: #ff4d4d;
  font-size: 18px;
}

/* HOVER EFFECT */
.feature-item:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.feature-item {
  background: #1a1a1a;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #222;
}

.feature-item:hover {
  border-color: #ff4d4d;
}

.split h2 {
  margin-bottom: 20px;
}

/* PRICING */
.pricing {
  padding: 80px 20px;
}

.pricing-card {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 500px;
  margin: 40px auto;
  border: 1px solid #222;
  transition: 0.3s;
}

.pricing-card:hover {
  border-color: #ff4d4d;
  transform: scale(1.02);
}

.price {
  font-size: 42px;
  font-weight: bold;
  color: #ff4d4d;
  margin: 15px 0;
}

.tagline {
  color: #aaa;
  margin-bottom: 20px;
}

.big-btn {
  margin-top: 25px;
  display: inline-block;
  padding: 12px 25px;
}

/* LEFT ALIGNED LINE */
.line-left::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff4d4d;
  margin-top: 10px;
}

/* CENTERED LINE */
.line-center::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff4d4d;
  margin: 10px auto 0;
}

/* NAVBAR FLEX */
.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* STICKY NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #222;
}

/* BUTTON */
.nav-btn {
  padding: 8px 18px;
  font-size: 14px;
}

.nav-btn:hover {
  box-shadow: 0 0 15px rgba(255, 251, 251, 0.6);
}

/* TESTIMONIALS */
.testimonials {
  padding: 80px 20px;
  background: #0d0d0d;
}

.testimonial-card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #222;
  transition: 0.3s;
  text-align: center;
}

.testimonial-card:hover {
  border-color: #ff4d4d;
  transform: translateY(-5px);
}

.testimonial-card p {
  font-style: italic;
  color: #ccc;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  color: #888;
  font-weight: 500;
}

/* PROCESS GRID */
.process-grid {
  margin-top: 40px;
}

/* PROCESS CARD */
.process-card {
  padding: 30px;
  border-radius: 14px;
  background: #1a1a1a;
  border: 1px solid #222;
  text-align: center;
  transition: 0.3s;
}

/* ICON */
.icon {
  font-size: 40px;
  color: #ff4d4d;
  margin-bottom: 15px;
  transition: 0.3s;
}

/* HOVER EFFECT */
.process-card:hover {
  transform: translateY(-8px);
  border-color: #ff4d4d;
}

/* ICON ANIMATION ON HOVER */
.process-card:hover .icon {
  transform: scale(1.2) rotate(5deg);
}

/* TEXT */
.process-card h3 {
  margin-bottom: 10px;
}

.process-card p {
  color: #aaa;
}

.icon {
  font-size: 42px;
  color: #ff4d4d;
  margin-bottom: 15px;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0px);
  }
}

.icon {
  text-shadow: 0 0 10px rgba(255, 77, 77, 0.5);
}

/* IMAGE HOVER EFFECT */
.card img {
  transition: 0.4s ease;
}

/* CARD HOVER */
.card:hover img {
  transform: scale(1.05);
}

/* CARD HOVER GLOW */
.card:hover {
  box-shadow: 0 10px 30px rgba(255, 77, 77, 0.2);
}

.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #ff4d4d;
  transition: 0.4s;
}

.card:hover::before {
  width: 100%;
}

.card h3 i {
  color: #ff4d4d;
  margin-right: 8px;
  font-size: 18px;
}

/* HERO OVERLAY (gradient instead of flat dark) */
.overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.6)
  );
}

/* HERO CONTENT */
.hero-content {
  max-width: 700px;
  text-align: left;
}

/* HEADLINE */
.hero h2 {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
}

 .colored {
  background: linear-gradient(90deg, #ff4d4d, #ff0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* HIGHLIGHT TEXT */
.highlight {
  color: #ff4d4d;
}

/* PRICE HIGHLIGHT */
.price-highlight {
  color: #ff4d4d;
  font-weight: 600;
}

/* PARAGRAPH */
.hero p {
  margin: 20px 0;
  font-size: 18px;
  color: #bbb;
}

/* BUTTON GROUP */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

/* PRIMARY BUTTON */
.primary-btn {
  background: linear-gradient(45deg, #ff4d4d, #ff0000);
  padding: 12px 24px;
  text-decoration: none !important;
}

/* GLOW EFFECT */
.primary-btn:hover {
  box-shadow: 0 0 20px rgba(255, 77, 77, 0.6);
}

/* SECONDARY BUTTON */
.secondary-btn {
  border: 1px solid #555;
  padding: 12px 24px;
  color: #fff;
}

/* HOVER */
.secondary-btn:hover {
  border-color: #ff4d4d;
}

.hero-content {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.primary-btn i {
  margin-right: 8px;
  rotate: 90deg;
}

.primary-btn:hover i {
  transform: translateX(2px);
  transition: 0.3s;
}

.primary-btn {
  font-size: 16px;
  padding: 14px 26px;
  text-decoration: none !important;
}

.cta .btn {
  background: #000;
  color: #fff !important;
  border: 1px solid #000;
}
.cta .btn:hover {
  background: #111;
  box-shadow: 0 0 15px rgba(251, 251, 251, 0.893);
}

.cta .btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 500;
}

.cta .btn {
  border: 1px solid #fff;
}

.logo img {
  height: 40px;
  object-fit: contain;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 45px; /* adjust */
}

/* PRICE BOX */
.price-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
}

/* OLD PRICE (STRIKE) */
.old-price {
  color: #777;
  text-decoration: line-through;
  font-size: 22px;
}

/* NEW PRICE */
.new-price {
  color: #ff4d4d;
  font-size: 42px;
  font-weight: 700;
}

/* OFFER TEXT */
.offer-text {
  color: #ff4d4d;
  font-size: 14px;
  margin-top: 5px;
}

.badge {
  display: inline-block;
  background: rgba(255, 77, 77, 0.1);
  color: #ff4d4d;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 10px;
}

.about-text p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #aaa; /* same color for all */
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Highlight only important part */
.about-text strong {
  color: #fff;
  font-weight: 600;
}

.about-text p:first-child {
  color: #ccc;
}

.about-text {
  max-width: 520px;
}

/* LEFT ALIGNED UNDERLINE */
.line-left::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff4d4d;
  margin-top: 10px;
}

/* CENTER ALIGNED UNDERLINE */
.line-center::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff4d4d;
  margin: 10px auto 0;
}

.line-center {
  text-align: center;
}

/* FOOTER */
.footer {
  background: #000;
  padding: 50px 20px 20px;
  border-top: 1px solid #222;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

/* TEXT */
.footer h3,
.footer h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer p {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 15px;
  font-size: 13px;
  color: #666;
}

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 2s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(50);
}

#line2::after {
  content: "|";
  margin-left: 5px;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.paynow {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
