* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: white url(https://www.transparenttextures.com/patterns/white-wall-3.png);
    /* min-height: 100vh; */
    position: relative;
    /* overflow: hidden; */
  }
  
  .container {
    width: 100%;
    height: 100vh;
    position: relative;
  }
  
  .logo-wrapper {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  
  .logo-wrapper h1 {
    font-size: 90px;
    font-weight: 600;
    color: black;
  }
  
  .logo-wrapper h1 span {
    color: #f58220;
  }
  
  .logo-wrapper p {
    font-size: 18px;
    margin-top: 10px;
    color: black;
  }
  
  .logo-wrapper p span {
    color: #f58220;
  }
  
  .menu-icon {
    position: absolute;
    top: 40px;
    right: 30px;
    font-size: 38px;
  }
  
  .icons {
    position: absolute;
    left: 120px;
    top: 80px;
    display: flex;
    flex-direction: column;
    z-index: 10;
  }
  
  .icons img {
    width: 105px;
    height: auto;
    transform: perspective(1000px) rotateY(20deg); /* 3D effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: bounce 2s infinite ease-in-out; /* Animation for up-down effect */
  }
  
  .icons img:nth-child(1) {
    margin-left: 0px;
    margin-bottom: 20px;
  }
  
  .icons img:nth-child(2) {
    margin-left: 50px;
    margin-bottom: 20px;
  }
  
  .icons img:nth-child(3) {
    margin-left: 25px;
    margin-bottom: 20px;
  }
  
  .icons img:nth-child(4) {
    margin-left: 60px;
    margin-bottom: 20px;
  }
  
  .main-text {
    position: absolute;
    top: 350px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: black;
    font-family: 'Rubik Bubble', cursive;
  }
  
  .main-text span {
    color: #f58220;
  }
  
  .right-image {
    position: absolute;
    right: 30px;
    top: 130px;
    width: 350px;
    transition: transform 0.3s ease;
  }
  
  .right-image:hover {
    transform: scale(1.05);
  }
  
  .rainbow-line {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, red, orange, yellow, green, blue);
  }
  
  .scroll-down {
    position: absolute;
    bottom: 60px; /* ↓ Thoda upar kar diya */
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    background-color: #f58220;  /* Tumhara orange color */
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  
  @keyframes bounce {
    0%, 100% {
      transform: perspective(1000px) rotateY(20deg) translateY(0);
    }
    50% {
      transform: perspective(1000px) rotateY(20deg) translateY(-15px);
    }
  }
  
  @media (max-width: 768px) {
    .logo-wrapper h1 {
      font-size: 40px;
    }
    .right-image {
      position: static;
      display: block;
      margin: 40px auto 0 auto;
      width: 240px;
    }
    .main-text {
      top: 270px;
      font-size: 20px;
      padding: 0 20px;
    }
    .icons {
      left: 20px;
      top: 120px;
    }
    .icons img {
      width: 60px;
    }
    .icons img:nth-child(2),
    .icons img:nth-child(3),
    .icons img:nth-child(4) {
      margin-left: 0;
    }
  }
  
  @media (max-width: 768px) {
    .logo-wrapper {
      top: 150px; /* Thoda niche */
    }
  
    .logo-wrapper h1 {
      font-size: 49px; /* Aesthox font size */
    }
  
    .logo-wrapper p {
      font-size: 14px;
    }
  
    .right-image {
      position: absolute;
      right: 8px;
      top: 360px; /* Your value */
      width: 220px;
      transform: scale(1.02);
      opacity: 0.95;
    }
  
    .main-text {
      top: 50%; /* Your value */
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 25px; /* Your value */
      padding: 0 20px;
      text-align: center;
      line-height: 1.6;
    }
  
    .icons {
      left: 20px;
      top: 100px;
    }
  
    .icons img {
      width: 50px;
    }
  
    .icons img:nth-child(2),
    .icons img:nth-child(3),
    .icons img:nth-child(4) {
      margin-left: 0;
    }
  }
  
  .main-text span {
    color: #f58220;
    text-shadow: 0 0 8px #f58220, 0 0 12px #ffae42;
  }
  
  
  @media (min-width: 769px) and (max-width: 1024px) {
    .right-image {
      position: absolute;
      right: 0px;
      top: 343px;
      width: 245px;
      transform: scale(1.02);
      opacity: 0.95;
    }
  }
  @media (min-width: 769px) and (max-width: 1024px) {
    .right-image {
      position: absolute;
      right: 0px;
      top: 308px;
      width: 245px;
      transform: scale(1.02);
      opacity: 0.95;
    }
  }
  
  
  /* Dropdoun */
  
  .menu-icon {
    font-size: 32px;
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #f58220;
    padding: 10px 12px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease;
    padding-top: 80px;
    z-index: 1000;
  }

  .sidebar.open {
    left: 0;
  }

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

  .sidebar ul li {
    padding: 15px 25px;
    font-size: 18px;
    cursor: pointer;
    color: #333;
    border-bottom: 1px solid #eee;
  }

  .sidebar ul li:hover {
    background-color: #f58220;
    color: white;
  }

  .submenu {
    display: none;
    background-color: #f7f7f7;
  }

  .submenu li {
    padding-left: 35px;
    font-size: 16px;
  }

  .sidebar ul li.open + .submenu {
    display: block;
  }
  .arrow {
    transition: transform 0.3s ease;
  }
  
  .sidebar ul li.open .arrow {
    transform: rotate(180deg);
  }
  

  .social-links {
    position: absolute;
    bottom: 20px;
    left: 25px;
    display: flex;
    gap: 16px;
  }
  
  .social-links img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
  }
  
  .social-links img:hover {
    transform: scale(1.2);
  }

  @media (min-width: 769px) {
    .submenu {
      max-height: 200px;
      overflow-y: auto;
      display: none;
    }
  
    /* Scrollbar customization */
    .submenu::-webkit-scrollbar {
      width: 6px;
    }
  
    .submenu::-webkit-scrollbar-thumb {
      background-color: #f58220; /* Orange thumb */
      border-radius: 3px;
    }
  
    .submenu::-webkit-scrollbar-track {
      background-color: #f7f7f7; /* Light background */
    }
  }
  



  /* SECOND SECTIONN START */

