/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* ========== GLOBAL BACKGROUND (SAME EVERYWHERE) ========== */
html, body {
  width: 100%;
  min-height: 100%;
  background: linear-gradient(
    135deg,
    #FFF2E2 0%,
    #FFF6ED 35%,
    #EEF4FF 70%,
    #E9F0FF 100%
  );
  color: #000;
}

/* ================= DESKTOP ================= */

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  padding: 40px 60px;
}

/* LOGO – DESKTOP (TOP LEFT, SMALLER) */
.logo {
  width: 700px;
  max-width: 35%;
  height: auto;
  position: absolute;
  top: 30px;
  left: 40px;
}

/* COMPANY NAME – CENTER */
.company-name {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* MAIN NAME */
.name-main {
  font-size: 160px;
  font-weight: 800;
  color: #071f5a; /* Dark blue */
  letter-spacing: 8px;
  line-height: 1;
}

/* SUB NAME */
.name-sub {
  font-size: 60px;
  font-weight: 700;
  color: #1f7a3a;
  margin-top: 20px;
  letter-spacing: 2px;
}

/* ================= CONTENT ================= */

.section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.section p,
.section li {
  font-size: 17px;
}

ul {
  list-style: none;
}

ul li {
  margin: 10px 0;
}

/* FOOTER */
.footer {
  padding: 30px;
  text-align: center;
  font-size: 14px;
}

/* ================= FLOATING CALL & WHATSAPP ================= */

.float-btn {
  position: fixed;
  bottom: 80px;              /* thoda upar */
  width: 68px;               /* mota */
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;           /* icon mota */
  text-decoration: none;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 10px 22px rgba(0,0,0,0.28);
}

/* WHATSAPP – LEFT */
.float-btn.whatsapp {
  left: 40px;                /* corner mathi andar */
  background: #25D366;
}

/* CALL – RIGHT */
.float-btn.call {
  right: 40px;               /* corner mathi andar */
  background: #071f5a;
}

/* ================= 📱 MOBILE ================= */

@media (max-width: 900px) {

  .hero {
    min-height: auto;
    padding: 40px 20px;
    text-align: center;
  }

  /* LOGO MOBILE */
  .logo {
    position: static;
    width: 200px;
    max-width: 100%;
    margin: 0 auto 16px;
    display: block;
  }

  /* NAME MOBILE */
  .company-name {
    height: auto;
    max-width: 200px;
    margin: 0 auto;
  }

  .name-main {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .name-sub {
    font-size: 18px;
    margin-top: 6px;
  }

  /* CONTENT MOBILE */
  .section {
    margin: 40px auto;
    padding: 32px 14px;
  }

  .section h2 {
    font-size: 26px;
  }

  .section p,
  .section li {
    font-size: 14px;
  }

  /* FLOATING BUTTONS – MOBILE */
  .float-btn {
    width: 64px;
    height: 64px;
    font-size: 28px;
    bottom: 60px;
  }

  .float-btn.whatsapp {
    left: 28px;
  }

  .float-btn.call {
    right: 28px;
  }
}
