/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: 'Satoshi';
  src: url('/fonts/Satoshi-Regular.woff2') format('woff2'),
       url('/fonts/Satoshi-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Then apply it */
body, #navbar, .nav-link {
  font-family: 'Satoshi', sans-serif;
}

body {
  font-family: ' Satoshi , Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0e0e0e;
  color: #f5f5f5;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(10px);

}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

@keyframes bounceScrollDown {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.nav-links a:hover {
  color: #fff;
    animation: bounceScrollDown 0.6s ease;
}


/* Navbar Glass Effect */
/* Make navbar sticky and full-width */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05); /* translucent */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); /* Safari support */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border-radius: 0 0 16px 16px;
}


/* Prevent layout shift due to fixed navbar */
body {
  padding-top: 70px;
}

/* Hamburger menu toggle (hidden input) */
.menu-toggle {
  display: none;
}

/* Hamburger icon */
.hamburger {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    height: calc(100vh - 70px);
    background: #111;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    width: 220px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
  }

  .menu-toggle:checked + .hamburger + .nav-links {
    transform: translateX(0);
  }

  .talk-btn {
    display: none;
  }

  .nav-links li {
    margin: 1rem 0;
  }
}

/* Scroll underline hover effect */
.nav-links a {
  color: #ddd;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
  text-shadow: 0 0 8px #c32148, 0 0 16px #c32148;
}

.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    background: #111;
    flex-direction: column;
    width: 200px;
    height: calc(100vh - 70px);
    justify-content: flex-start;
    padding: 2rem 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
  }

  .menu-toggle:checked + .hamburger + .nav-links {
    transform: translateX(0);
  }

  .talk-btn {
    display: none;
  }

  .nav-links li {
    margin: 1rem 0;
  }
}


.talk-btn {
  background: #c32148;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 10px #c32148, 0 0 20px #c32148;
  transition: 0.3s ease-in-out;
     animation: bounceScrollDown 0.6s ease;
}

.talk-btn:hover {
  box-shadow: 0 0 20px #ff4c79, 0 0 40px #ff4c79;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #111;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: #c32148;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
}

/* Section Titles */
section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

/* About */
.about {
  padding: 3rem 2rem;
  background: #181818;
  text-align: center;
}

/* Projects */
.projects {
  padding: 3rem 2rem;
  background: #121212;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 1rem;
}

.video-grid video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
}

/* Reviews */
.reviews {
  padding: 3rem 2rem;
  background: #181818;
  text-align: center;
}

.review-card {
  background: #222;
  margin: 1rem auto;
  max-width: 600px;
  padding: 1rem;
  border-left: 5px solid #c32148;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

/* Resume Download */
.resume-download {
  padding: 3rem 2rem;
  background: #121212;
  text-align: center;
}

.download-btn {
  padding: 0.7rem 1.5rem;
  background: #c32148;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 0 10px #c32148;
}

.download-btn:hover {
  background: #ff4c79;
}

/* Social Media */
.social-media {
  background: #181818;
  padding: 3rem 2rem;
  text-align: center;
}

.social-icons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons img {
  width: 32px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* Contact Form */
.contact-form {
  padding: 3rem 2rem;
  background: #121212;
  text-align: center;
}

.contact-form form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  resize: none;
}

.contact-form button {
  padding: 0.8rem;
  background: #c32148;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #ff4c79;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #0a0a0a;
  color: #999;
  font-size: 0.9rem;
}

/* Optional dark mode toggle button */
.dark-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #c32148;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 30px;
  cursor: pointer;
  z-index: 999;
}

/* Dark mode styles (optional) */
body.dark-mode {
  background: #f5f5f5;
  color: #111;
}

body.dark-mode .navbar,
body.dark-mode .projects,
body.dark-mode .reviews,
body.dark-mode .resume-download,
body.dark-mode .contact-form,
body.dark-mode .about,
body.dark-mode .social-media,
body.dark-mode footer {
  background: #fff;
  color: #111;
}

body.dark-mode .talk-btn,
body.dark-mode .download-btn,
body.dark-mode .contact-form button {
  background: #111;
  color: #fff;
}

/* Framer-style Footer */
.framer-footer {
  background: #0d0d0d;
  padding: 4rem 2rem 2rem;
  color: #aaa;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1300px;
  margin: auto;
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: #fff;
}

.footer-brand p {
  margin-top: 0.5rem;
  color: #888;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social img {
  width: 28px;
  transition: transform 0.3s;
}

.footer-social img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-links a {
    margin: 0 0.75rem;
  }
}


/* Light Studio Section */
.light-studio {
  background: #0b0b0d;
  padding: 4rem 2rem;
  border-radius: 20px;
  margin: 4rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.studio-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.spotlight {
  position: relative;
  flex: 1;
  max-width: 400px;
  text-align: center;
}

.lamp-head {
  width: 80px;
  height: 40px;
  background: #fff;
  border-radius: 100px 100px 0 0;
  margin: 0 auto;
}

.light-cone {
  margin-top: -5px;
  width: 100%;
  height: 300px;
  background: radial-gradient(ellipse at top, rgba(255,255,255,0.1), transparent 70%);
  clip-path: polygon(40% 0, 60% 0, 100% 100%, 0 100%);
  padding-top: 2rem;
  color: #fff;
}

.light-cone h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.spotlight-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: #fff;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 1rem;
  transition: all 0.3s;
}