/* How It Works Section */
.how-it-works {
  padding: 100px 20px 100px; /* Upar aur neeche dono side zyada space */
  text-align: center;
  font-family: 'Poppins', sans-serif;
  background: white url(https://www.transparenttextures.com/patterns/white-wall-3.png);
  position: relative;
  min-height: 100vh; /* Full viewport height */
}

.how-it-works .title {
  font-size: 3rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 60px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  font-family: 'Fredoka', 'Poppins', sans-serif; /* Stylish rounded font */
}

.steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.step {
  width: 250px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 10px;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
}

.step-img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto 20px;
}

.step-text {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  z-index: 1;
}
.step-text::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #ff7eb3, #ff758c, #ffce6b);
  border-radius: 15px;
  z-index: -1;
  transform: rotate(-2deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


/* Rainbow Line */
.rainbow-line {
  position: absolute;
  bottom: 0; /* Bilkul neeche */
  left: 0;
  width: 100%;
  height: 50px; /* Thodi moti rainbow */
  background: linear-gradient(
    to right,
    red,
    orange,
    yellow,
    green,
    blue,
    indigo,
    violet
  );
  border-radius: 0;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.2);
  mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
}

/* Rainbow Line - Normal */
.rainbow-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(
    to right,
    red,
    orange,
    yellow,
    green,
    blue,
    indigo,
    violet
  );
  border-radius: 0;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.2);
  mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
}

/* Rainbow Line - Upside Down */
.rainbow-line-bottom {
  position: absolute;
  bottom: -50px; /* Normal ke just neeche */
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(
    to right,
    red,
    orange,
    yellow,
    green,
    blue,
    indigo,
    violet
  );
  border-radius: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
}

/* tools section start */

.tools-section {
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  background: white url(https://www.transparenttextures.com/patterns/white-wall-3.png);
}

.tools-section .title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 60px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
}

.tool-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 280px;
}

.tool-card:hover {
  transform: translateY(-10px);
}

