* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  background-color: #000;
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(0, 0, 0, 0);
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.8); /* Or use brand color */
  padding: 10px 30px;
  border-radius: 0 0 25px 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transform: translateY(0);
}
.logo {
  width: 140px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.nav-links li a:hover {
  color: #ffaa00;
}

.hero {
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  position: relative;
}
.hero-content {
  width: 50%;
  z-index: 2;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}
.hero-content p {
  font-size: 1.2rem;
  margin: 20px 0;
}
.subtext {
  font-size: 1rem;
  color: #ccc;
}
.cta-button {
  padding: 12px 24px;
  background: #ffaa00;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s;
}
.cta-button:hover {
  background: #ffcc00;
}

.hero-video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
canvas#threeCanvas {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.about-section {
  background-color: #111;
  color: white;
  padding: 100px 8% 80px;
}

.about-content {
  max-width: 1000px;
  margin: auto;
}
.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: bold;
}
.about-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.core-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.value-box {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}
.value-box:hover {
  background-color: #222;
}
.value-box span {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}
.value-box h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.value-box p {
  font-size: 0.95rem;
  color: #ccc;
}
.services-section {
  background-color: #0d0d0d;
  color: #fff;
  padding: 100px 8%;
}

.services-content {
  max-width: 1100px;
  margin: auto;
}

.services-content h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
  font-weight: bold;
}

.services-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #ccc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 25px;
  transition: 0.3s;
  border-left: 4px solid transparent;
}

.service-card:hover {
  background-color: #1e1e1e;
  border-left: 4px solid orange;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #f5f5f5;
}

.service-card p {
  font-size: 0.95rem;
  color: #bbb;
}
.why-choose-section {
  background: #ffffff;
  color: #0d0d0d;
  padding: 100px 8%;
}

.why-choose-content {
  max-width: 1100px;
  margin: auto;
}

.why-choose-content h2 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.why-choose-content .intro {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-card {
  background: #f7f7f7;
  padding: 25px;
  border-radius: 10px;
  transition: 0.3s ease;
  border-left: 4px solid orange;
}

.why-card:hover {
  background-color: #ececec;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
}
.contact-section {
  background: #0d0d0d;
  color: #ffffff;
  padding: 100px 8%;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.3rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.contact-section .subheading {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.contact-details, .contact-form {
  flex: 1 1 350px;
  text-align: left;
}

.contact-details p, .contact-details a {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 12px;
  text-decoration: none;
}

.contact-details a:hover {
  color: orange;
}

.social-icons a {
  color: #ddd;
  text-decoration: none;
  margin-right: 8px;
}

.social-icons a:hover {
  color: orange;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  color: white;
  font-size: 0.95rem;
}

.contact-form button.cta-button {
  background: orange;
  color: black;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button.cta-button:hover {
  background: #ffa600;
}

.final-cta {
  margin-top: 60px;
}

.final-cta p {
  font-size: 1rem;
  color: #aaa;
}
.footer {
  background-color: #0a0a0a;
  color: #ccc;
  padding: 60px 8% 30px;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
}

.footer-about {
  margin-bottom: 30px;
}

.footer-about h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-about p {
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #999;
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  font-size: 20px;
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 12px 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#backToTop:hover {
  background-color: #e65c00;
  transform: scale(1.1);
}
#whatsapp-chat {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
}

#whatsapp-button {
  background-color: #25D366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#whatsapp-button img {
  width: 28px;
  height: 28px;
}

#whatsapp-popup {
  display: none;
  background: white;
  border-radius: 10px;
  padding: 15px;
  margin-top: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  width: 220px;
  font-size: 14px;
  animation: fadeIn 0.3s ease-in-out;
}

#whatsapp-popup p {
  margin: 0 0 10px 0;
  color: #333;
}

#whatsapp-popup a {
  text-decoration: none;
  background-color: #25D366;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  display: inline-block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
