body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  overflow-x: hidden;
  background-color: rgba(60, 60, 60, 1);
  margin: 0;
}

a{
    text-decoration: none;
}

/* Hero background */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  
  position: relative;
  overflow: hidden;
  background: url("images/289_02_blue_purple_dotted_waves 1.png") no-repeat center center/cover;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.hero > * { position: relative; z-index: 2; }

.hero .container {
  padding-top: 14rem;
  padding-bottom: 6rem;
}

/* Navbar */


.navbar {
  padding: 1rem 1rem;
  position: fixed;   /* ✅ always fixed on top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;     /* ✅ keeps navbar above all */
  background: rgba(0,0,0,0.55); /* ✅ keeps it visible over hero */
  backdrop-filter: blur(10px);  /* ✅ optional glass effect */
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  
}
.navbar-toggler {
  border: none;
   /* make icon white */
}
.navbar-toggler-icon {
  background-image: url("images/Nav.png");
}

/* Download button (desktop only) */
.btn-download {
  background: transparent;
  border: 1px solid #777;
  padding: 8px 20px;
  border-radius: 25px;
  color: #fff;
  transition: 0.3s;
  margin-left: 310px;
}
.btn-download:hover {
  background: #6d28d9;
  border-color: #6d28d9;
}

/* Navbar links */
.navbar-nav .nav-link {
  color: #fff;
  margin: 0 12px;
  transition: 0.3s;
}
.navbar-nav .nav-link:hover { color: #fff; }

/* Mobile menu style */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgb(175 73 193);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 10px;
    animation: fadeInDown 0.4s ease;
  }
  .navbar-nav .nav-link {
    font-size: 1.2rem;
    padding: 8px 0;
    display: block;
    text-align: center;
  }
  .btn-download { display: none !important; }
  
    .hero .container {
    padding-top: 6rem;
    padding-bottom: 3rem;
    }
     .stats { display: none !important; }
}

