@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: "Poppins", sans-serif !important;
  overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif !important;
    background: url('bgim.png');
  color: white;
}

a {
  color: white;
  text-decoration: none;
}

/* Global Overlay */
.global-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

body > *:not(.global-overlay) {
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  width: 100%;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.header .logo img {
  width: auto;
  height: 70px;
  max-width: 100%;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #47B3FF;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Section 1 - Hero */
.section-hero {
  padding: 9rem 1rem 3rem; /* enough top padding for fixed header */
  min-height: 90vh;
  text-align: center;
}

.title {
  font-size: 2rem;
  font-weight: 400;
  margin-top: 3rem;
}

.highlight {
  color: #47B3FF;
  font-weight: bold;
}

.muted {
  text-decoration: line-through;
  color: #aaa;
}

.btn {
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.wave {
  margin-top: 3rem;
}

.wave .waveIm {
  display: block;
  width: 100%;
  margin: 0 auto;
}

/* Section 2 - Features */
.section-features {
  padding: 4rem 1rem 6rem;
  background: transparent;
  text-align: center;
}

.subheading {
  font-size: 1.5rem;
  font-weight: 300;
}

.cards {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.card {
  width: 600px;
  height: 300px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* Footer */
.footer {
  background: rgba(0,0,0,0.85);
  padding: 2rem 1rem;
  text-align: center;
  margin-top: 2rem;
}

.footer .footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer .footer-nav {
  margin: 1rem 0;
}

.footer .footer-nav a {
  margin: 0 1rem;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer .footer-nav a:hover {
  color: #47B3FF;
}

.footer .contact {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .header {
    padding: 1rem;
  }
  
  .header .logo img {
    height: 50px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 5rem;
    gap: 2rem;
    transition: right 0.4s ease;
    z-index: 99;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav a {
    font-size: 1.2rem;
    padding: 0.5rem 0;
    width: 80%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .title {
    font-size: 1.3rem;
    margin-top: 4rem;
  }
  
  .title .highlight {
    font-size: 3rem !important;
  }

  .subheading {
    font-size: 1.2rem;
  }
  
  .subheading .highlight {
    font-size: 2.5rem !important;
  }

  .card {
    width: 90%;
    height: 250px;
  }
  
  .footer .footer-nav a {
    display: block;
    margin: 0.5rem 0;
  }
  
  /* Menu toggle animation when active */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@media (max-width: 480px) {
  .title .highlight {
    font-size: 2.5rem !important;
  }
  
  .subheading .highlight {
    font-size: 2rem !important;
  }
  
  .card {
    height: 200px;
  }
}

/* Smart Mirror Analogy Section */

.analogy-card {
margin-top: -200px !important;
margin: auto;
background: #fff;
color: #000;
max-width: 1100px;
padding: 3rem 2.5rem;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.25);
text-align: left;
}

.analogy-card h2 {
font-size: 1.8rem;
margin-bottom: 1.5rem;
font-weight: 500;
}

.analogy-card p {
font-size: 1rem;
line-height: 1.8;
color: #666;
margin-bottom: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
.analogy-card {
position: static;
transform: none;
margin: -3rem auto 2rem;
width: 90%;
padding: 2rem;
}

.analogy-card h2 {
font-size: 1.4rem;
}

.analogy-card p {
font-size: 0.95rem;
}
}
.inner-div{
padding-top: 30px;
padding-bottom: 30px;
background-color: #eceaea;

margin: 80px auto;
}

.difference-section {

text-align: center;
}

.section-title {
font-size: 2rem;
font-weight: 600;
margin-bottom: 50px;
color: #111;
}

.content-wrapper {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 40px;
}

.image-container {
flex: 1 1 400px;
display: flex;
justify-content: center;
}

.image-container img {
width: 100%;
max-width: 500px;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.text-container {
flex: 1 1 400px;
text-align: left;
}

.text-container .intro {
font-size: 1.1rem;
color: #555;
margin-bottom: 20px;
}

.points {
list-style: none;
padding: 0;
margin: 0;
}

.points li {
margin-bottom: 15px;
line-height: 1.6;
color: #666;
}

.points strong {
color: #000;
}

.xrange-last{
background-color: #fff !important;
}

.last-inner{
padding-bottom: 80px;
padding-top: 80px;
max-width: 1100px !important;
margin: auto;

}

