    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

 html, body {
  min-height: 100%;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  overflow-y: auto; /* ✅ sahi */
  color: white;
}
/* Chrome, Edge, Safari */
body::-webkit-scrollbar {
  display: none;
}

/* Firefox */
body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}



    /* ✅ Fixed Background */
   .background {
 background: url('ba.jpg') no-repeat center center/cover;
  position: fixed;
  top: 0;
  left: 0;
bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

 /* ✅ Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #111;
      color: white;
      padding: 15px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 10000;
    }

    /* ✅ Logo */
    .logo img {
      max-width: 180px;
    }

    /* ✅ Navbar Desktop */
    .navbar ul {
      display: flex;
      list-style: none;
      gap: 30px;
    }

    .navbar ul li a {
      color: white;
      text-decoration: none;
      font-size: 17px;
      font-weight: 500;
      position: relative;
    }

    .navbar ul li a::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      background: #ffd700;
      left: 0;
      bottom: -5px;
      transition: 0.3s ease;
    }

    .navbar ul li a:hover {
      color: #ffd700;
    }

    .navbar ul li a:hover::after {
      width: 100%;
    }

    /* ✅ Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      z-index: 11000;
    }

    .hamburger span {
      height: 3px;
      width: 28px;
      background: white;
      border-radius: 3px;
      transition: 0.3s ease;
    }

    .hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* ✅ Mobile & Tablet Navbar */
    @media (max-width: 1024px) {
      .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: #222;
        padding: 80px 30px;
        transition: 0.4s ease;
      }

      .navbar.active {
        right: 0;
        box-shadow: -4px 0 20px rgba(0,0,0,0.5);
      }

      .navbar ul {
        flex-direction: column;
        gap: 25px;
      }

      .hamburger {
        display: flex;
      }
    }

    /* ✅ Overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    
      display: none;
      z-index: 9000;
    }

    .overlay.active {
      display: block;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }


    /* ✅ Section Styles */
    .hero-section {
      padding: 100px 30px;
      text-align: center;
       min-height: 100vh;
  
  position: relative;
  
    }
  .hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0); /* agar dark overlay chahiye */
  z-index: 1;
  pointer-events: none;   /* 👈 ye line add karo */
}
.video-wrapper video {
  position: relative;
  z-index: 2; /* 👈 overlay se upar */
}

    .hero-section h1 {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .hero-section p {
      font-size: 18px;
      margin-bottom: 30px;
    }

    .video-wrapper video {
      width: 90%;
      max-width: 700px;
      border-radius: 12px;
      box-shadow: 0 0 20px #000;
    }

    .info-section {
      padding: 60px 20px;
    }

    .container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-around;
      margin-bottom: 60px;
    }

    .container.reverse {
      flex-direction: row-reverse;
    }

    .text-box{
        border: 1px solid white;
        padding: 30px;
  border: 1px solid white;
  border-radius: 10px;
    }
    .text-box h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.text-box p, .text-box ul {
  font-size: 1.1rem;
  line-height: 1.7;
}
    .text-box, .image-box {
      flex: 1;
      min-width: 300px;
      max-width: 600px;
      padding: 20px;
       
    }

    .drop{
    z-index: 4;
    }
    .drop h1{
      color: #fff;
      font-size: 2.5rem;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
      z-index: 999;
      position: relative;
    }
    .image-box img {
      width: 100%;
      border-radius: 12px;
    }
    html {
  scroll-behavior: smooth;
}


.steps-section {
  padding: 50px 20px;
  text-align: center;
}

.steps-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step-box {
  background-color: white;
  color: #000;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

.step-box:hover {
  transform: translateY(-10px);
}

.step-box img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

.step-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.step-box p {
  font-size: 1.2rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .steps-section h2 {
    font-size: 2rem;
  }
}



.pricing-section {
  text-align: center;
  padding: 4rem 1rem;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.subtitle {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 3rem;
}

.pricing-cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
}

.card:hover {
  transform: translateY(-10px);
  border-color: #3b82f6;
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

.plan-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-title.basic { color: #3b82f6; }
.plan-title.advanced { color: #2563eb; }
.plan-title.professional { color: #1e40af; }

.price {
  font-size: 2.2rem;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 1rem;
}

.feature {
  font-weight: 600;
 color: #475569;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  text-align: left;
  padding: 0;
}

ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;

  
}
.color-of-li{
      color: #334155;
line-height: 1.5;
      font-size: 1.4rem;
}
.icon {
  flex-shrink: 0;
  margin-top: 4px;
}

.icon svg {
  width: 16px;
  height: 16px;
  fill: #10b981;
}






.testimonials-section {
  padding: 50px 20px;
  text-align: center;
  background: url('background.jpg') no-repeat center center / cover;
}

.testimonials-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  width: 350px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card img {
  width: 100%;
  height: auto;
  display: block;
}

.text-content {
  padding: 20px;
  background: #fff;
  color: #000;
}

.text-content h3 {
  color: #007bff;
  margin: 0 0 10px;
  font-family: sans-serif;
  font-size: 35px;
}

.text-content p {
  font-size: 1.2rem;
  line-height: 1.5;
}





.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85); /* Dark overlay */
  z-index: 1;
}

.grid-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
 
  max-width: 1200px;
  margin: 50px auto;
}

.grid-item img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}
.grid-item{
margin: 0px auto
;
}

