	:root {
	  --bg-color: #fff;
	  --text-color: #111;
	  --primary-color: #f39c12;
	  --alt-color: #27ae60;
	  --nav-bg: #24292e;
	  --footer-bg: #1a1a1a;
	}

	body.dark {
	  --bg-color: #121212;
	  --text-color: #eee;
	  --nav-bg: #1c1c1c;
	  --footer-bg: #000;
	}

	body {
	  margin: 0;
	  font-family: 'Segoe UI', sans-serif;
	  background-color: var(--bg-color);
	  color: var(--text-color);
	  transition: 0.3s;
	}

	/* HERO SECTION */
	/* Hero Section */
	.hero {
	  background: linear-gradient(to right, #000000, #1c1c1c);
	  color: #fff;
	  padding: 80px 20px;
	  min-height: 100vh;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  text-align: center;
	}

	.hero-box {
	  max-width: 900px;
	  padding: 40px;
	  border-radius: 20px;
	  background: rgba(255, 255, 255, 0.05);
	  border: 1px solid rgba(255, 255, 255, 0.1);
	  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	  backdrop-filter: blur(12px);
	  -webkit-backdrop-filter: blur(12px);
	  transition: all 0.3s ease;
	}

	.hero-box h1 {
	  font-size: 3rem;
	  color: #facc15;
	  margin-bottom: 10px;
	}

	.hero-box h2 {
	  font-size: 1.5rem;
	  margin: 10px 0;
	  color: #fff;
	}

	.hero-box span {
	  color: #fff;
	}

	.btn-group {
	  margin: 20px 0;
	}

	.btn {
	  background-color: #facc15;
	  color: #000;
	  padding: 12px 25px;
	  border-radius: 8px;
	  text-decoration: none;
	  font-weight: bold;
	  margin-right: 10px;
	  transition: background 0.3s ease;
	}

	.btn:hover {
	  background-color: #ffde59;
	}

	.btn-alt {
	  background: transparent;
	  border: 2px solid #facc15;
	  color: #facc15;
	}

	.btn-alt:hover {
	  background: #facc15;
	  color: #000;
	}

	.social-links a {
	  margin: 0 10px;
	  font-size: 20px;
	  color: #facc15;
	  transition: transform 0.2s;
	}

	.social-links a:hover {
	  transform: scale(1.2);
	}

	/* Services */
	.services-section {
	  background-color: #000;
	  color: #fff;
	  padding: 80px 20px;
	  text-align: center;
	}

	.services-grid {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	  gap: 30px;
	  margin-top: 40px;
	}

	.service-card {
	  background: #1c1c1c;
	  border: 1px solid #facc15;
	  padding: 25px;
	  border-radius: 15px;
	  transition: transform 0.3s ease;
	}

	.service-card:hover {
	  transform: translateY(-10px);
	}

	.service-card i {
	  color: #facc15;
	  margin-bottom: 15px;
	}

	/* WhatsApp Float */
	.whatsapp-float {
	  position: fixed;
	  bottom: 20px;
	  right: 20px;
	  background-color: #25d366;
	  color: white;
	  font-size: 28px;
	  padding: 12px 14px;
	  border-radius: 50%;
	  z-index: 100;
	  transition: transform 0.3s;
	}

	.whatsapp-float:hover {
	  transform: scale(1.1);
	}

	/* SKILLS MODERN */
	/* --- Skills Section --- */
	.skills-modern {
	  padding: 60px 20px;
	  text-align: center;
	  background: linear-gradient(to right, #0f0f0f, #1a1a1a);
	  color: white;
	}

	.section-title {
	  font-size: 2.5rem;
	  font-weight: bold;
	  margin-bottom: 10px;
	}

	.section-subtitle {
	  font-size: 1.1rem;
	  color: #bbbbbb;
	  margin-bottom: 40px;
	}

	.skills-grid {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	  gap: 30px;
	  max-width: 900px;
	  margin: auto;
	}


	/* 🌈 Glassmorphism & Animation */
	.skill-box.glass {
	  background: rgba(255, 255, 255, 0.05);
	  backdrop-filter: blur(10px);
	  -webkit-backdrop-filter: blur(10px);
	  border-radius: 12px;
	  border: 1px solid rgba(255, 255, 255, 0.1);
	  padding: 20px;
	  transition: all 0.4s ease;
	  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
	}

	.skill-box.glass:hover {
	  transform: translateY(-8px) scale(1.05);
	  box-shadow: 0 10px 25px rgba(0, 255, 255, 0.2);
	}

	.skill-box img {
	  width: 50px;
	  height: 50px;
	  margin-bottom: 10px;
	  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
	}

	.skill-box p {
	  margin: 0;
	  font-size: 1rem;
	  font-weight: 500;
	  color: #fff;
	}

	footer {
	  background: var(--footer-bg);
	  color: white;
	  text-align: center;
	  padding: 20px;
	}


	/* --- Projects Section --- */
	/* 🌑 Black-Yellow Theme for Projects Page */
	body {
	  background-color: #0d0d0d;
	  color: #fffacd;
	  font-family: 'Segoe UI', sans-serif;
	}

	.section-heading {
	  text-align: center;
	  font-size: 2.5rem;
	  color: #FFD700;
	  margin: 40px 0 20px;
	}

	.projects-container {
	  display: flex;
	  flex-direction: column;
	  gap: 40px;
	  padding: 0 10%;
	}

	.project-card {
	  background-color: #1a1a1a;
	  border: 1px solid #FFD700;
	  border-radius: 10px;
	  overflow: hidden;
	  display: flex;
	  flex-direction: column;
	  transition: transform 0.3s ease;
	}

	.project-card:hover {
	  transform: translateY(-5px);
	}

	.project-card img {
	  width: 100%;
	  height: auto;
	  object-fit: cover;
	}

	.project-info {
	  padding: 20px;
	}

	.project-info h3 {
	  color: #FFD700;
	  margin-bottom: 10px;
	}

	.project-info p {
	  color: #fdfdfd;
	  margin: 10px 0;
	}

	.project-buttons {
	  margin-top: 15px;
	}

	.project-buttons .btn {
	  background-color: #FFD700;
	  color: #000;
	  padding: 10px 18px;
	  margin-right: 10px;
	  border-radius: 5px;
	  text-decoration: none;
	  font-weight: 600;
	  transition: background 0.3s;
	}

	.project-buttons .btn:hover {
	  background-color: #fffacd;
	}


	/* 🧁 Footer Styling */
	footer {
	  text-align: center;
	  padding: 20px;
	  background-color: #0d0d0d;
	  color: #FFD700;
	  border-top: 1px solid #FFD700;
	}


	/* --- Contact Section --- */
	/* Container setup */
	body {
		  background: #111;
		  color: #fff;
		  font-family: 'Segoe UI', sans-serif;
		  margin: 0;
		  padding: 0;
		}
		header {
		  background: #000;
		  padding: 20px 40px;
		  display: flex;
		  justify-content: space-between;
		  align-items: center;
		  border-bottom: 2px solid #FFD700;
		}
		.logo {
		  font-size: 20px;
		  color: #FFD700;
		  font-weight: bold;
		}
		nav ul {
		  list-style: none;
		  display: flex;
		  gap: 20px;
		}
		nav ul li a {
		  text-decoration: none;
		  color: #fff;
		  padding: 8px 14px;
		  border-radius: 8px;
		  transition: background 0.3s;
		}
		nav ul li a:hover, .active {
		  background-color: #FFD700;
		  color: #000;
		}
		.contact-container {
		  max-width: 900px;
		  margin: 40px auto;
		  background: rgba(255, 255, 255, 0.03);
		  padding: 40px;
		  border-radius: 15px;
		  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
		}
		.contact-info h2,
		.form-section h3,
		.feedback-section h2 {
		  color: #FFD700;
		  text-align: center;
		  margin-bottom: 20px;
		}
		.contact-info ul {
		  list-style: none;
		  padding: 0;
		  margin-top: 10px;
		}
		.contact-info ul li {
		  margin: 10px 0;
		  color: #eee;
		}
		.contact-info ul li a {
		  color: #FFD700;
		  text-decoration: none;
		}
		.contact-form input,
		.contact-form textarea {
		  width: 100%;
		  padding: 15px;
		  background: #222;
		  color: #fff;
		  border: 1px solid #555;
		  border-radius: 10px;
		  margin-bottom: 20px;
		}
		.contact-form button {
		  width: 100%;
		  padding: 15px;
		  background: #FFD700;
		  border: none;
		  border-radius: 10px;
		  font-size: 16px;
		  font-weight: bold;
		  cursor: pointer;
		  color: #000;
		  transition: background 0.3s ease;
		}
		.contact-form button:hover {
		  background: #fffacd;
		}
		.feedback-section {
		  margin-top: 60px;
		}
		.feedback-list .feedback {
		  background: rgba(255, 255, 255, 0.05);
		  border-left: 3px solid #FFD700;
		  margin-bottom: 12px;
		  padding: 15px;
		  border-radius: 8px;
		  color: #fff;
		}
		.feedback-form input,
		.feedback-form textarea {
		  width: 100%;
		  padding: 12px;
		  margin-top: 10px;
		  border-radius: 8px;
		  border: 1px solid #444;
		  background: #1a1a1a;
		  color: white;
		}
		.feedback-form button {
		  background: #FFD700;
		  border: none;
		  color: #000;
		  padding: 10px;
		  margin-top: 10px;
		  font-weight: bold;
		  border-radius: 8px;
		  cursor: pointer;
		}
		.feedback-form button:hover {
		  background: #fffacd;
		}
		footer {
		  margin-top: 60px;
		  padding: 20px;
		  text-align: center;
		  color: #aaa;
		  background: #000;
		  border-top: 2px solid #FFD700;
		}

	/* 📥 Button Style (Universal) */
	.btn {
	  padding: 12px 30px;
	  background: #FFD700;
	  color: #0e0e0e;
	  text-decoration: none;
	  font-weight: bold;
	  border-radius: 6px;
	  display: inline-block;
	  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
	  transition: all 0.3s ease;
	}

	.btn:hover {
	  background: #ffcc00;
	  color: #000;
	  transform: scale(1.05);
	}

    /* 📥 WhatsApp Button*/
	.whatsapp-float {
	  position: fixed;
	  width: 55px;
	  height: 55px;
	  bottom: 25px;
	  right: 25px;
	  background-color: #25D366;
	  color: #fff;
	  border-radius: 50px;
	  text-align: center;
	  font-size: 30px;
	  z-index: 100;
	  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  transition: transform 0.3s ease;
	}

	.whatsapp-float:hover {
	  transform: scale(1.1);
	  background-color: #128C7E;
	}


	/* --- About Section --- */
	 body {
		  margin: 0;
		  padding: 0;
		  background: #0d0d0d; /* Dark background */
		  color: #fff;
		  font-family: 'Segoe UI', sans-serif;
		}

		.container {
		  max-width: 1200px;
		  margin: 60px auto;
		  padding: 20px;
		}

		.about-card {
		  display: flex;
		  gap: 40px;
		  background: rgba(255, 255, 255, 0.05);
		  border-radius: 15px;
		  padding: 30px;
		  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
		  backdrop-filter: blur(12px);
		  border: 1px solid rgba(255, 255, 255, 0.1);
		}

		.about-card img {
		  width: 250px;
		  border-radius: 12px;
		  object-fit: cover;
		}

		.about-content h1 {
		  color: #ffe600;
		  font-size: 32px;
		}

		.about-content p {
		  font-size: 18px;
		  margin: 10px 0;
		  color: #ddd;
		}

		.icons {
		  margin-top: 15px;
		}

		.icons a {
		  margin-right: 15px;
		  font-size: 24px;
		  color: #ffe600;
		  transition: 0.3s ease;
		}

		.icons a:hover {
		  color: #ffffff;
		  transform: scale(1.2);
		}

		h2 {
		  color: #ffe600;
		  margin-top: 60px;
		}

		.certificates, .experience {
		  margin-top: 20px;
		}

		.cert-item {
		  background: rgba(255, 255, 255, 0.05);
		  padding: 15px 25px;
		  margin-bottom: 15px;
		  border-radius: 12px;
		  border: 1px solid rgba(255, 255, 255, 0.1);
		  display: flex;
		  justify-content: space-between;
		  align-items: center;
		  transition: 0.3s ease;
		}

		.cert-item:hover {
		  background: rgba(255, 255, 255, 0.1);
		  transform: scale(1.01);
		}

		.cert-item a {
		  text-decoration: none;
		  background: #ffe600;
		  color: #000;
		  padding: 8px 15px;
		  border-radius: 8px;
		  font-weight: bold;
		  transition: 0.3s;
		}

		.cert-item a:hover {
		  background: #fff;
		  color: #000;
		}

	.profile-card {
	  display: flex;
	  gap: 2rem;
	  background: rgba(255, 255, 255, 0.05);
	  padding: 1.5rem;
	  border-radius: 15px;
	  backdrop-filter: blur(8px);
	  margin-bottom: 2rem;
	  box-shadow: 0 0 12px rgba(255, 215, 0, 0.15);
	}

	.profile-card img {
	  width: 200px;
	  border-radius: 12px;
	  object-fit: cover;
	}

	.bio {
	  flex: 1;
	}

	.bio h2 {
	  color: #ffd700;
	}

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

	.card {
	  background: rgba(255, 255, 255, 0.05);
	  padding: 1rem;
	  border-radius: 10px;
	  transition: all 0.3s ease;
	  backdrop-filter: blur(6px);
	  box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
	}

	.card:hover {
	  transform: translateY(-5px);
	  background: rgba(255, 255, 255, 0.08);
	  box-shadow: 0 0 12px rgba(255, 215, 0, 0.2);
	}

	.info-section {
	  margin-bottom: 2rem;
	}

	.info-section h3 {
	  color: #ffd700;
	  margin-bottom: 1rem;
	}

	.social-icons a {
	  margin-right: 15px;
	  font-size: 1.5rem;
	  color: #ffd700;
	}

	footer {
	  text-align: center;
	  padding: 1.5rem;
	  font-size: 0.9rem;
	  color: #aaa;
	}


	html {
	  scroll-behavior: smooth;
	}



/* 🌟 Navbar Styles */
.navbar {
  background-color: #000;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffdd00;
}

.navbar .nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.navbar .nav-link {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navbar .nav-link:hover {
  transform: scale(1.1);
  color: #ffdd00;
}

.navbar .nav-link.active {
  color: #ffdd00;
  font-weight: bold;
}

/* 🌈 Hamburger Menu (Mobile) */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* Show menu on mobile when toggled */
.nav-links.show {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 1rem;
  background: #111;
  border-top: 1px solid #333;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .hamburger {
    display: block;
  }

  .navbar .nav-links li {
    padding: 0.7rem 0;
    text-align: center;
  }
}
