* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg-color: #faf6f0;
  --text-color: #3e2c23;
  --card-bg: #ffffff;
  --bg-section: #c8b6a6;
  --btn: #3e2c23;
  --btn-hov: #b67c70;
  --bg-image: linear-gradient(rgba(15, 17, 23, 0.8), rgba(15, 17, 23, 0.8)),
    url("images/banner\ light.png") no-repeat center center/cover;
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
}

body.dark-mode {
  --bg-color: #1e1e1e;
  --text-color: #f5f5f5;
  --card-bg: #2c2c2c;
  --bg-section: #2b2b2b;
  --btn: #84dcc6;
  --btn-hov: #6fcf97;
  --font-heading: "Segoe UI", sans-serif;
  --font-body: "Poppins", sans-serif;
  --bg-image: linear-gradient(rgba(15, 17, 23, 0.8), rgba(15, 17, 23, 0.8)),
    url("https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80")
      no-repeat center center/cover;
}
body {
  font-family: var(--font-body);
  background: var(--bg-color);
  color: var(--text-color);
  transition: background 0.3s, color 0.3s;

  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}
html {
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 2rem 0;
}
.hero {
  height: 70vh;
  display: flex;
  align-items: center;
  background: var(--bg-image);
  text-align: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero h2 {
  font-size: 2.8rem;
  color: var(--btn-hov);
  margin-bottom: 1.5rem;
  text-align: center;
}

.hero .subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.trust-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  background: var(--bg-section);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.nav-cta {
  background: var(--bg-color);
  color: #0f1117;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: bold;
}
/* Navigation Styles */
#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #0f1e13;
  color: var(--btn-hov);
  position: relative;
  border-bottom: 10px solid transparent;
  padding: 15px;

  border-image: url(images/pexels-jplenio-1103970.jpg) 30 round;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--btn-hov);
  text-decoration: none;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--btn);
}
.nav-links.active {
  display: flex;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger .bar {
  height: 3px;
  width: 25px;
  background-color: var(--btn);
  margin: 4px 0;
  transition: 0.3s;
}

header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h2 h1 {
  padding: 1%;
  color: black;
  font-family: var(--font-heading);
}
.nav-links ul {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 5%;
}

.section {
  padding: 4rem 0;
}
.section-subtitle {
  text-align: center;
  color: #aaaaaa;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}
h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--btn);
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.skills {
  margin-top: 2rem;
}

.skill {
  margin-bottom: 1.5rem;
}

.skill h4 {
  margin-bottom: 0.5rem;
  color: var(--btn);
}

.skill-bar {
  height: 8px;
  background: var(--btn-hov);
  border-radius: 4px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: var(--btn);
  border-radius: 4px;
}
.about-image img {
  border-radius: 10px;
  box-shadow: var(--shadow);
  max-width: 100%;
  height: auto;
  display: block;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service {
  background: #1a1d26;
  padding: 1.5rem;
  border-radius: 8px;
}

.service h3 {
  margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
  border: 2px solid #6e45e2;
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #6e45e2;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: bold;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-color);
  margin: 1.5rem 0;
  text-align: center;
}

.features {
  margin: 2rem 0;
}

.features li {
  list-style: none;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.features .fa-check {
  color: var(--btn-hov);
}

.features .fa-times {
  color: var(--btn-hov);
}

.pricing-note {
  text-align: center;
  margin-top: 3rem;
  color: #aaaaaa;
}

.pricing-note a {
  color: var(--btn);
}

/* Promo Kit*/
.promo-kit {
  background: var(--bg-section);
  color: var(--text-color);
  text-align: center;
  padding: 4rem 2rem;
}

.promo-preview-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.promo-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1rem;
  width: 180px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.promo-card.floating:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {
  .promo-card {
    width: 100%;
    max-width: 320px;
  }
}
.fade-in {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Portfolio Section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 1.5rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  margin-bottom: 1rem;
}
.portfolio-grid a {
  display: inline-block;
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.portfolio-grid a:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tier-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #1d3557;
  color: #fff;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #999;
  text-align: center;
  margin: 2rem auto 0;
  padding: 1rem 1.5rem;
  max-width: 600px;
  line-height: 1.5;
}

.contact p,
.contact a {
  text-align: center;
  display: block;
  margin: 1rem auto;
}
.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--btn);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--btn-hov);
}
.update-request {
  background-color: #f5f5f5;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.update-request h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.update-request p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #666;
}

.update-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #6fcf97;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.update-btn:hover {
  background-color: #84dcc6;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--btn-hov);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--bg-section);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: white;
}

.form-group textarea {
  min-height: 150px;
}

/* Theme*/
.theme-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  background: #c06ba5;
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 999;
  transition: background 0.3s ease;
}

.theme-toggle:hover {
  background: #a94d8d;
}

* Footer */ footer {
  background: #0a0c10;
  padding: 3rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about h3 {
  color: var(--text-color);
  margin-bottom: 1rem;
}
footer .container {
  display: block;
  justify-content: space-between;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: var(--btn);
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--btn-hov);
}

.footer-links {
  display: grid;
  gap: 0.8rem;
}

.footer-links h4 {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--btn);
  transition: color 0.3s;
}

.footer-links,
.platforms a:hover {
  color: var(--btn-hov);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaaaaa;
  font-size: 0.9rem;
}
/* Payment Page Styling */
.payment-hero {
  background-color: #004d40;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.payment-section {
  background-color: #f4f4f4;
  padding: 4rem 2rem;
  color: #333;
}

.payment-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.step {
  background-color: white;
  border-left: 4px solid #00bfa5;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.platforms {
  list-style-type: none;
  padding: 0;
  margin-bottom: 2rem;
}

.platforms li {
  padding: 0.5rem 0;
  font-weight: 500;
}

.cta-box {
  text-align: center;
  padding-top: 2rem;
}

.cta-box .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--btn);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-box .btn:hover {
  background-color: var(--btn-hov);
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 2rem;
    background-color: #0f1e13;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }
}
@media (min-width: 768px) {
  .hero-text {
    text-align: left;
    flex: 1;
  }
}
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 100px;
    height: 50vh;
    background: black;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .hero h2 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

  .pricing-card.popular {
    transform: none;
  }
}

@media (min-width: 992px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;

    width: 90%;
    max-width: 200px;
    height: 30vh;
    background: var(--bg-section);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .hero h2 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

  .pricing-card.popular {
    transform: none;
  }
}

@media (min-width: 992px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }

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

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