* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: linear-gradient(to right, #ef3b2d, #f3702b);
  padding: 12px 25px;
  color: white;
  position: relative;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-section img {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 10px;
  padding: 4px;
}

.logo-section span {
  font-size: 20px;
  font-weight: bold;
  white-space: nowrap;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

.quote-btn {
  background: white;
  color: #d92727;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.quote-btn:hover {
  background: #00b381;
  color: white;
}

/* Toggle button for mobile */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    margin-top: 10px;
  }

  nav.active {
    display: flex;
  }

  .quote-btn {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ✅ Hide "Get Quote" button on mobile */
@media (max-width: 768px) {
  .quote-btn {
    display: none;
  }
}

/* ✅ Position toggle button in mobile */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

/* Fix position on mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1000;
  }
}

/* #hero section  */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #e94032, #f3702b);
  color: white;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 40px;
  align-items: center;
  position: relative;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
}

.hero-content .tag-left {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 60px;
  margin: 0;
  font-weight: normal;
}

.hero h1 strong {
  color: #ffd438;
  font-weight: bold;
}

.hero p {
  margin: 20px 0;
  font-size: 20px;
  line-height: 1.6;
}

.highlight {
  color: #ffd438;
  font-weight: bold;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.buy-now {
  background: white;
  color: #d92727;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.watch-demo {
  background: transparent;
  color: white;
  font-weight: bold;
  padding: 12px 25px;
  border: 2px solid white;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
}

.hero-image {
  position: relative;
  max-width: 600px;
  margin-top: 30px;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: auto;
  transition: transform 0.2s ease-out; /* for smooth rotation */
  /* Removed: animation: rotateBall 20s linear infinite; */
}

.lifespan-badge {
  position: absolute;
  left: 0;
  bottom: 30px;
  background: #7e40ff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.tag-right {
  position: absolute;
  top: 30px;
  right: 0;
  background: #ff7043;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

/* Removed animation keyframes since JS handles scroll rotation */

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-content, .hero-image {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .cta-buttons {
    justify-content: center;
  }

  .lifespan-badge,
  .tag-right {
    position: static;
    margin-top: 15px;
    display: inline-block;
  }
}

/* #why choose us  */
.features-section {
  padding: 60px 30px;
  text-align: center;
  background-color: #f9fafc;
}

.features-section h2 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.features-section .highlight-red {
  color: #e94032;
  font-weight: bold;
}

.features-section .subtext {
  font-size: 18px;
  color: #444;
  margin-bottom: 40px;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 18px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card .icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(to bottom, #ff5f2e, #ff6c45);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.feature-card .icon-box img {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: bold;
  color: #1a1a1a;
}

.feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}
/* #another section */
.product-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  background: #fff5f0;
  padding: 40px 20px;
}

.card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  max-width: 300px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.lifespan {
  background: linear-gradient(to right, #ff512f, #dd2476);
  color: white;
  font-weight: bold;
  padding: 8px;
  border-radius: 12px 12px 0 0;
  text-align: center;
  margin: -25px -25px 20px -25px;
}

.lifespan.orange {
  background: linear-gradient(to right, #ff8008, #ffc837);
}

.card h3 {
  color: #111;
  margin-bottom: 10px;
}

.card p {
  color: #555;
  margin-bottom: 15px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.card ul li {
  margin-bottom: 10px;
  color: #333;
  font-size: 15px;
}

.quote-btn {
  background: linear-gradient(to right, #ff512f, #dd2476);
  color: white;
  padding: 12px 20px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.quote-btn:hover {
  background: linear-gradient(to right, #dd2476, #ff512f);
}
/* #fire safty */
.fire-accident-banner {
  background: linear-gradient(to right, #f9c825, #f68e2d);
  padding: 80px 20px;
  text-align: center;
  color: white;
  border-radius: 0 0 20px 20px;
}

.fire-accident-banner .tagline span {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 20px;
}

.fire-accident-banner h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 10px;
}

.fire-accident-banner p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

.banner-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
/* # */
/* Section background */
.fire-stats-section {
  background: linear-gradient(to right, #f15a29, #f7941d);
  padding: 60px 20px;
}

/* Grid: 2 columns on desktop, 1 on mobile */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* Card */
.stats-card {
  display: flex;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.stats-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Icon styles */
.icon-box {
  background: white;
  color: white;
  padding: 15px;
  border-radius: 12px;
  margin-right: 20px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

/* Text */
.stats-card h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.stats-card p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .icon-box {
    margin-right: 15px;
  }
}
/* #insurance  */
.usp-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.usp-heading {
  background: linear-gradient(to right, #f15a29, #f9aa0d);
  display: inline-block;
  padding: 12px 40px;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 40px;
}

.usp-box {
  background: white;
  max-width: 1200px;
  margin: auto;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.usp-box:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.usp-title {
  background: #f7941d;
  color: white;
  padding: 12px 25px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 8px 8px 0 0;
  margin-bottom: 25px;
}

.usp-row {
  display: grid;
  grid-template-columns: 30px 1fr 10px 1fr;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
  color: #222;
}

.usp-icon {
  color: #f57c00;
  font-size: 20px;
}

.usp-dots {
  text-align: center;
}

.usp-note {
  font-size: 13px;
  color: #e53935;
  margin-top: 20px;
  text-align: center;
}
/* # */
.insurance-benefits {
  background: linear-gradient(to right, #fc4a1a, #f7b733);
  color: white;
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 50px;
}

.insurance-benefits h2 {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: bold;
}

.benefits-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.benefit-card {
  flex: 1 1 250px;
  max-width: 300px;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 20px;
  font-size: 26px;
}

.benefit-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .benefits-grid {
    flex-direction: column;
    align-items: center;
  }
}
/* #key features  */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
}

.features-section {
  text-align: center;
  padding: 60px 20px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 50px;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  background-color: #f9fafb;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.icon-box {
  background-color: #ffedd5;
  color: #f97316;
  font-size: 22px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px 0;
}

.feature-content p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
}
/* #business oppertunity  */
.business-opportunity {
  background-color: #e5e5e5;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.business-opportunity h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
}

.business-opportunity h2 span {
  color: #f97316;
}

.content-box {
  background: #ffffff;
  border-radius: 30px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.left-text {
  flex: 1 1 400px;
  text-align: left;
}

.left-text h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
}

.left-text ul {
  list-style-type: none;
  padding: 0;
}

.left-text ul li {
  font-size: 25px;
  color: #1f2937;
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}

.left-text ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #000;
  font-size: 16px;
}

.right-image img {
  max-width: 520px;
  width: 100%;
}

/* #footer  */
.site-footer {
  background-color: #0e1525;
  color: #cbd5e1;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
}

.footer-about {
  flex: 1 1 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}

.footer-logo .icon {
  background: linear-gradient(to right, #ff5200, #ff7b00);
  padding: 8px;
  border-radius: 12px;
  font-size: 18px;
  color: white;
}

.footer-about h4 {
  font-weight: 700;
  color: #fff;
  margin: 20px 0 5px;
}

.footer-about .subtext {
  color: #94a3b8;
  font-size: 14px;
}

.footer-links, .footer-contact {
  flex: 1 1 200px;
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover,
.footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact .social-icons {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}

.footer-contact .social-icons a {
  background-color: #1e293b;
  padding: 10px;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  display: inline-block;
  transition: 0.3s;
}

.footer-contact .social-icons a:hover {
  background-color: #334155;
}

.footer-contact h5 {
  margin: 10px 0;
  color: white;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
  }
}
/* #keyfeatures  */
.site-footer {
  background-color: #0e1525;
  color: #cbd5e1;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
}

.footer-about {
  flex: 1 1 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}

.footer-logo .icon {
  background: linear-gradient(to right, #ff5200, #ff7b00);
  padding: 8px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-about h4 {
  font-weight: 700;
  color: #fff;
  margin: 20px 0 5px;
}

.footer-about .subtext {
  color: #94a3b8;
  font-size: 14px;
}

.footer-links, .footer-contact {
  flex: 1 1 200px;
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover,
.footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact .social-icons {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}

.footer-contact .social-icons a {
  background-color: #1e293b;
  padding: 10px;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  display: inline-block;
  transition: 0.3s;
}

.footer-contact .social-icons a:hover {
  background-color: #334155;
}

.footer-contact h5 {
  margin: 10px 0;
  color: white;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #cbd5e1;
  font-size: 14px;
}

.footer-bottom a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
  }

  .footer-logo {
    font-size: 18px;
  }
}
/* #demo 1  */
.fire-promo-section {
  padding: 40px 20px;
  background-color: #ffffff;
}

.fire-promo-section .container {
  max-width: 1300px;
  margin: auto;
}

.promo-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* #whatsapp  */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25d366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}
