/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts and Base */
body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 2rem;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid #222;
}


.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* Hero */
.hero {
  height: 100vh;
  background: url("blix.png") no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-button {
  margin-top: 10rem;
  padding: 0.8rem 2rem;
  border: 1px solid black;
  color: black;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.cta-button:hover {
  background-color: black;
  color: white;
}

.cta-btn-button {
  margin-top: 10rem;
  padding: 0.8rem 2rem;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.cta-btn-button:hover {
  background-color: white;
  color: black;
}



/* Sections */
.section {
  padding: 6rem 2rem;
  text-align: center;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.section p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  font-size: 1rem;
}

.section.light {
  background-color: #fff;
  color: #000;
}

.section.dark {
  background-color: #000;
  color: #fff;
}

/* Cards */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: #111;
  padding: 2rem;
  border: 1px solid #333;
  width: 300px;
  transition: all 0.3s ease;
  text-align: left;
}

.card:hover {
  border-color: white;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.card p,
.card ul {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Pricing Cards */
.pricing-card {
  background-color: #f5f5f5;
  color: #000;
  text-align: center;
}

.price {
  font-size: 1.6rem;
  margin: 0.5rem 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
}

.pricing-card li {
  padding: 0.3rem 0;
}

/* Animations */
.fade-in {
  animation: fadeIn 1.2s ease-in;
}

.slide-in {
  animation: slideIn 1.2s ease-out;
}

.animate {
  transition: all 0.4s ease;
  transform: translateY(30px);
  opacity: 0;
}

.animate:hover {
  transform: translateY(0);
  opacity: 1;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Footer */
footer {
  padding: 2rem;
  background-color: #000;
  text-align: center;
  color: #666;
  font-size: 0.85rem;
}

/* Responsive */
/* Responsive Nav */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #000;
    width: 100%;
    display: none;
    padding: 1rem 2rem;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
  margin-left: auto;
}

  .navbar {
    flex-wrap: wrap;
  }
  .hamburger {
  display: block;
}

}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  margin-left: 1rem;
}

.theme-toggle {
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: 1rem;
}

/* Dark & Light Themes */
body.light-mode {
  background-color: #fff;
  color: #000;
}

body.light-mode .section.dark {
  background-color: #f9f9f9;
  color: #000;
}

body.light-mode .section.light {
  background-color: #fff;
  color: #000;
}

body.light-mode .hero {
  color: #000;
}

body.light-mode .cta-button {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}

body.light-mode .cta-button:hover {
  background-color: #444;
  color: #fff;
}

body.light-mode .pricing-card {
  background-color: #fff;
  color: #000;
}

body.light-mode .card {
  background-color: #f0f0f0;
  color: #000;
  border-color: #ccc;
}

/* Mobile Responsive Nav */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #000;
    width: 100%;
    display: none;
    padding: 1rem 2rem;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
.hero-content img {
  max-width: 90%;
  height: auto;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero {
    background-size: cover;
    padding: 7rem 1rem 3rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .cta-button {
    margin-top: 2rem;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
  }
  .hero-content p {
  display: none;
}
@media (max-width: 600px) {
  .hero-content p {
    display: none;
  }
}
.hero-content img {
  display: none;
}


}
@media (max-width: 768px) {
  .section {
    padding: 4rem 1.2rem;
  }

  .cards-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .card,
  .pricing-card,
  .project-card {
    width: 90%;
    margin: 0 auto;
  }

  .section h2 {
    font-size: 1.8rem;
  }

  .section p {
    font-size: 0.95rem;
  }
}


/* Scroll animation */
.animated {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}
.animated.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer Social Links */
footer .socials {
  margin-top: 1rem;
}
footer .socials a {
  color: #888;
  margin: 0 10px;
  text-decoration: none;
  font-size: 0.9rem;
}
footer .socials a:hover {
  color: #fff;
  /* text-decoration: ; */
}
 .hehe{
  color: #ccc;
  font-family: 'Times New Roman', Times, serif;
 }
 .hero-content p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #ccc;
}
@media (max-width: 768px) {
  footer {
    padding: 1.5rem;
    font-size: 0.75rem;
  }

  footer .socials a {
    font-size: 0.85rem;
    margin: 0 6px;
  }
}
/* Responsive logo */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1rem;
  }

  .logo {
    font-size: 1.5rem;
  }
}

