@import url("https://fonts.googleapis.com/css2?family=Combo&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --primary-color: #000;
  --secondary-color: #264653;
  --accent-color: #e9c46a;
  --text-color: #333333;
  --background-color: #ffffff;
  --gradient-start: #264653;
  --gradient-end: #000;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
  background: #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25d366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  width: 60px;
}

.whatsapp-btn i {
  font-size: 2rem;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: green;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: #ffffff;
}

nav {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  background: #000;
}

.nav-links {
  display: flex;
  gap: 2rem;

  list-style: none;
  /* position: absolute; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #007bff;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: green;
  z-index: 1002;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #000;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1001;
}

.sidebar.active {
  right: 0;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

.sidebar-links {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.sidebar-links a {
  text-decoration: none;
  color: #fff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.sidebar-links i:hover {
  color: green;
}

.sidebar-links a:hover {
  color: green;
}

.sidebar i {
  color: white;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 9999;
}

.loader-content {
  text-align: center;
  color: green;
}

.loader-text {
  font-size: 2rem;
  margin-bottom: 20px;
  opacity: 0;
}
.loader-text span {
  color: #fff;
}

.progress-bar {
  width: 250px;
  height: 2px;
  background-color: #000;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  text-align: center;
  transform: translateX(10px);
}

.progress {
  width: 0;
  height: 100%;
  background-color: green;
  position: absolute;
  left: 0;
  top: 0;
}

.cta-button {
  color: #ffffff;
  background: #000;
  padding: 1rem;
  text-decoration: none;
  border-radius: 0 30px;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  background: #000;
  color: white;
  position: relative;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  /* opacity: 0.5; */
}

.hero-content {
  text-align: center;
  z-index: 1;
  transform-style: preserve-3d;
  perspective: 1000px;
  /* background: rgba(0, 0, 0, 0.7); */
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  transform: translateZ(50px);
  background: rgba(0, 0, 0, 0.8);
  padding: 0.3rem;
  border-radius: 0 30px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  transform: translateZ(30px);
  background: rgba(0, 0, 0, 0.8);
  padding: 0.5rem;
  border-radius: 30px 0;
}

/* About Section */
.about {
  /* background: #f9f9f9; */
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5)),
    url(images/splattered-ink-texture.jpg);
  background-size: cover;
  background-position: center;
  /* color: white; */
  position: relative;
  overflow: hidden;
}

.about img {
  width: 70px;
}

.about h2 {
  color: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  transform-style: preserve-3d;
  perspective: 1000px;
  color: whitesmoke;
}

.skills-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.skill-item {
  object-fit: contain;
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.skill-item:hover {
  transform: translateZ(20px) rotateX(10deg);
}

/* Experience Section */
.experience {
  background: white;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 2px;
  background: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  transform-style: preserve-3d;
}

.timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  background: green;
  border-radius: 50%;
  top: 15px;
  right: -10px;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-content {
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );

  background: #000;
  color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 1rem;
  width: 100%;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  border: 2px solid green;
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
  /* transition: transform 0.3s ease;  */
}

.service-card:hover {
  transform: translateZ(20px) scale(1.05);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  /* color: var(--accent-color); */
  color: green;
}

/* Display Text */

#display {
  font-family: "Comic Neue", sans-serif;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.display-text {
  margin-top: 100px;
  padding: 1rem;
  margin-bottom: 50px;
}

.display-text h1 {
  text-align: center;
  padding: 5rem;
  font-family: "Combo", sans-serif;
  font-style: italic;
}

.display4 i {
  font-size: 3rem;
  color: #c5940d;
}

.display4 img {
  width: 200px;
  border-radius: 20px;
}

.display4 span {
  font-size: 2rem;
  font-weight: 900;
}

.spinning-element {
  height: 100vh;
  overflow-x: hidden;
  overflow: hidden;
  margin-top: 10rem;
  margin-bottom: 30rem;
  text-align: center;
}

.spinning-element img {
  width: 200px;
}

#zoom-in {
  /* background: green; */
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: "Combo", sans-serif;
}

.zoom-trigger {
  width: 100%;
  height: 200px;
  /* background-color: #fff; */
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/modern-ink-art-background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow-x: hidden;
}

.indicator {
  position: absolute;
  bottom: 0.7rem;
  left: 50%;
  transform: translateX(-50%);
  color: orange;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-30px) translateX(-50%);
  }
  60% {
    transform: translateY(-15px) translateX(-50%);
  }
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, #f6f6f6 0%, #ffffff 100%);
  background: none;
  padding: 80px 20px;
}

.testimonial-slider {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.testimonials h2 {
  color: #ffff;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.testimonial-card {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)),
    url(images/retro-camera\ 2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 20px;
  text-align: center;
  display: none;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease-in;
}

.client-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid #f0f0f0;
}

.client-quote {
  font-style: italic;
  color: #fff;
  margin: 20px 0;
  line-height: 1.8;
}

.client-name {
  font-weight: bold;
  color: #777;
  margin-bottom: 5px;
}

.client-role {
  color: #999;
  font-size: 0.9rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  padding: 0;
}

.testimonial-nav button.active {
  background: #333;
}

/* Contact Section */
.contact {
  background: var(--secondary-color);
  background: #000;
  color: white;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.form-group {
  margin-bottom: 1.5rem;
  transform: translateZ(20px);
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.submit-button {
  background: var(--accent-color);
  color: var(--secondary-color);
  padding: 1rem 2rem;
  border: none;
  border-radius: 0 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.submit-button:hover {
  transform: translateZ(30px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pricing-section {
  padding: 1rem;
  max-width: 1200px;
  margin: 30rem auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: #2d3748;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-header p {
  color: #718096;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 20px;
  transform-style: preserve-3d;
}

.pricing-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  transform: translateZ(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transform: translateY(50px);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular::before {
  content: "Most Popular";
  position: absolute;
  top: 20px;
  right: -35px;
  background: green;
  color: white;
  padding: 8px 40px;
  transform: rotate(45deg);
  font-size: 0.8rem;
}

.plan-name {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.plan-price {
  color: green;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.plan-price span {
  font-size: 1rem;
  color: #718096;
}

.features-list {
  list-style: none;
  margin-bottom: 30px;
}

.features-list li {
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #edf2f7;
}

.pricing-section .cta-button {
  background: #000;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  border-radius: 0 30px;
  border: 1px solid green;
}

/* .cta-button:hover {
  background: #434190;
} */

.toggle-container {
  text-align: center;
  margin-bottom: 40px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 0 10px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: green;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.billing-text {
  color: #718096;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

footer {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

footer h1 {
  color: #666;
  font-size: 1.5rem;
}

.socials i {
  padding: 1rem;
  color: white;
  font-size: 2rem;
}

footer p a {
  color: #c5940d;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-item::after {
    left: 21px;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .sidebar {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-container {
    width: 95%;
  }

  .logo {
    font-size: 1.25rem;
  }
}
