/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #111;
  overflow-x: hidden;
  padding-top: 90px;
}

/* ================= HEADER ================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #ffffff;
  z-index: 10000;
  transition: 0.3s;
  border-bottom: 1px solid #eee;
}

header.sticky {
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* ================= LOGO ================= */
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 26px;
  font-weight: 900;
}

.logo .web {
  color: #ff6a00;
}

.logo .credent {
  color: #000;
}

.spider-logo {
  width: 45px;
  height: 60px;
  margin-right: 10px;
  transition: 0.4s;
}

.logo a:hover .spider-logo {
  transform: rotate(8deg) scale(1.05);
}

/* ================= NAVIGATION ================= */
nav {
  display: flex;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ff6a00;
}

/* ================= HAMBURGER ================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  cursor: pointer;
  z-index: 10001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 4px;
  transition: 0.3s;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  background: #ffffff;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero h1 span {
  color: #ff6a00;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
}

/* ================= BUTTON ================= */
.btn {
  padding: 14px 35px;
  background: #ff6a00;
  border: none;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.btn:hover {
  background: #000;
  transform: translateY(-3px);
}

/* ================= SECTIONS ================= */
section {
  padding: 100px 60px;
  background: #ffffff;
}

section h1,
section h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 38px;
}

section h2 span {
  color: #ff6a00;
}

section p {
  max-width: 900px;
  margin: 0 auto 25px auto;
  line-height: 1.8;
  font-size: 18px;
  color: #444;
  text-align: center;
}

/* ================= CARDS ================= */
.cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.card {
  background: #fff;
  padding: 30px;
  width: 280px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.4s;
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  border-top: 4px solid #ff6a00;
}

/* ================= CONTACT FORM ================= */
.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff6a00;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

/* ================= PREMIUM ORANGE FOOTER ================= */
footer {
  background: #ff6a00;
  color: white;
  padding: 60px 20px 30px;
  text-align: center;
}

footer h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 800;
}

footer p {
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
  color: #fff;
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-block;
  margin: 0 10px;
  font-size: 20px;
  color: white;
  transition: 0.3s;
}

.footer-social a:hover {
  transform: translateY(-5px);
  color: #000;
}

.footer-bottom {
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.9;
}

/* ================= FLOATING WHATSAPP ================= */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  line-height: 55px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 10000;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ================= SCROLL REVEAL ================= */
section h1,
section h2,
section p,
.card,
.hero-content,
.cards {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.show {
  opacity: 1 !important;
  transform: translateY(0px) !important;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  header {
    padding: 20px;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    top: 80px;
    right: 0;
    background: #ffffff;
    width: 100%;
    display: none;
    flex-direction: column;
    padding: 20px 0;
    border-top: 1px solid #eee;
  }

  nav.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 15px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  section {
    padding: 80px 20px;
  }

  section p {
    font-size: 16px;
  }

  .cards {
    flex-direction: column;
    align-items: stretch;
  }

  .card {
    width: 100%;
  }
}