/* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background-color: #fff;
      color: #fff;
      overflow-x: hidden;
    }

    /* Navbar */
   /* Navbar */
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
   height: 60px;   /* fixed height */
  padding: 0 40px;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #f2ff69 0%, #836fff 100%);
  z-index: 1000;
}


.logo img {
  height: 40px;
  width: auto;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #ffd369;
}

.navbar .btn {
  background: #fff;
  color: #6c63ff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.navbar .btn:hover {
  background: #ffd369;
  color: #6c63ff;
}

/* Hamburger Menu (hidden by default on desktop) */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 991px) {
  .navbar {
    padding: 15px 30px;
    height: 50px;
    
  }

  .nav-links {
    position: absolute;
    top: 50px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
   background: linear-gradient(180deg, #f2ff69 0%, #836fff 100%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: all 0.4s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .navbar .btn {
    display: none; /* hide on small screen */
  }
}


@media (max-width: 768px) {
    .navbar {
        width:100%;
        height: 50px;
    }
}

    /* Hero Section */
    

    /* Trusted Section */
.trusted {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  color: #333;
}

.trusted h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #222;
}

.trusted p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.trusted-logos img {
  height: 90px;   /* adjust logo size */
  filter: grayscale(100%);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

/* Animation classes */
.fade-in-down {
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInDown 1s forwards;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s forwards;
}

/* Logo animation sequence */
.trusted-logos img:nth-child(1) { animation: logoFade 0.8s 0.2s forwards; }
.trusted-logos img:nth-child(2) { animation: logoFade 0.8s 0.4s forwards; }
.trusted-logos img:nth-child(3) { animation: logoFade 0.8s 0.6s forwards; }
.trusted-logos img:nth-child(4) { animation: logoFade 0.8s 0.8s forwards; }
.trusted-logos img:nth-child(5) { animation: logoFade 0.8s 1s forwards; }

/* Keyframes */
@keyframes fadeInDown {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes logoFade {
  from { opacity: 0; transform: translateY(30px) scale(0.8); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Hover effect */
.trusted-logos img:hover {
  filter: grayscale(0);
  transform: scale(1.1);
  opacity: 1;
}


/* Section */
.how-it-works-section {
  padding: 100px 20px;
  text-align: center;
  background-color: #ffffff;
  overflow: hidden;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeDown 1s ease forwards;
}

.section-description {
  font-size: 15px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

/* Wrapper */
.how-it-works-wrapper {
  background-color: #6c63ff;
  border-radius: 20px;
  padding: 60px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

/* Process Columns */
.process-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 200px;
}

/* Process Item */
.process-item {
  background: transparent;
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}

.process-item:nth-child(1) { animation-delay: 0.5s; }
.process-item:nth-child(2) { animation-delay: 0.7s; }
.process-item:nth-child(3) { animation-delay: 0.9s; }

.process-item img {
  width: 40px;
  margin-bottom: 10px;
  transform: scale(0.8);
  animation: popIn 0.6s ease forwards;
  animation-delay: inherit;
}

.process-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.process-item p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

/* Phone Box */
.phone-box {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  animation: bounceIn 1s ease 1s forwards;
}

.phone-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  z-index: -1;
  animation: pulseGlow 3s infinite ease-in-out;
}

.phone-wrapper {
  padding: 20px;
  border-radius: 30px;
}

.phone-wrapper img {
  width: 240px;
  border-radius: 30px;
  animation: floatPhone 4s ease-in-out infinite;
}

/* -------------------
   Keyframes Animations
------------------- */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes bounceIn {
  0%   { opacity: 0; transform: scale(0.8) translateY(40px); }
  60%  { opacity: 1; transform: scale(1.05) translateY(-10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50%      { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}


/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 1s forwards;
}

.fade-in-down {
  animation: fadeInDown 1s forwards;
}

.fade-in {
  animation: fadeInUp 1.2s forwards;
}


/* Fade-in-up animation */




/* Why Choose Section */
.why-choose {
  background-color: #7170E1;
  border-radius: 30px;
  padding: 60px 40px 100px;
  text-align: center;
  color: #fff;
  max-width: 1200px;
  margin: 80px auto 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  animation: fadeInUp 1s ease forwards;
}

/* Header */
.why-header .subtitle {
  color: #D9D9D9;
  letter-spacing: 1.5px;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeDown 1s ease 0.2s forwards;
}

.why-header h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}

.why-header .description {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

/* USP Boxes */
.usp-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.usp-box {
  flex: 1;
  min-width: 250px;
  padding: 10px 15px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.usp-box:nth-child(1) { animation-delay: 0.8s; }
.usp-box:nth-child(2) { animation-delay: 1s; }
.usp-box:nth-child(3) { animation-delay: 1.2s; }

.usp-box img {
  width: 50px;
  margin-bottom: 20px;
  animation: floatIcon 3s ease-in-out infinite;
}

.usp-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.usp-box p {
  font-size: 14px;
  color: #ddd;
  line-height: 1.6;
}

/* Stats Boxes */
.stats-container {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  position: relative;
  top: -100px;
  z-index: 2;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 80px;
}

.stat-box {
  background-color: #fff;
  color: #000;
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid rgba(38, 38, 223, 1);
  width: 280px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.stat-box:nth-child(1) { animation-delay: 1.4s; }
.stat-box:nth-child(2) { animation-delay: 1.6s; }
.stat-box:nth-child(3) { animation-delay: 1.8s; }

.stat-box:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat-box img {
  width: 24px;
  margin-bottom: 10px;
}

.stat-box h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 5px;
  animation: countUp 2s ease forwards;
}

.stat-box p {
  font-size: 16px;
  color: #333;
}

/* -------------------
   Keyframes
------------------- */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Count-up simulation */
@keyframes countUp {
  from { opacity: 0.2; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}


/* Responsive */
@media (max-width: 768px) {
  .usp-container,
  .stats-container {
    flex-direction: column;
    align-items: center;
  }

  .stat-box {
    width: 90%;
    margin-bottom: 20px;
  }
}



.pricing-section {
  padding: 80px 20px;
  background-color: white;
  text-align: center;
}

.pricing-header h2 {
  font-size: 36px;
  font-weight: bold;
  color: #1f1f39;
  margin-bottom: 10px;
}

.pricing-header p {
  font-size: 16px;
  color: #777;
  margin-bottom: 30px;
}

/* Billing toggle */
.billing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 50px;
}

.billing-toggle .active {
  font-weight: bold;
  color: #3914c1ff;
}

.billing-toggle .tag {
  background-color: #ffe066;
  color: #333;
  font-size: 11px;
  padding: 2px 6px;
  margin-left: 4px;
  border-radius: 4px;
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  border-radius: 22px;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px; width: 16px;
  left: 4px; bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #1a1ae2ff;
}

input:checked + .slider:before {
  transform: translateX(18px);
}

/* Pricing Cards */
.pricing-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  background: #8f8ce3;
  color: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  width: 280px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.pricing-card.delay {
  animation-delay: 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.pricing-card .sub {
  font-size: 14px;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.pricing-card .price {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.pricing-card .price span {
  font-size: 14px;
  font-weight: normal;
}

.choose-btn {
  background-color: #fff;
  color: #1f1f39;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  margin: 15px 0;
  transition: 0.3s ease;
}

.choose-btn:hover {
  background-color: #1f1f39;
  color: #fff;
}

/* Feature List */
.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-top: 10px;
  padding-left: 0;
}

.pricing-card ul li {
  font-size: 14px;
  margin-bottom: 10px;
}

/* Highlighted Card */
.pricing-card.active {
  background-color: #3e7bff;
  transform: scale(1.05);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #fff;
  color: #3e7bff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Slide Effect */
@media (max-width: 768px) {
  .pricing-cards {
    display: flex;
    flex-wrap: nowrap;           /* cards side-by-side ठेवले */
    overflow-x: auto;            /* horizontal scroll enable */
    gap: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
    justify-content: flex-start; /* center नाही, swipe करता येईल */
  }

  .pricing-card {
    flex: 0 0 80%;               /* प्रत्येक card ची width */
    scroll-snap-align: center;   /* scroll झाल्यावर card center ला बसेल */
  }

  /* Hide scrollbar for clean look */
  .pricing-cards::-webkit-scrollbar {
    display: none;
  }
}


.faqs-section{

      max-width:100%;
     padding: 20px;
      margin: auto;
      background: rgba(255, 240, 233, 0.5);
}
 .faqs {
      width: 100%;
      max-width: 900px;
      margin: auto;
      padding: 20px;
      
    }

    .faq-section-title {
      text-align: center;
      font-size: 32px;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 40px;
      margin-top: 40px;
    }

.faq-item {
      padding: 20px 0;
      border-bottom: 1px solid #e5e7eb;
    }

    .faq-question {
      font-size: 18px;
      font-weight: 600;
      color: #111827;
      margin-bottom: 10px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* Answer Styling */
    .faq-answer {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .faq-answer span {
      background-color: #fde68a;
      color: #000;
      font-weight: 600;
      font-size: 12px;
      padding: 3px 6px;
      border-radius: 4px;
      min-width: 28px;
      text-align: center;
    }

    .faq-answer p {
      color: #374151;
      font-size: 15px;
      line-height: 1.6;
      max-width: 750px;
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 26px;
      }
      .faq-question {
        font-size: 16px;
      }
      .faq-answer p {
        font-size: 14px;
      }
    }


    /* Section Background */
.app-section {
  background: linear-gradient(180deg, rgba(255, 240, 233, 0.5) 77%, #1c1b33 77%);
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Container */
 .app-container {
  background-color: #6b73f0;
  border-radius: 20px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  animation: fade-in 1s ease forwards;
}

/* Left Content */
.app-content {
  flex: 1;
}

.app-content h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 5px;
  opacity: 0;
  animation: fade-in-left 1s ease forwards;
  animation-delay: 0.2s;
}

.app-content h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
  opacity: 0;
  animation: fade-in-left 1s ease forwards;
  animation-delay: 0.4s;
}

.app-content p {
  font-size: 16px;
  color: #d9d9d9;
  margin-bottom: 30px;
  opacity: 0;
  animation: fade-in-left 1s ease forwards;
  animation-delay: 0.6s;
}

/* Buttons */
.store-buttons {
  display: flex;
  gap: 20px;
  opacity: 0;
  animation: fade-in-left 1s ease forwards;
  animation-delay: 0.8s;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: 2px solid #fff;
  border-radius: 12px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.store-btn img {
  width: 24px;
  height: 24px;
}

.store-btn:hover {
  background-color: #fff;
  color: #6b73f0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Right Image */
.app-image {
  flex: 1.2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Image वरच्या बाजूला जाईल */
  max-width: 700px;
  
  margin: -60px auto 0 auto; /* Image वरच्या बाजूला जाईल */
  transform: scale(1.2); /* Image मोठं होईल */
  z-index: 5; /* Image वर दिसेल */
}

/* Phone Image Style */
.phone {
  width: 380px; /* मोठं केलं */
  max-width: 100%;
  position: relative;
  top: -50px; /* App container वरच्या बाहेर दिसेल */
  transition: transform 0.4s ease;
}

/* Front Phone */
.phone-front {
  z-index: 10;
  transform: translateX(20px);
  animation: fade-in-up 1.2s ease forwards, floating 3s ease-in-out infinite;
}


/* Floating Animation */
.floating {
  animation: floating 3s ease-in-out infinite;
}

.floating-delayed {
  animation: floating 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* Animations */
@keyframes fade-in {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in-left {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fade-in-right {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes floating {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 992px) {
  .app-container {
    flex-direction: column-reverse; /* Image on top, content below */
    text-align: center;
    padding: 40px 20px;
    gap: 30px; /* spacing between image and content */
  }

  .app-content {
    margin-bottom: 0;
    order: 2; /* ensure content goes below image */
  }

  .app-image {
    order: 1; /* ensure image goes on top */
    position: relative;
    margin: 0 auto;
    transform: none !important;
  }

  .phone {
    position: relative;
    transform: none !important;
    margin: 0 auto;
    width: 280px; /* smaller image for mobile */
  }

  .store-buttons {
    justify-content: center;
    flex-direction: column; /* buttons stack vertically */
    gap: 15px;
  }

  .store-btn {
    width: 220px; /* make buttons same width for better UI */
    justify-content: center;
  }
}



/* ===== Newsletter Section ===== */
.newsletter-section {
  position: relative;
  background-color: #1c1b33; /* डार्क बॅकग्राउंड */
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Decorative Circle Top Left */
.decor-icon {
  position: absolute;
  top: 0px;       /* वरची जागा */
  left: 260px;      /* डावी जागा */
  width: 60px;     /* आकार */
  height: 60px;
  animation: rotate-symbol 8s linear infinite;
  z-index: 1;
}
/* Rotate Animation */
@keyframes rotate-symbol {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Container */
.newsletter-container {
  max-width: 700px;
  width: 100%;
  z-index: 2;
  position: relative;
}

/* Heading */
.newsletter-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  animation: fade-in-down 1s ease-in-out;
}

/* Subtitle */
.newsletter-subtitle {
  font-size: 16px;
  color: #a0a0b5;
  margin-bottom: 30px;
  animation: fade-in-up 1.2s ease-in-out;
}

/* Form Styling */
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Input Field */
.newsletter-input {
  padding: 14px 18px;
  font-size: 16px;
  border-radius: 12px;
  border: 2px solid #33334d;
  outline: none;
  width: 300px;
  background-color: transparent;
  color: #fff;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  border-color: #6a6cff;
  box-shadow: 0 0 8px rgba(106, 108, 255, 0.5);
}

/* Submit Button */
.newsletter-btn {
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  background-color: #6a6cff;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-btn:hover {
  background-color: #5a5ae6;
  transform: scale(1.05);
}

/* Animations */
@keyframes fade-in-down {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in-up {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
  .newsletter-input {
    width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-btn {
    width: 100%;
  }

  
}



/* Footer Section */
/* Footer Base */
.footer {
  background-color: #1c1b33;
  color: #fff;
  padding: 60px 80px;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1.2s ease forwards;
}

/* Container Grid */
.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: flex-start;
  text-align: left;
}

/* Logo */
.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  animation: fadeIn 1s ease forwards;
}

/* Contact Text */
.footer-email,
.footer-phone {
  color: #aaa;
  font-size: 14px;
  margin: 5px 0;
  transition: color 0.3s;
}

.footer-email:hover,
.footer-phone:hover {
  color: #fff;
}

/* Links */
.footer-links h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
  position: relative;
}

.footer-links ul li a {
  text-decoration: none;
  color: #888;
  transition: color 0.3s;
}

.footer-links ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #6c63ff;
  transition: width 0.3s ease;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-links ul li a:hover::after {
  width: 100%;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.footer-social img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s, filter 0.3s;
}

.footer-social img:hover {
  transform: scale(1.2) rotate(5deg);
  filter: brightness(1.2);
  animation: pulse 0.8s infinite alternate;
}

/* Try Text */
.try-text {
  color: #fff;
  margin: 10px 0;
  font-weight: 500;
  animation: fadeInUp 1s ease forwards;
}

/* App Store Buttons */
.footer-apps {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.app-btn img {
  width: 150px;
  transition: transform 0.3s;
}

.app-btn img:hover {
  transform: scale(1.05) translateY(-5px);
  animation: bounce 0.6s;
}

/* === Animations === */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

@keyframes bounce {
  0%   { transform: scale(1) translateY(0); }
  30%  { transform: scale(1.1) translateY(-8px); }
  60%  { transform: scale(0.95) translateY(4px); }
  100% { transform: scale(1) translateY(0); }
}


/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-apps {
    align-items: center;
  }
}

