/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   font-family: 'Poppins', sans-serif;
}

body {
  background: #f5f5f5;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  overflow: hidden;
  text-align: center;
   padding-top: 2px; /* PUSH CONTENT UP */
}



/* BACKGROUND CIRCLE */
.circle {
  position: absolute;
  width: 1300px;
  height: 1300px;
  background: linear-gradient(135deg, #c9c9ff, #ffd6d6);
  border-radius: 50%;
  top: -600px;   /* pushes circle up */
  left: 50%;
  transform: translateX(-50%);

  z-index: 0;
}

.circle2 {
  position: absolute;
  width: 1100px;
  height: 1000px;
  background: white;
  border-radius: 50%;

  top: -450px;
  left: 50%;
  transform: translateX(-50%);

  z-index: 1;
}

/* BIG TEXT */
.bg-text {
  opacity: 0.9;
  position: absolute;
  font-size: 30px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.7);

  letter-spacing: 10px;

  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);

  z-index: 1;
}

.bg-text.animate {
  opacity: 0;
  transform: translate(-50%, -60%);
}

/* PRODUCT */
.product {
  width: 500px;
  max-width: 90%;

  position: relative;
  z-index: 2;

  margin: auto;
  display: block;
    transform: translateY(-120px); 
  transition: 0.4s ease;
}




/* animation state */
.product.animate {
  transform: scale(0.8);
  opacity: 0;
}

.product:hover {
  transform: translateY(-120px) scale(1.05); /* FIX */
}



/* DOTS */
.dots {
  position: absolute;
  bottom: 50px;
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: black;
  opacity: 0.3;
  cursor: pointer;

  transition: all 0.3s ease;  /* ADD THIS */
}

.dot.active {
  background: #6c63ff;
  opacity: 1;
  transform: scale(1.5);  /* Smooth grow effect */
}

.dots {
  position: absolute;
  bottom: 50px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.content {
  position: absolute;
  bottom: 120px;
  text-align: center;
  z-index: 4;
  width: 100%;
}



.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  background: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.arrow:hover {
  background: black;
  color: white;
}

.arrow.left {
  left: 30px;
}

.arrow.right {
  right: 30px;
}

.top-bar {
  width: 100%;
  background: black;
  color: white;
  font-size: 14px;
  padding: 8px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar .discount {
  background: #6c63ff;
  padding: 5px 15px;
  border-radius: 20px;
}

.navbar {
  width: 80%;
  margin: 20px auto;

  background: white;
  padding: 15px 30px;
  border-radius: 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

  position: relative;
  z-index: 10;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  font-family: cursive;
  position: relative;
}

.logo::before,
.logo::after {
  content: "";
  position: absolute;
  height: 3px;

  width: 60px;
  left: 0;
}



.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links li {
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li:hover {
  color: #6c63ff;
}

.nav-icons {
  display: flex;
  gap: 20px;
  font-size: 18px;
  cursor: pointer;
}

.nav-icons span:hover {
  color: #6c63ff;
}
/* MOBILE NAVBAR */
@media (max-width: 768px) {

  .navbar {
    width: 100%;
    padding: 25px 40px;
  }

  .nav-links {
    display: none;
  }

  .logo img {
    height: 40px;
  }

}

/* HERO RESPONSIVE */
@media (max-width: 768px) {

  .product {
    width: 300px;
  }

  .bg-text {
    font-size: 90px;
  }

}

/* ===================== */
/* PLATFORMS SECTION */
/* ===================== */

.platforms {
  padding: 100px 5%;
  background: linear-gradient(135deg, #d7cdcd, #fafafa);
  text-align: center;
  color:black;
   display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 60px;
  margin-bottom: 10px;
}

.section-desc {
  max-width: 600px;
  margin: auto;
  margin-bottom: 80px;
}

/* CARDS CONTAINER */
/* ===================== */

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  align-items: stretch; /* equal height */
}


/* ===================== */
/* CARD */
/* ===================== */

.card {
  width: 340px;
  min-height: 200px;

  background: #f4f4f4;
  padding: 40px 30px 80px; /* extra bottom for logo */
  border-radius: 25px;

  text-align: center;
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

  transition: 0.3s ease;
}

/* Hover */
.card:hover {
  transform: translateY(-10px);
}


/* ===================== */
/* TEXT */
/* ===================== */

.card p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;

  max-width: 260px; /* keeps text centered */
  margin: 0 auto 20px auto;
}

.card h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.card span {
  font-size: 14px;
  color: #777;
   margin-bottom: 6px;
}

.card {
  border: 2px solid rgb(0, 0, 0);
}

.logo-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;

  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
}

.logo-circle img {
  width: 50px;
}

/* MOBILE */
@media (max-width: px) {

  .cards {
    flex-direction: column;
    align-items: center;
  }

}

/* ===================== */
/* FOOTER */
/* ===================== */

.footer {
  background: linear-gradient(135deg, #000000, #000000);
  color: white;
  padding: 80px 5%;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
  max-width: 1200px;
  margin: auto;
}


.footer-col:nth-child(2) {
  margin-right: 40px;
}

.footer-col:nth-child(3) {
  margin-left: 40px;
}

.footer-col h3 {
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}


.footer-logo {
  font-size: 28px;
  margin-bottom: 20px;
}

/* TEXT */
.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-col ul li:hover {
  color: #ddd;
}

/* SOCIAL ICONS */
.socials {
  display: flex;
  gap: 18px;
}
.socials {
  display: flex;
  gap: 15px;
}

/* ICON BOX */
.socials {
  display: flex;
  gap: 15px;
}

/* APPLY BOX TO SVG (IMPORTANT) */
.socials svg {
  width: 42px;
  height: 42px;

  padding: 10px;

  border: 2px solid rgb(255, 253, 253);
  border-radius: 10px;

  color: white;

  cursor: pointer;
  transition: 0.3s;
  stroke: rgb(255, 250, 250);

}

.socials svg:hover {
  background: rgb(255, 255, 255);
  color: #6c63ff;
}








/* CONTACT */
.phone, .email {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.timing {
  font-size: 14px;
  margin-bottom: 20px;
}

/* LINE */
.footer hr {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.4);
  margin: 20px 0;
}

@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

}