.grid-item img:hover {
  transform: scale(1.03);
}





    .faq-container {
      max-width: 1100px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .faq-item {
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      padding: 20px;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
      opacity: 0; /* hidden initially */
      transform: translateY(30px); /* animate from below */
    }

    .faq-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-size: 16px;
      font-family: sans-serif;
    }

    .plus {
      font-size: 24px;
      color: #333;
      transition: transform 0.3s ease;
    }

    .faq-item.active .plus {
      transform: rotate(45deg);
      color: #007BFF;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: all 0.4s ease;
      margin-top: 0;
      font-size: 16px;
      color: #444;
    }
   

    .faq-item.active .faq-answer {
      max-height: 500px;
      opacity: 1;
      margin-top: 15px;
    }

    @media (max-width: 768px) {
      .faq-container {
        grid-template-columns: 1fr;
      }
      .f{
        padding: 10px;
      }
    }
    .faq-question {
      color: #000;
    }


    .im{
      width: 340px;
      height: 350px;
      margin-top: 15px;
    }
    .im img{
      width: 100%;height: 100%;background-size: cover;
    }



    .drop{
        margin-top: 20px;font-size: 17px;
    }















       .contact-section {
      padding: 80px 20px;
      text-align: center;
      
      position: relative;
    }

    .contact-section::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
  
      z-index: 0;
    }

    .contact-section * {
      position: relative;
      z-index: 1;
    }

    .contact-header h2 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .contact-header p {
      font-size: 1.1rem;
      color: #ccc;
      margin-bottom: 50px;
    }

    .contact-options {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
    }

    .contact-card {
      background: white;
      color: black;
      padding: 40px 30px;
      border-radius: 16px;
      width: 280px;
      transition: transform 0.3s ease;
    
    }

    .contact-card:hover {
      transform: translateY(-10px);
    }

  


    .icon-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: white;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card:nth-child(1) .icon-circle {
  background-color: #25D366; /* WhatsApp Green */
}
.contact-card:nth-child(2) .icon-circle {
  background-color: #0A66C2; /* Phone Blue (LinkedIn blue or standard call) */
}
.contact-card:nth-child(3) .icon-circle {
  background-color: #D44638; /* Gmail Red */
}

.icon-circle i {
  color: white;
  font-size: 42px;
}

    .contact-btn {
      display: inline-block;
      margin-top: 15px;
      background-color: #007bff;
      color: white;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
    }

    .contact-btn:hover {
      background-color: #0056b3;
    }

    @media (max-width: 768px) {
      .contact-options {
        flex-direction: column;
        align-items: center;
      }

      .contact-card {
        width: 90%;
      }
    }

    .bigbutton{
      width: 100%;
      height: 100px ;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    /* From Uiverse.io by mrhyddenn */ 
.shadow__btn {
  padding: 10px 20px;
  border: none;
  font-size: 14px;
  color: #fff;
  border-radius: 7px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.5s;
  transition-property: box-shadow;
}

.shadow__btn {
  background: rgb(0,140,255);
  box-shadow: 0 0 25px rgb(0,140,255);
}

.shadow__btn:hover {
  box-shadow: 0 0 5px rgb(0,140,255),
              0 0 25px rgb(0,140,255),
              0 0 50px rgb(0,140,255),
              0 0 100px rgb(0,140,255);
              cursor: pointer;
}


.what{
  width: 50px;
  height: 50px;
  position: fixed;
  top: 20px;
}
.whatbox{
  width: 70px;
  left: 20px;
  height: 70px;
  position: fixed;
  bottom: 20px;
  border-radius: 50%;
  background-image: url('what.png');
z-index: 999;
  background-size: cover;
}






 footer{
      background:#111;
      color:#ddd;
      padding:50px 20px 20px;
      position: relative;
      overflow: hidden;
      margin-top: 20px;
    }
    .footer-container{
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
      gap:30px;
      max-width:1200px;
      margin:auto;
    }
    .footer-col h3{
      color:#fff;
      margin-bottom:15px;
      position:relative;
    }
    .footer-col h3::after{
      content:"";
      position:absolute;
      left:0;
      bottom:-5px;
      width:40px;
      height:2px;
      background:#f39c12;
    }
    .footer-col ul{
      list-style:none;
    }
    .footer-col ul li{
      margin:10px 0;
    }
    .footer-col ul li a{
      text-decoration:none;
      color:#bbb;
      transition:0.3s;
    }
    .footer-col ul li a:hover{
      color:#f39c12;
      padding-left:5px;
    }
    .social-links a{
      display:inline-block;
      margin-right:15px;
      font-size:20px;
      color:#bbb;
      transition:0.3s;
    }
    .social-links a:hover{
      color:#f39c12;
      transform: translateY(-4px);
    }
    .footer-bottom{
      text-align:center;
      border-top:1px solid rgba(255,255,255,0.2);
      margin-top:30px;
      padding-top:15px;
      font-size:14px;
      color:#aaa;
    }
    /* Responsive Fix */
    @media(max-width:768px){
      .footer-container{
        text-align:center;
      }
      .social-links a{
        margin:0 10px;
      }
    }