   :root {
      --bg: #0a0a0a;
      --card: #121212;
      --muted: #9ca3af;
      --text: #e5e7eb;
      --primary: #ff0000; /* red */
      --accent: #d89140;
      --ring: rgba(239, 68, 68, 0.35);
      --brand-font: 'Arial Black', Gadget, sans-serif;
    }
    * { box-sizing: border-box; }
    html, body { height: 100%; margin:0; padding:0; }
      body {margin:0;font-family:Arial, sans-serif;background:#111;color:#fff;}


    a { color: inherit; text-decoration: none; }
      /* Layout */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
    header {
      position: sticky; top: 0; z-index: 50;
      background: rgba(10,10,10,0.85); backdrop-filter: blur(8px);
      border-bottom: 1px solid #1f2937;
    }
    .nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
    .brand { display: flex; gap: .6rem; align-items: center; font-weight: 800; letter-spacing: .5px; }
    .brand img { height: 40px; width: auto; }
    .brand-name { font-family: var(--brand-font); color: var(--primary); font-size: 1.1rem; }
    .nav a { padding: .5rem .75rem; border-radius: 10px; }
    .nav a:hover { background: #d89140; color: var(--primary); }
    .btn {
      display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
      padding: .7rem 1rem; border-radius: 12px; border: 1px solid #27272a;
      background: linear-gradient(180deg, #111827, #0b0b0b);
      color: var(--text); cursor: pointer;
      font-weight: bold;
    }
    .btn.primary { border-color: #b91c1c; background: linear-gradient(180deg, #b91c1c, #7f1d1d); box-shadow: 0 6px 20px var(--ring); color: #fff; }
    .btn.ghost { background: #0b0b0b; }

    /* ---------- Slider Base ---------- */
.slider {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  background: #000;
  border-bottom: 3px solid #d89140;
  box-shadow: 0 0 20px rgba(255, 59, 0, 0.4);
}

/* ---------- Slides ---------- */
.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1.2s ease;
}

.slide.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1.02);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75);
}

/* ---------- Caption Overlay ---------- */
.caption {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  padding: 15px 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 59, 0, 0.6);
  animation: fadeUp 1s ease forwards;
}

.caption h2 {
  font-size: 2rem;
  color: #d89140;
  margin-bottom: 5px;
}

.caption p {
  font-size: 1.1rem;
}