/* Hero content */
.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.hero p { color: #d1d5db; max-width: 500px; }

/* Buttons */
.btn-explore {
  background: #1f2937;
  border: 1px solid #4b5563;
  color: #fff;
  border-radius: 25px;
  padding: 10px 30px;
  margin-right: 15px;
  transition: 0.3s;
}
.btn-explore:hover {
  background: #6d28d9;
  border-color: #6d28d9;
}
.btn-demo {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

/* Stats */
.stats {
  background: rgba(31, 41, 55, 0.8);
  padding: 20px 30px;
  border-radius: 20px;
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
  flex-wrap: wrap;
}
.stats div { text-align: center; margin: 10px; }
.stats h3 { font-weight: 700; }

/* Phone box */
.hero-phone-box {
  background: rgba(31, 41, 55, 0.7);
  border-radius: 30px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 350px;
  box-shadow: 0px 0px 50px rgba(109, 40, 217, 0.4);
}
.phone-mockup {
  max-width: 100%;
  width: 80%;
  height: auto;
  border-radius: 40px;
  margin-bottom: 120px;
}

/* Animations */
@keyframes fadeInDown { from {opacity:0; transform:translateY(-30px);} to {opacity:1; transform:translateY(0);} }
@keyframes fadeInUp { from {opacity:0; transform:translateY(30px);} to {opacity:1; transform:translateY(0);} }
@keyframes fadeInLeft { from {opacity:0; transform:translateX(-50px);} to {opacity:1; transform:translateX(0);} }
@keyframes fadeInRight { from {opacity:0; transform:translateX(50px);} to {opacity:1; transform:translateX(0);} }

.animate-logo { animation: fadeInLeft 1s ease forwards; }
.animate-links { animation: fadeInDown 1s ease 0.5s forwards; opacity:0; }
.animate-btn { animation: fadeInRight 1s ease 1s forwards; opacity:0; }
.animate-left { animation: fadeInLeft 1s ease 1.2s forwards; opacity:0; }
.animate-right { animation: fadeInRight 1s ease 1.2s forwards; opacity:0; }

/* Responsive */
@media (max-width: 786px) {
  .stats { display: none !important; }
  .navbar { padding: 1rem 1rem; }
  
  .hero-phone-box { margin-top: 100px; width: 280px; height: 280px; }
  .hero h1 { font-size: 2.5rem; }
    .hero .container {
    padding-top: 6rem;
    padding-bottom: 3rem;
    }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .phone-mockup { width: 70%; }

   .hero .container {
  padding-top: 6rem;
  padding-bottom: 3rem;
}
  
}




/* --------------------
   Middle Section Wrapper
-------------------- */
.middle-wrapper {
  background: url("images/middlebackgroun.png") ;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.middle-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  
  z-index: -1;
}

.middle-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.middle-wrapper p {
  color: #d1d5db;
  font-size: 15px;
}


/* Glass Card */
.glass-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  color: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.glass-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 30px rgba(109,40,217,0.6);
}

/* Icons for USPs */
.glass-card .icon {
  font-size: 2rem;
  margin-bottom: 15px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(217, 217, 217, 0.2); /* semi-transparent circle */
  margin-left: auto;
  margin-right: auto;
  color: #fff; /* keep icon white */
}


/* Features Section */
.features-section {
  padding: 80px 20px;
  text-align: center;
  background: transparent;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 50px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Glassmorphism Feature Cards */
.feature-card {
  padding: 25px;
  border-radius: 20px;
  background: rgba(217, 217, 217, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

/* Uniform Feature Image */
.feature-img {
  width: 100%;
  max-width: 280px;
  height: 280px;
  object-fit: contain;
  border-radius: 15px;
  margin: 0 auto 20px auto;
  display: block;

  /* Continuous floating animation */
  animation: floaty 3s ease-in-out infinite;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover zoom effect */
.feature-card:hover .feature-img {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Floaty animation keyframes */
@keyframes floaty {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Feature Text */
.feature-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}



/* Animations */
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeInLeft { from{opacity:0;transform:translateX(-40px);} to{opacity:1;transform:translateX(0);} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(40px);} to{opacity:1;transform:translateX(0);} }
@keyframes zoomIn { from{opacity:0;transform:scale(0.9);} to{opacity:1;transform:scale(1);} }

.animate-left { animation: fadeInLeft 1s ease forwards; opacity:0; }
.animate-right { animation: fadeInRight 1s ease forwards; opacity:0; }
.animate-up { animation: fadeInUp 1s ease forwards; opacity:0; }
.animate-zoom { animation: zoomIn 1s ease forwards; opacity:0; }

/* Responsive */
@media (max-width: 991px) {
  .middle-wrapper { padding: 70px 20px; }
  .middle-wrapper h2 { font-size: 2rem; }
}
@media (max-width: 768px) {
  .glass-card { padding: 20px; }
}
@media (max-width: 576px) {
  .middle-wrapper h2 { font-size: 1.8rem; }
  .feature-card img { height: auto; }
}

/* --------------------
   Animations
-------------------- */
@keyframes fadeInUp { 
  from { opacity: 0; transform: translateY(30px);} 
  to { opacity: 1; transform: translateY(0);} 
}
@keyframes fadeInDown { 
  from { opacity: 0; transform: translateY(-30px);} 
  to { opacity: 1; transform: translateY(0);} 
}
@keyframes fadeInLeft { 
  from { opacity: 0; transform: translateX(-50px);} 
  to { opacity: 1; transform: translateX(0);} 
}
@keyframes fadeInRight { 
  from { opacity: 0; transform: translateX(50px);} 
  to { opacity: 1; transform: translateX(0);} 
}
@keyframes zoomIn { 
  from { opacity: 0; transform: scale(0.9);} 
  to { opacity: 1; transform: scale(1);} 
}

.animate-left { animation: fadeInLeft 1s ease forwards; opacity: 0; }
.animate-right { animation: fadeInRight 1s ease forwards; opacity: 0; }
.animate-up { animation: fadeInUp 1s ease forwards; opacity: 0; }
.animate-down { animation: fadeInDown 1s ease forwards; opacity: 0; }
.animate-zoom { animation: zoomIn 1s ease forwards; opacity: 0; }

/* --------------------
   Responsive Design
-------------------- */
@media (max-width: 991px) {
  .middle-wrapper { padding: 70px 20px; }
  .middle-wrapper h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
  .middle-wrapper { padding: 70px 20px; }
  .middle-wrapper h2 { font-size: 2rem; }
}

@media (max-width: 576px) {
  .middle-wrapper h2 { font-size: 1.8rem; }
  .middle-wrapper p { font-size: 1rem; }
  
}

/* About Section */
    .about-section {
      padding: 130px 20px;
      background: transparent;
      position: relative;
      z-index: 2;
      overflow: hidden;
    }

    .about-card {
      padding: 40px 40px;
      border-radius: 25px;
      width: 60%;
      max-width: 100%;
      margin: auto;
      background: rgba(217, 217, 217, 0.05); /* glass effect */
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      animation: fadeInUp 1s ease forwards;
      opacity: 0;
    }

    /* Fade in on load */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .about-text h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
      animation: fadeInLeft 1s ease forwards;
      opacity: 0;
    }

    .about-text p {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
      max-width: 400px;
      animation: fadeInLeft 1.5s ease forwards;
      opacity: 0;
    }

    @keyframes fadeInLeft {
      from { opacity: 0; transform: translateX(-50px); }
      to { opacity: 1; transform: translateX(0); }
    }

    /* Phones Section */
    .about-phones {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .about-phones .phone {
      position: relative;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      opacity: 0;
      animation: fadeInRight 1s ease forwards;
    }

    .about-phones .phone img {
      width: 920px;
      max-width: 100%;
      border-radius: 25px;
      margin-top: -150px;
    }

    /* Phone animations */
    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(50px); }
      to { opacity: 1; transform: translateX(0); }
    }

    /* Floating effect for center phone */
    @keyframes floaty {
      0% { transform: scale(1.1) translateY(0); }
      50% { transform: scale(1.1) translateY(-12px); }
      100% { transform: scale(1.1) translateY(0); }
    }

    /* Hover effect */
    .about-phones .phone:hover {
      transform: scale(1.15) rotate(0deg) !important;
      z-index: 3;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .about-card {
        padding: 40px 20px;
        width: 100%;
      }

      .about-section {
        padding: 60px 20px;
      }

      .about-phones {
        margin-top: 40px;
        flex-direction: row;
        justify-content: center;
        position: relative;
      }

      .about-phones .phone img {
        width: 300px;
        margin-top: -160px;
      }

      .about-text {
        text-align: center;
        margin-top: 20px;
      }

      .about-text p {
        margin: auto;
      }
    }

    @media (max-width: 576px) {
      .about-text h2 {
        font-size: 2rem;
      }

      .about-text p {
        font-size: 1rem;
      }

      .about-phones {
        flex-direction: column;
      }

      .about-phones .phone {
        margin: 15px 0;
      }

      .about-phones .phone img {
        width: 240px;
        margin-top: -160px;
      }
    }
   
    .pricing-section {
      text-align: center;
      padding: 100px 20px;
      position: relative;
      z-index: 2;
    }

    .pricing-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .pricing-section p {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 40px;
    }

    /* Pricing Container */
    .pricing-container {
      display: flex;
      justify-content: center;
      gap: 30px;
      overflow-x: auto;
      overflow-y: hidden;
      white-space: nowrap; /* ✅ prevents wrapping */
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch; /* ✅ smooth scroll on iOS */
      padding-bottom: 20px;
    }

    /* Hide scrollbar */
    .pricing-container::-webkit-scrollbar {
      display: none;
    }

    .pricing-card {
      flex: 0 0 300px;
      display: inline-block; /* ✅ works with nowrap */
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      padding: 40px 20px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      scroll-snap-align: center;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      opacity: 0;
      animation: fadeInUp 3s forwards;
    }

    .pricing-card:hover {
      transform: translateY(-15px) scale(1.05);
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    }

    .pricing-card h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: #fff;
    }

    .pricing-card .price {
      font-size: 2rem;
      font-weight: 700;
      margin: 20px 0;
      color: #00d4ff;
    }

    .pricing-card button {
      background: #00d4ff;
      color: #000;
      padding: 12px 20px;
      border: none;
      border-radius: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
      margin-bottom: 20px;
    }

    .pricing-card button:hover {
      background: #00aacc;
    }

    .pricing-card ul {
      list-style: none;
      padding: 0;
      text-align: left;
      margin-top: 20px;
    }

    .pricing-card ul li {
      margin: 10px 0;
      display: flex;
      align-items: center;
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.8);
    }

    .pricing-card ul li::before {
      content: "✔";
      color: #00d4ff;
      font-weight: bold;
      margin-right: 8px;
    }

    /* Fade-in animation */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 992px) {
      .pricing-container {
        justify-content: flex-start;
        gap: 20px;
      }

      .pricing-card {
        flex: 0 0 80%;
        max-width: 100%;
      }
    }

    @media (max-width: 576px) {
      .pricing-card {
        flex: 0 0 90%;
        max-width: 100%;
      }
    }

    .reviews-section {
      padding: 100px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .reviews-section h2 {
      font-weight: 700;
      margin-bottom: 10px;
      animation: fadeInDown 1s ease-in-out;
    }

    .reviews-section p.subtitle {
      color: #aaa;
      margin-bottom: 50px;
      font-size: 1.1rem;
      animation: fadeIn 1.2s ease-in-out;
    }

    /* Review Card */
    .review-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 20px;
      padding: 70px 50px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      max-width: 750px;
      max-height: 450px ;
      margin: 0 auto;
      position: relative;
      text-align: left;
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease-in-out;
    }

    .carousel-item.active .review-card {
      opacity: 1;
      transform: translateY(0);
    }

    .review-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      animation: fadeInLeft 1s ease-in-out;
    }

    .review-header img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #00d4ff;
      margin-right: 20px;
      animation: zoomIn 1.2s ease-in-out;
    }

    .review-info h5 {
      margin: 0;
      font-weight: 600;
      font-size: 1.2rem;
    }

    .review-info span {
      font-size: 0.9rem;
      color: #aaa;
    }

    .stars {
      color: #ffc107;
      margin-top: 5px;
      font-size: 1.1rem;
      animation: scaleIn 1s ease-in-out;
    }

    .review-text {
      font-size: 1rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.9);
      position: relative;
      padding-left: 10px;
      animation: fadeInUp 1.3s ease-in-out;
    }

    .review-text::before {
      content: "“";
      font-size: 3rem;
      color: #00d4ff;
      position: absolute;
      left: -10px;
      top: -20px;
      opacity: 0.7;
    }

    /* Controls */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-size: 40px;
      filter: invert(1);
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 5%;
    }

    /* Animations */
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInLeft {
      from { opacity: 0; transform: translateX(-30px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes zoomIn {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    @keyframes scaleIn {
      from { transform: scale(0); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
      .review-card {
        padding: 30px 20px;
      }
      .review-header {
        flex-direction: column;
        text-align: center;
      }
      .review-header img {
        margin-bottom: 15px;
      }
    }



    /* Download Section */
#download {
  padding: 100px 20px;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto; /* ✅ centers the block */
  text-align: center; /* ✅ centers inline content (text, buttons, images) */
}


#download h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

#download p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

/* Glass Box */
.glass-box {
  background: rgba(217, 217, 217, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: visible; /* ✅ allow phone image to go above */
}

/* Phones Image */
.phone-wrapper {
  position: relative;
  margin-top: -150px; /* ✅ overlap upwards */
  z-index: 2; /* make sure phone stays above glass */
}

.phones-img {
  max-width: 100%;
  width: 420px;
  animation: floatPhone 4s ease-in-out infinite;
}


/* Make store buttons fill full width in mobile */
.store-btn {
  display: inline-block;
}

.store-btn img {
  height: 60px;
  width: 100%; /* full width in mobile */
  max-width: 200px; /* prevent stretching */
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
  .store-btn {
    width: 100%; /* buttons stacked */
  }
  .store-btn img {
    height: 50px;
    width: 100%;
  }
}




.store-btn img:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}



/* Floating Animation */
@keyframes floatPhone {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 991px) {
  .phone-wrapper {
    margin-top: -180px;
  }
  .phones-img {
    width: 300px;
    margin-bottom: 20px;

  }


}

@media (max-width: 768px) {
  .phone-wrapper {
    margin-top: -150px;
    margin-bottom: 20px;
  }
  .phones-img {
    width: 260px;
  }
  #download h2 {
    font-size: 1rem;
  }
  .store-btn img {
    height: 50px;
  }
}


/* Footer */
#footer {
 /* dark background */
background: url("images/289_02_blue_purple_dotted_waves 1.png") no-repeat center center/cover;
  padding: 60px 20px 20px;
}

#footer h4, #footer h5 {
  font-weight: 600;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
  position: relative;
  transition: color 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Animated underline effect */
.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #6d28d9, #a855f7, #ec4899);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.footer-link:hover {
  color: #fff;
}

.footer-link:hover::after {
  width: 100%;
}


/* Social Icons */
.social-icon {
  font-size: 1.2rem;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-icon:hover {
  color: #0dcaf0;
  transform: translateY(-4px);
}

/* Store Buttons */
.store-btn-footer img {
  height: 60px;
  width: auto;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.store-btn-footer img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  #footer {
    text-align: center;
  }
  .store-btn-footer img {
    height: 50px;
  }
}

