* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* ================= TOP SCROLL BAR ================= */
.top-scroll-bar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 24px;
  background: linear-gradient(135deg, #ff4d6d, #ff9966);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  z-index: 1100;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.top-scroll-bar.show {
  transform: translateY(0);
}

/* ================= NAVBAR ================= */
.main-navbar {
  position: fixed;
  top: 24px;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
}

.navbar-inner {
  width: 92%;
  max-width: 1400px;
  background: #fff;
  border-radius: 999px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.navbar-left img {
  height: 42px;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 36px;
}

.navbar-menu a {
  text-decoration: none;
  font-size: 14px;
  color: #6b6b6b;

}

.navbar-menu a {
  padding: 8px 12px;
}

.navbar-menu a:hover {
  background-color: rgba(232, 9, 9, 0.1);
  border-radius: 4px;
}





/* DOWNLOAD BUTTON */
.btn-download {
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
}

/* MOBILE DOWNLOAD BUTTON (hidden on desktop) */
.navbar-menu .mobile-download {
    background: linear-gradient(135deg, #ff4d6d, #ff9966);
  color: #fff;
  padding: 10px 6px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
}

/* TOGGLE */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.navbar-toggle span {
  width: 22px;
  height: 2px;
  background: #333;
}

/* ================= HERO ================= */
.hero-wrapper {
  padding: 140px 60px 80px;
}

.hero-card {
  position: relative;
  border-radius: 28px;
  padding: 0 80px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("../images/4ec192c7fb4a1dd86b50501af44fa91b91746871.jpg") center/cover;
  opacity: 0.96;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  max-width: 520px;
  color: #fff;
}

.hero-badge {
  background: rgba(255,255,255,0.18);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  margin: 22px 0;
}

.hero-title span {
  color: #ffd36e;
}

.hero-text {
  font-size: 16px;
  line-height: 1.7;
}

.store-buttons img {
  height: 70px;
  margin-right: 15px;
  margin-top: 22px;
}

.store-buttons img:hover {
  filter: drop-shadow(0 0 25px rgba(228, 57, 111, 0.45));
}

/* PHONE */
.hero-mobiles {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-combined {
  max-width: 700px;
  transform: rotate(-6deg);
  animation: floatPhone 4s ease-in-out infinite;
}

@keyframes floatPhone {
  50% {
    transform: translateY(-18px) rotate(-4deg);
  }
}

/* MOBILE STORE */
.mobile-store {
  display: none;
  gap: 14px;
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {

  .navbar-toggle {
    display: flex;
  }
.top-scroll-bar {
font-size: 9px !important;

}
  .navbar-menu {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 90%;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    border-radius: 20px;
    opacity: 0;
    pointer-events: none;
    gap: 15px;
  }

  .navbar-menu.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* Show mobile download button in menu */
  .navbar-menu .mobile-download {
    display: block;
  }

  .navbar-menu .mobile-download .btn-download {
    width: 90%;
    text-align: center;
    padding: 15px;
  }

  .hero-wrapper {
    padding: 80px 20px;
  }

  .hero-title {
    font-size: 20px;
  }

  .hero-text {
    font-size: 10px;
  }
.hero-badge {
        font-size: 10px;

}
.hero-wrapper{ margin-top: 40px;
}
 
  .hero-inner {
        margin-top: 15px;
    flex-direction: column;
    text-align: center;
  }


  .store-buttons img {
  height: 40px;
  margin-bottom: 12px;
}


  .store-buttons {
    display: none;
  }

  .mobile-store {
    display: flex;
  }

  .phone-combined {
    max-width: 320px;
  }
}

/* ================= EXPERIENCE SECTION ================= */
.experience-section{
    padding:0px 0 80px;
    background:#fff;
}

/* PHONE */
.phone-area{
    display:flex;
    justify-content:center;
    align-items:center;
}

.exp-phone-single{
    max-width:400px;
    transform:rotate(-6deg);
    animation: floatPhone 4s ease-in-out infinite;
    filter:drop-shadow(0 30px 50px rgba(0,0,0,.25));
}

/* CONTENT */
.exp-content{
    padding-left:40px;
}

.exp-badge{
    font-size:13px;
    color:#ff4d6d;
    font-weight:600;
    letter-spacing:.4px;
}

.exp-title{
    font-size:34px;
    font-weight:700;
    margin:14px 0;
    line-height:1.3;
}

.exp-text{
    font-size:15px;
    color:#666;
    line-height:1.7;
    max-width:480px;
}

.exp-list{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.exp-list li{
    margin-bottom:16px;
}

.exp-list strong{
    display:block;
    font-size:15px;
}

.exp-list span{
    font-size:14px;
    color:#777;
}

/* BUTTON */
.exp-btn{
    display:inline-block;
    background:linear-gradient(135deg,#ff4d6d,#ff9966);
    color:#fff;
    padding:14px 28px;
    border-radius:30px;
    font-size:14px;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(255,77,109,.4);
}

/* FLOAT */
@keyframes floatPhone{
    0%{ transform:translateY(0) rotate(-6deg); }
    50%{ transform:translateY(-16px) rotate(-4deg); }
    100%{ transform:translateY(0) rotate(-6deg); }
}

/* ================= STATS ================= */
.stats-row{
    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.stat-icon{
    width:32px;
    height:32px;
    margin-bottom:12px;
}

/* Center everything vertically */
.stat-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:28px;
    border-radius:18px;
    color:#fff;
    text-align:center;
}




.stat-card span{
    font-size:13px;
    opacity:.9;
}

.stat-card h3{
    font-size:28px;
    font-weight:700;
    margin-top:6px;
}

.pink{background: linear-gradient(54.58deg, #ED2775 7.79%, #FF7448 94.18%);}
.purple{background: linear-gradient(55.34deg, #9F5FF1 5.99%, #FF54B0 91.87%);}
.blue{background: linear-gradient(55.34deg, #9F5FF1 5.99%, #FF54B0 91.87%);}
.orange{background: linear-gradient(54.58deg, #FF4B3F 7.79%, #FFAC30 94.18%);}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
    .exp-content{
        margin-top:20px;
    }
    .exp-phone-single{
      max-width:300px;

    }
    .stats-row{
        grid-template-columns:repeat(2,1fr);
    }
    .exp-text {
    font-size: 10px;
    }
}

@media(max-width:576px){
    .exp-title{
        font-size:20px;
    }

    .exp-text {
    font-size: 10px;
    }
    
}

/* SECTION */
.astro-features-section {
  position: relative;
  padding: 50px 0;
  color: #fff;
  overflow: hidden;
}

/* Blurred background layer */
.astro-features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/21ff78e47b8a4b166105e78163067802a4dd1fbf\ \(1\).jpg") center / cover no-repeat;
  filter: blur(3px);
  transform: scale(1.1); /* prevents blur edges */
  z-index: -1;
}

/* Optional dark overlay for readability */
.astro-features-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}


/* BADGE */
.feature-badge {
  border: 1px solid #ff4d00;
  color: #ff4d00;
  letter-spacing: 2px;
  font-size: 12px;
  padding: 6px 14px;
}

/* TEXT */
.feature-title {
  font-size: 40px;
  font-weight: 700;
}

.feature-subtitle {
  color: #b0b3c7;
  max-width: 520px;
}

/* FEATURE CARD */
.feature-card {
  background: rgba(255,255,255,0.05);
  border-radius: 25px;
  padding: 22px;
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
}

/* GLOW EFFECT */
.glow::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 25px;
  box-shadow: 0 0 25px rgba(255, 152, 0, 0.25);
  opacity: 0;
  transition: 0.3s;
}

.glow:hover::after {
  opacity: 1;
}

.feature-card i {
  font-size: 26px;
  color: #ff9800;
  margin-bottom: 10px;
}

/* CTA */
.cta-btn {
  background: linear-gradient(90deg, #ff2f00, #ff9800);
  border-radius: 50px;
  padding: 14px 38px;
  color: #fff;
  border: none;
}

/* MOCKUP */
.mockup-box {
  max-width: 520px;
  margin: auto;
  padding: 6px;
  border-radius: 30px;
}

.mockup-img {
  width: 100%;
  border-radius: 22px;
}

.tilt {
  animation: tiltMove 6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes tiltMove {
  0%   { transform: rotateX(0deg) rotateY(0deg); }
  25%  { transform: rotateX(2deg) rotateY(-2deg); }
  50%  { transform: rotateX(0deg) rotateY(0deg); }
  75%  { transform: rotateX(-2deg) rotateY(2deg); }
  100% { transform: rotateX(0deg) rotateY(0deg); }
}


/* RESPONSIVE */
@media (max-width: 991px) {
  .feature-title {
    font-size: 32px;
  }
  .mockup-box {
    max-width: 320px;
  }
}




/* MOBILE ONLY FIXES */
@media (max-width: 767px) {

  /* Force 2 cards per row */
  .astro-features-section .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Smaller card padding for mobile */
  .feature-card {
    padding: 16px;
    border-radius: 18px;
  }

  .feature-card h6 {
    font-size: 14px;
  }

  .feature-card p {
    font-size: 12px;
  }

  /* Hide CTA button on mobile */
  .astro-features-section .cta-btn {
    display: none !important;
  }

  /* Center text slightly better */
  .feature-title {
    font-size: 26px;
  }

  .feature-subtitle {
    font-size: 14px;
  }
}


/* SECTION */
.astro-services-section {
  padding: 90px 0;
  color: #fff;
}

/* HEADER */
.services-badge {
  color: #ff4d00;
  letter-spacing: 2px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 12px;
}

.services-title {
  font-size: 38px;
  color:#000;
  font-weight: 700;
}

.services-subtitle {
  max-width: 700px;
  margin: 15px auto 0;
  color: #b5b5c7;
  font-size: 15px;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  color: #000;
  height: 100%;
  transition: all 0.35s ease;
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-content h5 {
  font-size: 17px;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 14px;
  color: #6c6c80;
  margin-bottom: 0;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 77, 0, 0.25);
}

/* CTA */
.services-cta {
  background: linear-gradient(90deg, #ff2f00, #ff9800);
  color: #fff;
  padding: 14px 42px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .services-title {
    font-size: 32px;
  }

  .services-cta {

  padding: 11px 22px;

  }
}



@media (max-width: 575px) {
  .services-title {
    font-size: 22px;
  }
}


/* SECTION */
.app-screens-section {
  padding: 2px;
  background: #fff;
  color: #0b0f1a;
  overflow: hidden;
}

/* HEADER */
.screens-badge {
  color: #ff4d00;
  font-size: 12px;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.screens-title {
  font-size: 38px;
  font-weight: 700;
}

/* MOCKUP WRAPPER */
.screens-mockup-wrapper {
  position: relative;
}

/* IMAGE */
.screens-mockup {
  width: 100%;
  display: block;
  border-radius: 22px;
  
}

/* OPTIONAL HOVER */
.screens-mockup:hover {
  transform: rotate(-6deg) scale(1.02);
}

/* SOFT TILT ANIMATION */


/* RESPONSIVE */
@media (max-width: 991px) {
  .screens-title {
    font-size: 30px;
  }

  .screens-mockup {
    transform: rotate(-4deg);
  }
}

@media (max-width: 575px) {
  .screens-title {
    font-size: 24px;
  }

  .screens-mockup {
    transform: rotate(0deg);
    border-radius: 16px;
  }
}

.store-section {
  background: rgba(247, 247, 255, 1);
  padding: 100px 0;
}

/* HEADER */
.store-badge {
  font-size: 12px;
  color: #ff4d00;
  letter-spacing: 2px;
}

/* CARD */
.store-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .3s ease;
  height: 100%;
}

.store-card:hover {
  transform: translateY(-6px);
}

.card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ffe600;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.card-image {
  height: 160px;
  background: linear-gradient(135deg, #f6e6ff, #fde7f3);
}

.card-content {
  padding: 20px;
}

.card-content p {
  font-size: 14px;
  color: #6c757d;
}

.price {
  color: #ff2d2d;
  font-weight: 700;
  font-size: 18px;
}

.buy-btn {
  background: linear-gradient(90deg, #ff2d2d, #ff8a00);
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  padding: 8px 16px;
}

/* CTA */
.store-cta {
  text-align: center;
  margin-top: 60px;
}

.store-cta a {
  display: inline-block;
  padding: 14px 34px;
  border: 2px solid #ff2d2d;
  color: #ff2d2d;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* MOBILE SCROLL ONLY */
@media (max-width: 767px) {
  .store-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 15px;
  }

  .store-scroll::-webkit-scrollbar {
    display: none;
  }

  .store-scroll > div {
    flex: 0 0 85%;
    max-width: 85%;
  }
}



.testimonial-section {
  background: #fff;
  color: #000;
  padding: 100px 0;
}

.testimonial-img img {
  width: 100%;
  max-width: 380px;
  border-radius: 30px;
}

/* TEXT */
.testimonial-badge {
  color: #ff2d55;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
}

.testimonial-title {
  font-size: 36px;
  font-weight: 700;
  margin: 14px 0;
}

.testimonial-line {
  width: 80%;
  border-color: rgba(255,255,255,.3);
  margin: 20px 0;
}

.user-name {
  font-size: 20px;
  font-weight: 600;
}

.user-role {
  color: #ff2d55;
  font-size: 14px;
}

/* QUOTE */
.testimonial-text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(113, 108, 128, 1);
  position: relative;
}

.quote {
  font-size: 60px;
  color: rgba(255,255,255,.15);
  position: absolute;
}

.quote.left {
  left: -20px;
  top: -20px;
}

.quote.right {
  right: -20px;
  bottom: -20px;
}

/* NAV */
.testimonial-nav {
  display: flex;
  gap: 15px;
}

.nav-btn {
  background: rgb(218, 176, 176);
  width: 35px;
  height: 35px;
  border-radius: 20%;
  border: none;
  background: #cbeef1;
  color: #ff2d55;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.nav-btn:hover {
  background: #ff2d55;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-title {
    font-size: 22px;
  }
  .testimonial-section .col-lg-7{
     padding: 25px;
  }

  .testimonial-img img {
    max-width: 300px;
  }

  .testimonial-text {
    font-size: 14px;
  }
}



.invest-section {
  position: relative; /* ✅ correct */
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFEBE4 100%);
  background-image: url("../images/3d39add000a91eae83c72fdf82cd10edd71a1d1f.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* TITLE */
.invest-title {
  font-size: 42px;
  font-weight: 700;
}

.invest-subtitle {
  max-width: 650px;
  margin: 10px auto 0;
  color: #6c757d;
}

/* CARD */
.invest-card {
background: linear-gradient(180deg, #FFFFFF 0%, #FFEBE4 100%);
  border-radius: 26px;
  padding: 45px;
  max-width: 900px;
}

/* FORM */
.form-label {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-control,
.form-select {
  background: #f3f4f6;
  border: none;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  background: #eef1f6;
}

/* BUTTON */
.invest-btn {
  background: linear-gradient(90deg, #ff2d55, #ff7a18);
  color: #fff;
  border-radius: 40px;
  padding: 14px 60px;
  font-weight: 600;
  border: none;
  transition: .3s;
}

.invest-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,45,85,.35);
}

/* NOTE */
.form-note {
  font-size: 13px;
  color: #6c757d;
  text-align: center;
}

.form-note a {
  color: #ff2d55;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .invest-title {
    font-size: 30px;
  }

  .invest-card {
    padding: 30px 22px;
  }
}



.pricing-section {
  padding: 100px 10px;
  background: #ffffff;
}

/* HEADER */
.pricing-badge {
  font-size: 12px;
  color: #ff2d6f;
  letter-spacing: 2px;
  font-weight: 600;
}

.pricing-title {
  font-size: 36px;
  font-weight: 800;
  margin-top: 10px;
}

/* SCROLL */
.pricing-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 30px;
}

.pricing-scroll::-webkit-scrollbar {
  display: none;
}

/* CARD */
.pricing-card {
  min-width: 260px;
  background: #fff;
  border-radius: 18px;
  padding: 40px 35px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  scroll-snap-align: start;
  position: relative;
  transition: transform .4s ease, box-shadow .4s ease;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0,0,0,.15);
}

/* POPULAR */
.pricing-card.popular {
  border: 2px solid #ff2d6f;
}

.popular-badge {
  position: absolute;
  top: 2px;
  right: 20px;
  background: #ff2d6f;
  color: #fff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
}

/* PRICE */
.price {
  font-size: 44px;
  font-weight: 800;
  margin: 20px 0;
}

.price span {
  font-size: 16px;
  color: #777;
}

/* BUTTON */
.pricing-btn {
  background: linear-gradient(90deg, #ff2d6f, #ff7a18);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* FEATURES */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 12px;
  font-size: 15px;
}

.feature-list i {
  color: #2ecc71;
  margin-right: 8px;
}

.feature-list .disabled i {
  color: #ff2d2d;
}

/* ANIMATION */
.animate {
  animation: fadeUp .9s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .pricing-title {
    font-size: 15px;
  }

  

  .pricing-card {
    min-width: 85%;
    padding: 30px 25px;
  }
}



.download-wrapper {
  padding: 90px 0;
  background: #ffffff;
}

.download-card {
  background: #f6f7fc;
  border-radius: 40px;
  padding: 80px 70px;
  overflow: hidden;
}

/* TEXT */
.download-badge {
  font-size: 12px;
  letter-spacing: 2px;
  color: #ff2d6f;
  font-weight: 700;
}

.download-title {
  font-size: 42px;
  font-weight: 800;
  margin: 15px 0;
}

.download-desc {
  font-size: 15px;
  color: #6c757d;
  max-width: 480px;
}

/* BUTTONS */
.download-buttons {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.download-buttons img {
  height: 75px;
  transition: transform .3s ease;
}

.download-buttons img:hover {
  filter: drop-shadow(0 0 25px rgba(255,45,111,.45));
}


/* SINGLE PHONE */
.single-phone-wrap {
  perspective: 1200px;
}

.single-phone {
  max-width: 280px;
  
  animation: phoneReveal 1.8s ease forwards;
}

/* REVEAL + DEPTH ANIMATION */
@keyframes phoneReveal {
  0% {
    opacity: 0;
    transform: translateY(60px) rotateX(25deg) scale(.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .download-card {
    padding: 60px 30px;
    text-align: center;
  }

  .download-title {
    font-size: 15px;
  }

  .download-desc {
    font-size: 12px;
  }

  .download-buttons {
    justify-content: center;
  }

  .single-phone {
    max-width: 220px;
    margin-top: 30px;
  }
  .download-buttons img {
    height: 60px;
  }
}

@media(max-width: 768){
  .download-title {
    font-size: 15px;
  }
}


.footer-section {
  background-color: #000;
  color: #ccc;
  padding: 80px 0 40px;
  font-family: 'Poppins', sans-serif;
}

/* LOGO */
.footer-logo {
  max-height: 60px;
}

/* TITLE */
.footer-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ABOUT TEXT */
.footer-text {
  font-size: 15px;
  line-height: 1.7;
  max-width: 450px;
}

/* SOCIAL ICONS */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #ff2d6f, #ff7a45);
  transform: translateY(-4px);
}

/* DOWNLOAD BUTTONS */
.footer-download img {
  height: 62px;
  margin: 8px;
  padding: 8px 14px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.3);
  transition: all 0.35s ease;
}

.footer-download img:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 18px 40px rgba(255,45,111,.45);
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #444, transparent);
}

/* COPYRIGHT */
.footer-bottom {
  font-size: 14px;
  color: #999;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .footer-text {
    margin-bottom: 20px;
    font-size: 11px;
  }

  .footer-download img {
    height: 56px;
  }
}