.tool-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.tool-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.tool-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.use-tool-btn {
  margin-top: auto;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(45deg, #ff6b6b, #f94d6a);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.use-tool-btn:hover {
  background: linear-gradient(45deg, #f94d6a, #ff6b6b);
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
  .tool-img {
    height: 150px;
  }
}


.aesthox-container {
  background: white url('https://www.transparenttextures.com/patterns/white-wall-3.png') repeat;
  font-family: 'Poppins', sans-serif;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.aesthox-text {
  flex: 1 1 500px;
  text-align: center;
}

.aesthox-text h2 {
  font-size: 28px;
  background: white;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 15px;
  margin: 10px 0;
  animation: sway 4s ease-in-out infinite;
}

@keyframes sway {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.aesthox-highlight {
  color: orange;
  font-weight: 600;
}

.aesthox-steps {
  margin-top: 30px;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.aesthox-steps li {
  margin-bottom: 15px;
  line-height: 1.6;
}

.aesthox-image {
  flex: 1 1 300px;
  text-align: center;
}

.aesthox-image img {
  max-width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  border-radius: 12px;
}

.aesthox-image img:hover {
  transform: scale(1.03);
}

.aesthox-icon {
  width: 50px;
  vertical-align: middle;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .aesthox-container {
    flex-direction: column;
    padding: 20px 10px;
  }
  .aesthox-steps {
    text-align: center;
  }
}
.aesthox-divider {
  position: absolute; /* Ya fixed — jo tum use kar rahe ho */
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px; /* ↓ Yeh kam kiya — pehle 120px tha */
  background-color: white;
  background-image: radial-gradient(black 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.3;
  z-index: 99;
  pointer-events: none;
}

.scroll-badge {
  display: inline-block;
  font-size: 14px;
  background-color: #f58220;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
  margin: 10px 0;
}


.dot-divider {
  width: 100%;
  height: 40px;
  background-color: white;
  background-image: radial-gradient(black 2px, transparent 1px); /* Bada dot */
  background-size: 12px 12px; /* Spacing match with bigger dots */
  opacity: 0.3;
  margin: 40px 0;
  pointer-events: none;
}


/* FOOTER STYLES */
.prajwalanimation-footer {
  background: black;
  color: white;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Stars */
.prajwalanimation-random-stars {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.prajwalanimation-random-stars .star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  opacity: 0.7;
}

/* Image */
.prajwalanimation-footer-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prajwalanimation-img-final {
  max-width: 22%;
  opacity: 0;
  animation: fadeInCenter 2s ease-in 1s forwards;
  z-index: 3;
}

/* Flash (if needed later) */
.prajwalanimation-flash {
  display: none;
}

/* Social Sharing */
.prajwalanimation-social-share {
  position: relative;
  margin-top: 30px;
  text-align: center;
  z-index: 4;
}

.prajwalanimation-share-heading {
  font-family: 'Comic Sans MS', cursive;
  font-size: 26px;
  margin-bottom: 12px;
}

.prajwalanimation-share-button {
  background-color: orange;
  color: black;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 16px;
  transition: background 0.3s;
}

.prajwalanimation-share-button:hover {
  background-color: darkorange;
}

.prajwalanimation-social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.prajwalanimation-social-links img {
  width: 28px;
  height: 28px;
  filter: invert(100%);
  transition: transform 0.3s;
}

.prajwalanimation-social-links img:hover {
  transform: scale(1.2);
}

/* Animation Keyframes */
@keyframes fadeInCenter {
  to {
    opacity: 1;
  }
}

/* ✅ RESPONSIVE STYLES */
@media (max-width: 768px) {
  .prajwalanimation-footer-wrapper {
    height: 50vh;
  }

  .prajwalanimation-img-final {
    max-width: 70%;
    animation: fadeInCenter 2s ease-in 0.5s forwards;
  }

  .prajwalanimation-share-heading {
    font-size: 22px;
  }

  .prajwalanimation-share-button {
    font-size: 16px;
    padding: 10px 20px;
  }

  .prajwalanimation-social-links {
    gap: 20px;
  }

  .prajwalanimation-social-links img {
    width: 32px;
    height: 32px;
  }
}


ul li a {
  color: inherit;      /* Link ka color normal*/
  text-decoration: none; /* Underline */
  display: block;       /* Pura block clickable banane ke liye */
}


/* Mobile screen ke liye bhi submenu mein scrollbar */
@media (max-width: 768px) {
  .submenu {
    max-height: 200px;
    overflow-y: auto;
    display: none;
  }

  /* Mobile ke liye bhi scrollbar ka style */
  .submenu::-webkit-scrollbar {
    width: 6px;
  }

  .submenu::-webkit-scrollbar-thumb {
    background-color: #f58220; /* Orange thumb */
    border-radius: 3px;
  }

  .submenu::-webkit-scrollbar-track {
    background-color: #f7f7f7; /* Light background */
  }
}