.spotlight-btn:hover {
  background: #c32148;
  color: #fff;
}

.studio-text {
  flex: 1;
  max-width: 500px;
  color: #ddd;
}

.studio-text p {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.studio-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
  .studio-content {
    flex-direction: column;
  }

  .light-cone h2 {
    font-size: 1.2rem;
  }
}
/* Spotlight container stays fixed */
.light-mover {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Light cone animation */
.light-cone {
  position:relative;
  top: 0;
  left: 50%;
  width: 100%;
  height: 300px;
  background: radial-gradient(ellipse at top, rgba(255,255,255,0.1), transparent 70%);
  clip-path: polygon(40% 0, 60% 0, 100% 100%, 0 100%);
  padding-top: 2rem;
  color: #fff;
  transform: translateX(-50%);
  animation: sweepLeftRight 4s ease-in-out infinite;
  z-index: 1;
}

/* Animation Keyframes */
@keyframes sweepLeftRight {
  0% {
    left: 30%;
  }
  50% {
    left: 70%;
  }
  100% {
    left: 30%;
  }
}


/* Pricing Section */
.pricing-section {
  background: #272626;
  padding: 4rem 2rem;
  text-align: center;
  color: #111;
}

.pricing-section h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.pricing-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2.5rem;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.pricing-card {
  flex: 1;
  max-width: 360px;
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: scale(1.02);
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  color: #111;
}

.pricing-card .desc {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-card h1 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #111;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 1.8rem;
}

.pricing-card ul li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #444;
}

.book-btn {
  display: block;
  text-align: center;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-weight: bold;
  transition: background 0.3s;
}

.book-btn:hover {
  background: #c32148;
}

/* Pro Plan Styling */
.pricing-card.dark {
  background: #111;
  color: #fff;
}

.pricing-card.dark ul li {
  color: #ddd;
}

.pricing-card.dark .book-btn {
  background: #fff;
  color: #000;
}

.pricing-card.dark .book-btn:hover {
  background: #c32148;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* New Hero Layout */
.hero-new {
  background: #0e0e0e;
  padding: 4rem 2rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}

/* Left: Image */
.hero-image img {
  width: 300px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  border: 2px solid #222;
}

/* Right: Text */
.hero-text {
  max-width: 600px;
  color: #fff;
}
.hero-text h1 {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
}

.hero-text .highlight {
  color: #c32148;
}

.hero-text .subtitle {
  color: #aaa;
  font-weight: 500;
  font-size: 1.2rem;
  margin-left: 0.5rem;
}


.hero-text p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.hero-text .talk-btn {
  padding: 0.8rem 1.5rem;
  background: #c32148;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 12px #c32148;
  transition: 0.3s ease;
}

.hero-text .talk-btn:hover {
  background: #ff4c79;
  box-shadow: 0 0 20px #ff4c79;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    width: 80%;
  }
}



/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

/* Let's Talk Button */
.talk-btn {
  background: #c32148;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 10px #c32148, 0 0 20px #c32148;
  transition: 0.3s ease-in-out;
}

.talk-btn:hover {
  background: #ff4c79;
  box-shadow: 0 0 20px #ff4c79, 0 0 40px #ff4c79;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 30px 0;
  background-color: #f5f5f5;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo-container img {
  width: 60px;
  height: auto;
  margin-bottom: 8px;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-container:hover img {
  filter: none;
  transform: scale(1.1);
}

.logo-container span {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: opacity 0.4s ease, transform 0.3s ease;
}

#scrollToTop:hover {
  transform: translateY(-5px) scale(1.1);
  background-color: #333;
}

a svg {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a:hover svg {
  transform: scale(1.1);
  box-shadow: 0 0 15px #c13248, 0 0 30px #c13248, 0 0 45px #c13248;
  border-radius: 50%;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}



.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    background: #111;
    flex-direction: column;
    width: 200px;
    height: calc(100vh - 70px);
    justify-content: flex-start;
    padding: 2rem 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
  }

  .menu-toggle:checked + .hamburger + .nav-links {
    transform: translateX(0);
  }

  .talk-btn {
    display: none;
  }

  .nav-links li {
    margin: 1rem 0;
  }
}

.red{
  color: #c13248;
}

.certificate-section {
  padding: 100px 20px;
  background: #252525;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
}

.certificate-scroll-wrapper {
  overflow: hidden;
  width: 100%;
}

.certificate-scroll {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none; /* Firefox */
}
.certificate-scroll::-webkit-scrollbar {
  display: none;
}

.certificate-card {
  flex: 0 0 45%; /* Show 2 larger items */
  background: rgb(85, 84, 84);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  padding: 20px;
}

.certificate-card img {
  width: 100%;
  height: auto; /* Instead of fixed min-height */
  object-fit: contain; /* Prevents cropping */
  border-radius: 12px;
}


.cert-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.cert-nav-buttons button {
  padding: 12px 20px;
  border: none;
  background: #111;
  color: white;
  border-radius: 10px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cert-nav-buttons button:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .certificate-section {
    padding: 60px 10px; /* Less padding for small screens */
  }

  .certificate-card {
    flex: 0 0 90%;
    padding: 10px;
  }

  .certificate-card img {
    height: auto;
    max-height: 250px;
  }

  .cert-nav-buttons {
    gap: 10px;
  }

  .cert-nav-buttons button {
    padding: 10px 16px;
    font-size: 1.2rem;
  }
}

  .section-title {
    font-size: 2rem;
  }
}