/* ---------- Fade Animation ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .slider {
    height: 350px;
  }
  .caption h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .slider {
    height: 250px;
  }
  .caption {
    padding: 10px 20px;
    bottom: 30px;
  }
  .caption h2 {
    font-size: 1.3rem;
  }
  .caption p {
    font-size: 0.9rem;
  }
}
    .ad-spot {background:#222;color:#fff;text-align:center;padding:20px;animation:fade 12s infinite;}
    @keyframes fade {0%,33%{opacity:1;}34%,100%{opacity:0.5;}}
    .intro {padding:40px;text-align:center;background:#181818;}
    .intro h2 {color:#f00;margin-bottom:15px;}
    .products, .services {padding:40px;text-align:center;}
    .products h2, .services h2 {color:#f00;margin-bottom:20px;}
    .card-container {display:flex;flex-wrap:wrap;justify-content:center;gap:20px;}
    .card {background:#222;padding:20px;width:250px;border-radius:10px;box-shadow:0 0 10px #000;}
    .card img {width:100%;border-radius:10px;}
    .card button {margin-top:10px;padding:10px;width:100%;background:#f00;color:#fff;border:none;border-radius:5px;cursor:pointer;}
    /* Cause Section Full Width */
    .cause {background:#222;padding:60px 20px;text-align:center;}
    .cause h2 {color:#f00;margin-bottom:15px;}
    .cause p {max-width:800px;margin:0 auto 20px;color:#ddd;}
    .cause button {padding:12px 25px;background:#f00;border:none;border-radius:6px;color:#fff;cursor:pointer;font-size:16px;}
    .cause button:hover {background:#c00;}
    footer {background:#000;padding:40px 20px;color:#ccc;display:flex;flex-direction:column;align-items:center;text-align:center;}
    footer h4 {color:#f00;margin-bottom:10px;}
    footer ul {list-style:none;padding:0;}
    footer ul li {margin:5px 0;}
    footer ul li a {color:#ccc;text-decoration:none;}
    .footer-sections {display:flex;flex-wrap:wrap;justify-content:center;gap:40px;margin-bottom:20px;}
    .footer-bottom {text-align:center;margin-top:20px;color:#666;font-size:14px;}
    .social-icons {display:flex;gap:15px;margin-top:10px;justify-content:center;}
    .social-icons a {color:#fff;font-size:20px;text-decoration:none;transition:color 0.3s;}
    .social-icons a:hover {color:#f00;}
    /* Back to Top */
    #backToTop {position:fixed;bottom:20px;right:20px;background:#f00;color:#fff;border:none;padding:12px 16px;border-radius:50%;cursor:pointer;font-size:18px;display:none;box-shadow:0 0 10px #000;transition:background 0.3s;}
    #backToTop:hover {background:#c00;}
/* ---------- Top Account Bar ---------- */
.top-bar {
  background: linear-gradient(90deg, #000 0%, #111 40%, #d89140 100%);
  color: #fff;
  font-size: 0.9rem;
  border-bottom: 2px solid #d89140;
  box-shadow: 0 2px 6px rgba(255, 59, 0, 0.3);
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
  white-space: nowrap;
}

/* ---------- Contact, Social & Account ---------- */
.contact-info,
.social-icons,
.account-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* ---------- Links ---------- */
.contact-info a,
.account-links a {
  position: relative;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

/* --- Glowing Underline Animation --- */
.contact-info a::after,
.account-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #d89140;
  box-shadow: 0 0 8px #d89140;
  transition: width 0.3s ease;
}

.contact-info a:hover::after,
.account-links a:hover::after {
  width: 100%;
}

.contact-info a:hover,
.account-links a:hover {
  color: #d89140;
  transform: scale(1.05);
}

/* ---------- Icons ---------- */
.social-icons a {
  position: relative;
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-icons a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #ffa200;
  box-shadow: 0 0 8px #ffa200;
  transition: width 0.3s ease;
}

.social-icons a:hover {
  color: #ffa200;
  transform: scale(1.2);
}

.social-icons a:hover::after {
  width: 100%;
}

/* ---------- Icon Colors ---------- */
.call-btn i {
  color: #d89140;
}
.whatsapp-btn i {
  color: #25D366;
}
.messenger-btn i {
  color: #0084ff;
}

/* ---------- Responsive ---------- */
@media (max-width: 850px) {
  .top-bar-container {
    flex-wrap: wrap;
    white-space: normal;
    justify-content: center;
    text-align: center;
  }
  .contact-info, .social-icons, .account-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Causes Section */
.causes {
  background: #1a1a1a; /* dark background */
  padding: 50px 20px;
  text-align: center;
}

.causes h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ff0000; /* red heading */
}

.cause-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.cause {
  background: #111; /* black card */
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #555; /* silver border */
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.4); /* subtle red glow */
}

.cause h3 {
  color: #dcdcdc; /* silver title */
  margin-bottom: 10px;
}

.cause p {
  color: #b0b0b0; /* lighter silver text */
  font-size: 0.95rem;
}
.footer {
  background: #111;
  color: #ccc;
  padding: 40px 20px 20px;
  text-align: center;
}

.footer-columns {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 5px 0;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #f00;
}

/* Trusted By Section */
.trusted-by {
  margin: 20px 0;
}

.trusted-by h4 {
  color: #fff;
  margin-bottom: 15px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trusted-logos img {
  height: 40px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.trusted-logos img:hover {
  filter: grayscale(0%);
}

/* Copyright */
.footer-bottom {
  margin-top: 20px;
  font-size: 13px;
  color: #777;
}
/* Services Page Banner - Red/Black Theme */
.page-banner {
  position: relative;
  background: url('https://via.placeholder.com/1600x400/000000/ff0000?text=Our+Services') center/cover no-repeat;
  text-align: center;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;
}

.page-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7); /* black overlay */
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(255,0,0,0.3) 100%);
  z-index: 1;
}

.page-banner .banner-content {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-size: 48px;
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-banner p {
  font-size: 18px;
  color: #ddd;
}


/* Services Section - Red/Black Theme */
.services {
  padding: 60px 20px;
  background: #111; /* black background */
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #1a1a1a; /* dark gray card */
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  transition: transform 0.3s, box-shadow 0.3s;
  color: #e0e0e0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(255,0,0,0.5); /* red glow on hover */
}

.service-card i {
  font-size: 40px;
  color: #f00; /* red icons */
  margin-bottom: 15px;
}

.service-card h3 {
  margin: 15px 0;
  color: #fff;
}

.service-card p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
}

.service-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #f00;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.service-btn:hover {
  background: #d89140;
  transform: scale(1.05);
}
.btn-red {
  display: inline-block;
  padding: 10px 20px;
  background: #f00;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.btn-red:hover {
  background: #d89140;
  transform: scale(1.05);
}
/* About Section */
.about-section {
  padding: 60px 20px;
  background: #111;
  color: #ddd;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  color: #f00;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255,0,0,0.3);
}

/* Values Section */
.values-section {
  padding: 60px 20px;
  background: #1a1a1a;
  color: #e0e0e0;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: #111;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(255,0,0,0.5);
}

.value-card i {
  font-size: 40px;
  color: #f00;
  margin-bottom: 15px;
}

.value-card h3 {
  margin-bottom: 10px;
  color: #fff;
}
/* Team Section */
.team-section {
  padding: 60px 20px;
  background: #111;
  color: #e0e0e0;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.team-card {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(255,0,0,0.5);
}

.team-card img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #f00;
}

.team-card h3 {
  margin: 10px 0 5px;
  color: #fff;
}

.team-card p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 15px;
}

.team-socials a {
  display: inline-block;
  margin: 0 6px;
  color: #f00;
  font-size: 16px;
  transition: color 0.3s;
}

.team-socials a:hover {
  color: #fff;
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background: #111;
  color: #e0e0e0;
  text-align: center;
}

.contact-info,
.contact-form {
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.contact-info h2,
.contact-form h2 {
  color: #f00;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
  font-size: 15px;
  color: #ddd;
}

.contact-info .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  margin-right: 12px;
  background: #f00;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
}

/* Form */
.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #1a1a1a;
  color: #fff;
}

.contact-form button {
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #f00;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #c00;
}
/

/* Map */
.map-section iframe {
  margin-top: -5px;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* Products Section */
.products-section {
  padding: 60px 20px;
  background: #111;
  color: #e0e0e0;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.product-card {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(255,0,0,0.5);
}

.product-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  margin: 10px 0;
  color: #fff;
}

.product-card .price {
  font-size: 16px;
  color: #f00;
  margin-bottom: 15px;
}

.product-card button {
  padding: 10px 20px;
  background: #f00;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-card button:hover {
  background: #c00;
}
/* Product Details */
.product-details {
  padding: 60px 20px;
  background: #111;
  color: #e0e0e0;
}

.product-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.product-images {
  flex: 1;
  min-width: 280px;
}

.product-images .main-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-images .thumbs {
  display: flex;
  gap: 10px;
}

.product-images .thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s;
}

.product-images .thumbs img:hover {
  transform: scale(1.1);
}

.product-info {
  flex: 1;
  min-width: 280px;
}

.product-info h1 {
  margin-bottom: 10px;
  color: #fff;
}

.product-info .price {
  font-size: 20px;
  color: #f00;
  margin-bottom: 15px;
}

.product-info .short-desc {
  margin-bottom: 20px;
  color: #ccc;
}

.product-info form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-info input[type="number"] {
  width: 60px;
  padding: 5px;
  border: 1px solid #333;
  border-radius: 6px;
  background: #1a1a1a;
  color: #fff;
}

.product-info button {
  padding: 10px 20px;
  background: #f00;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-info button:hover {
  background: #c00;
}

/* Tabs */
.product-tabs {
  margin-top: 40px;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
}

.product-tabs .tab {
  margin-bottom: 20px;
}

.product-tabs h3 {
  color: #fff;
  margin-bottom: 10px;
}

.product-tabs ul {
  list-style: none;
  padding: 0;
}

.product-tabs ul li {
  margin-bottom: 8px;
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .product-wrapper {
    flex-direction: column;
  }
}
.thumbs img {
  border: 2px solid transparent;
}

.thumbs img:hover,
.thumbs img.active {
  border: 2px solid #f00;
}
/* Hosting Plans */
.hosting-plans {
  padding: 60px 20px;
  background: #111;
  color: #e0e0e0;
  text-align: center;
}

.hosting-plans .section-title {
  font-size: 28px;
  margin-bottom: 40px;
  color: #fff;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.plan-card {
  background: #1a1a1a;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255,0,0,0.5);
}

.plan-card h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.plan-card .price {
  font-size: 24px;
  color: #f00;
  margin-bottom: 20px;
}

.plan-card .price span {
  font-size: 14px;
  color: #ccc;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.plan-card ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #ddd;
}

.plan-card .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #f00;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.plan-card .btn:hover {
  background: #c00;
}

.plan-card.featured {
  border: 2px solid #f00;
  transform: scale(1.05);
}

/* CTA Section */
.hosting-cta {
  padding: 60px 20px;
  background: linear-gradient(90deg, #000 0%, #111 40%, #d89140 100%);
  color: #fff;
  text-align: center;
}

.hosting-cta h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.hosting-cta p {
  margin-bottom: 20px;
  font-size: 16px;
}

.hosting-cta .btn {
  background: #111;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.hosting-cta .btn:hover {
  background: #000;
}
/* Checkout Page */
.checkout {
  padding: 60px 20px;
  background: #111;
  color: #e0e0e0;
}

.checkout h1 {
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

.checkout-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.checkout-form, .checkout-summary {
  flex: 1;
  min-width: 280px;
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.checkout-form h2,
.checkout-summary h2 {
  margin-bottom: 20px;
  color: #fff;
}

.checkout-form label {
  display: block;
  margin: 10px 0 5px;
}

.checkout-form input,
.checkout-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  background: #111;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
}

.checkout-form button {
  width: 100%;
  padding: 12px;
  background: #f00;
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.checkout-form button:hover {
  background: #c00;
}

/* Order Summary */
.checkout-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checkout-summary li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.checkout-summary .total {
  border-top: 1px solid #333;
  padding-top: 10px;
  font-size: 18px;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .checkout-wrapper {
    flex-direction: column;
  }
}
.payment-options {
  margin-top: 20px;
  padding: 20px;
  background: #222;
  border-radius: 10px;
}

.payment-options h3 {
  margin-bottom: 15px;
  color: #fff;
}

.pay-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#checkout-button {
  background: #f00;
  padding: 12px;
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

#checkout-button:hover {
  background: #c00;
}
.page-header {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.page-header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.page-header p {
  color: #ccc;
  font-size: 1.2em;
}

.plans {
  padding: 60px 20px;
  background: #181818;
}

.plan-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.plan {
  background: #222;
  padding: 25px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.plan:hover {
  transform: translateY(-5px);
}

.plan.featured {
  border: 2px solid #f00;
  transform: scale(1.05);
}

.plan h2 {
  margin-bottom: 15px;
}

.plan .price {
  font-size: 1.8em;
  margin: 15px 0;
  color: #f00;
}

.plan ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.plan ul li {
  margin: 10px 0;
}

.plan .btn {
  background: #f00;
  padding: 12px 25px;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.plan .btn:hover {
  background: #c00;
}

.why-choose {
  padding: 60px 20px;
  background: #111;
  text-align: center;
}

.why-choose h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #fff;
}

.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature {
  width: 280px;
  background: #222;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
}

.feature i {
  font-size: 2em;
  margin-bottom: 15px;
  color: #f00;
}
.testimonials {
  background: #111;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  color: #fff;
  font-size: 2em;
  margin-bottom: 40px;
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  color: #ccc;
  font-style: italic;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial h4 {
  margin-top: 15px;
  color: #f00;
  font-style: normal;
}
.portfolio {
  padding: 60px 20px;
  background: #181818;
  text-align: center;
}

.portfolio h2 {
  color: #fff;
  font-size: 2em;
  margin-bottom: 10px;
}

.portfolio p {
  color: #ccc;
  margin-bottom: 40px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.portfolio-item {
  background: #222;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.portfolio-item:hover {
  transform: scale(1.05);
}

.portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.faq {
  background: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.faq h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 20px;
  padding: 15px;
  border-left: 3px solid #e60000;
  background: #1a1a1a;
  border-radius: 8px;
}

.faq-item h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.faq-item p {
  color: #ccc;
}
.sample-download {
  text-align: center;
  margin-top: 30px;
}

.sample-download a {
  margin: 10px;
}

.sample-download .btn-secondary {
  background: #e60000;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}

.sample-download .btn-secondary:hover {
  background: #b30000;
}

.sample-download .btn-outline {
  background: transparent;
  color: #e60000;
  border: 2px solid #e60000;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}

.sample-download .btn-outline:hover {
  background: #e60000;
  color: #fff;
}
/* Intro Section */
.reseller-intro {
  text-align: center;
  padding: 50px 20px;
  background: #111;
  color: #fff;
}

.reseller-intro h2 {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #ffcc00;
}

.reseller-intro p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1em;
  line-height: 1.6;
}

/* FAQ Section */
.faq {
  background: #f9f9f9;
  padding: 50px 20px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
  color: #333;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 20px;
}

.faq-item h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #e60000;
}

.faq-item p {
  color: #444;
  line-height: 1.6;
}
.reseller-intro {
  text-align: center;
  padding: 50px 20px;
  background: #111;
  color: #fff;
}

.reseller-intro h2 {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #ffcc00;
}

.reseller-intro p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1em;
  line-height: 1.6;
}
/* Highlight background for Professional column */
.highlight-col,
.best-value {
  background: rgba(255, 204, 0, 0.1); /* subtle gold tint */
}

.best-value {
  background: rgba(255, 204, 0, 0.2);
}

/* Badge */
.badge {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 8px;
  text-transform: uppercase;
  box-shadow: 0 0 6px rgba(255, 204, 0, 0.7);
}
/* Intro Section */
.reseller-intro {
  text-align: center;
  padding: 50px 20px;
  background: #111;
  color: #fff;
}

.reseller-intro h2 {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #ffcc00;
}

.reseller-intro p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1em;
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  margin-top: 30px;
}
.faq-item {
  margin-bottom: 20px;
}
.faq-item h3 {
  font-size: 1.1rem;
  cursor: pointer;
  color: #1d3557;
}
.faq-item p {
  margin-top: 8px;
  display: none; /* for accordion effect later */
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
