html {
  scroll-behavior: smooth;
}

/* ===================== GLOBAL RESET ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 100px;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  background-color: #fff;
  color: #000;
  scroll-behavior: smooth;
}

/* ===================== HEADER ===================== */
header {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(35deg, #ffffff, #ffffff, #fc5d02);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 10px rgba(115, 115, 115, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

section {
  scroll-margin-top: 100px;
  /* header ki height ke barabar */
}

/* ===================== LOGO ===================== */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 70px;
  object-fit: contain;
}

/* ===================== NAV LINKS ===================== */
.nav-links {
  display: flex;
  gap: 45px;
}

.nav-links a {
  color: #000;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #000;
}

/* ===== SUBMENU ===== */
.has-submenu {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(to bottom right, #fff5e1, #ffffff);
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  min-width: 180px;
  z-index: 999;
}

.submenu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}

.submenu a:hover {
  background-color: #f97316;
  color: #fff;
  border-radius: 6px;
}

@media (min-width: 769px) {
  .has-submenu:hover .submenu {
    display: block;
  }
}



/* ===================== MAIN ===================== */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
  min-height: 100vh;
  background: linear-gradient(160deg, #ffffff, #fff5ed, #ffe1cc);
  color: #222;
  position: relative;
  overflow: hidden;
}

/* Decorative background shapes */
main::before,
main::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(252, 93, 2, 0.08);
  filter: blur(80px);
}
main::before {
  width: 280px; height: 280px;
  top: 15%; left: 12%;
}
main::after {
  width: 380px; height: 380px;
  bottom: 15%; right: 12%;
}

/* Heading */
main h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: linear-gradient(90deg, #fc5d02, #ff944d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
main p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #444;
  max-width: 650px;
  line-height: 1.7;
}

/* Button */
.btn {
  display: inline-block;
  padding: 14px 34px;
  background: linear-gradient(90deg, #fc5d02, #ff7a2b);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(252, 93, 2, 0.3);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 24px rgba(252, 93, 2, 0.45);
  background: linear-gradient(90deg, #ff7a2b, #fc5d02);
}

/* Responsive */
@media (max-width: 768px) {
  main h1 {
    font-size: 2.2rem;
  }
  main p {
    font-size: 1rem;
  }
  .btn {
    font-size: 1rem;
    padding: 12px 26px;
  }
}


/* ====== Footer ====== */
.site-footer {
  background: radial-gradient(1200px 600px at 70% -200px, rgba(252, 93, 2, 0.08), transparent 60%),
    #101216;
  color: #d6d8de;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}


.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 10px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 28px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 14px;
  letter-spacing: .3px;
}

.footer-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  background: #fff;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-name {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}

.brand-tagline {
  margin: 10px 0 14px;
  color: #b9bcc6;
  line-height: 1.6;
  font-size: .95rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #cfd2da;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
  color: #ffd28f;
  transform: translateX(4px);
}

.contact-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.contact-list a {
  color: #d6d8de;
  text-decoration: none;
}

.contact-list a:hover {
  color: #ffd28f;
}

.ci {
  margin-right: 6px;
  filter: grayscale(20%);
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.newsletter input {
  flex: 1;
  background: #161a21;
  border: 1px solid #242934;
  color: #e6e8ee;
  border-radius: 10px;
  padding: 10px 12px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

.newsletter input:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(252, 93, 2, .18);
}

.newsletter button {
  background: linear-gradient(90deg, #fc5d02, #ff7a2b);
  border: none;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease;
}

.newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(252, 93, 2, .35);
}

/* Socials */
.social-row {
  display: flex;
  gap: 10px;
}

.social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #161a21;
  border: 1px solid #242934;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.social svg {
  width: 18px;
  fill: #e6e8ee;
}

.social:hover {
  transform: translateY(-3px);
  background: #1b2130;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .35),
    0 0 0 2px rgba(252, 93, 2, .25) inset;
}

/* Bottom strip */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin-top: 20px;
  padding: 14px 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  color: #aeb3bf;
  font-size: .92rem;
}

.bottom-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.bottom-links a {
  color: #cfd2da;
  text-decoration: none;
}

.bottom-links a:hover {
  color: #ffd28f;
}

/* Responsive */
@media (max-width: 980px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .has-submenu .submenu {
    position: static;   /* dropdown full width le */
    box-shadow: none;
    border-radius: 0;
    display: none;
  }

  .has-submenu.active .submenu {
    display: block;
  }

  .submenu a {
    padding-left: 40px; /* thoda indent dikhane ke liye */
  }
}

/* ===================== MOBILE NAV FIX ===================== */
@media (max-width: 768px) {
  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
  }

  /* Hide nav links by default */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px 0;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    z-index: 999;
  }

  /* When menu is active */
  .nav-links.active {
    display: flex;
  }

  /* Mobile nav link styles */
  .nav-links a {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    color: #000;
    text-align: left;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
}
