/* CSS */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #180b20;
  color: #333;
  overflow-x: hidden;
}

   /* Header */
        header {
            position: relative;
            top: 0;
            height: 100px ;
            z-index: 50;
            /* background-color: #c796ff07 !important; */
            background: #010e2e;
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border);
            padding-right: 32px;
            padding-left: 32px;
        }

        .header-inner {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            /* gap: 12px; */
            padding: 2px 0;
            /* background: #ff1bf4; */
        }

        .logo {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* gap: 10px; */
            font-weight: 600;
            letter-spacing: .2px;
            height: 100px;
            left: 32px;
            margin: 5px;
            /* margin-bottom: 4px; */
            /* width: 120px; */
            /* padding: 0px; */
        }
        .logo img{
            /* margin-bottom: 0px;
            padding-bottom: 0px; */
            height: 80px;
            width: 160px;
        }

        .logo-mark {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--accent), var(--brand));
            box-shadow: var(--shadow);
            position: relative;
        }

        .logo-mark::after {
            content: "";
            position: absolute;
            inset: 6px;
            border-radius: 8px;
            background: #fff3;
        }

        .search {
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 8px 12px;
            background: #fff;
        }

        .search input {
            border: none;
            outline: none;
            width: 100%;
            font-size: 14px;
        }

        .actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 14px;
            border-radius: 999px;
            border: 1px solid var(--border);
            background: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: transform .06s ease, box-shadow .2s ease;
        }

        .btn:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow);
        }

        .btn.primary {
            background: var(--brand);
            border-color: var(--brand);
            color: #fff;
        }

        .btn.primary:hover {
            background: var(--brand-600);
        }

        .icon {
            width: 20px;
            height: 20px;
        }

        .cart {
            position: relative;
        }

        .badge {
            position: absolute;
            top: -6px;
            right: -6px;
            background: var(--warning);
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            line-height: 1;
            padding: 4px 6px;
            border-radius: 999px;
        }

        /* Navbar */
        nav {
            position: relative;
            background: transparent;
            color: #fff;
            /* padding: 0.8rem 1.5rem; */
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-right: 12px;
            /* position: relative; */
        }
        .btns{
            margin-right: 32px;
        }

        
    .btns{
    display: inline-block;
    padding: 10px 20px;
    /* background: linear-gradient(135deg, #ff6a00, #ee0979); */
    background: #ec1b96;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  .btns a{
    text-decoration: none;
    color: #fff;
  }

  .btns:hover {
    background: linear-gradient(135deg, #ee0979, #371468);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  }

  .btns:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  }

        /* .logo {
            font-size: 1.5rem;
            font-weight: bold;
        } */

        .nav-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
        }

        .nav-links li a {
            color: #FFF;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links li a:hover {
            color: #ec1b96;
            text-shadow: #000;
        }

        /* Dropdown */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            /* margin: 5px; */
            background: #fff;
            min-width: 160px;
            flex-direction: column;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
            color: #fff !important;
        }

        .dropdown-content a {
            padding: 10px;
            background-color: #371468;
            text-decoration: none;
            display: block;
            color: #fff !important;
        }

        .dropdown-content a:hover {
            background: #371468 !important;
            color: #fff;
            margin: 4px;
            border-radius: 12px;
        }

        .dropdown:hover .dropdown-content {
            display: flex;
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #000;
            border-radius: 2px;
            transition: 0.3s;
        }

.hero-section {
  width: 100%;
  height: 100vh;
  background: url(images/panoramic-view-dubai-city-illuminated-neon-spectrum.jpg);
  background-size: cover;
  background-attachment: fixed; /* optional for parallax */
  background-position: center;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0 8%;
  color: #fff;
}

.hero-left {
  flex: 1 1 50%;
 /*  text-align: center;
 align-items: center; */
 padding-top: 15%;
  align-content: center;
  justify-content: center;
}

.hero-left h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #dcdcdc;
}

.hero-buttons a img {
  width: 150px;
  margin-right: 15px;
  transition: 0.3s;
}

.hero-buttons a img:hover {
  transform: scale(1.05);
}

.hero-right {
  flex: 1 1 45%;
  text-align: center;
}

.hero-right img {
  width: 100%;
  max-width: 400px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-left h1 {
    font-size: 36px;
  }
  .hero-left p {
    font-size: 16px;
  }
  .hero-right img {
    max-width: 300px;
    margin-bottom: 30px;
  }
}



/* /////////// overview section here   */

.overview-section {
  padding: 80px 8%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: 
    radial-gradient(circle, oklch(0.15 0.2 330 / 0), oklch(0.15 0.2 330 / 1)),
    linear-gradient(344deg in oklch, oklch(0.3 0.37 310), oklch(0.35 0.37 330), oklch(0.3 0.37 310));
}

.overview-left {
  flex: 1 1 45%;
  text-align: center;
}

.overview-left img {
  width: 100%;
  max-width: 400px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.overview-right {
  flex: 1 1 50%;
}

.overview-badge {
  color: #fff;
  padding: 6px 18px;
  border-bottom: 2px solid #fa009a;
  border-radius: 30px;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 18px;
}

.overview-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.overview-title span {
  color: #fa009a;
}

.overview-text {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 30px;
}

.overview-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* .overview-icon {
  flex: 1 1 100px;
  text-align: center;
} */

.overview-icon {
  flex: 1 1 120px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.overview-icon:hover{
  background-color: #ec1b96;
  color: #fff;
}



.overview-icon img {
  width: 55px;
  height: 55px;
  margin-bottom: 10px;
}

.overview-icon p {
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
  font-weight: 600;
}
/* .overview-icon p:hover{
  color: #ec1b96;
} */

/* RESPONSIVE */
@media (max-width: 900px) {
  .overview-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }

  .overview-left, .overview-right {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }

  .overview-icons {
    justify-content: center;
    gap: 15px;
  }
}



/* Tabs Section */
.tabs-section {
  padding: 80px 20px;
  background-color: #010e2e;
  font-family: Arial, sans-serif;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tabs-nav button {
  background-color: #fff;
  /* border: 2px solid #fff; */
  border-style: none;
  color: #111;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tabs-nav button.active,
.tabs-nav button:hover {
  background-color: #ec1b96;
  color: #fff;
}

.tabs-content {
  display: flex;
  flex-direction: column; /* mobile-first */
  align-items: center;
  gap: 30px;
}

.tab-item {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transition: all 0.4s ease;
}

.tab-item.active {
  display: flex;
  opacity: 1;
}

.tab-item img {
  width: 100% !important;
  max-width: 300px;
  border-radius: 12px;
  height: 300px;
  
}

.tab-item .tab-text {
  text-align: center;
}

.tab-item .tab-text h3 {
  font-size: 28px;
  color: #ec1b96;
  margin-bottom: 15px;
}

.tab-item .tab-text p {
  font-size: 16px;
  color: #FFF;
  line-height: 1.6;
}

/* Desktop Layout */
@media (min-width: 768px) {
  .tab-item {
    flex-direction: row; /* image left, text right */
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  /* .tab-img{
    width: 50% !important;
    background-color: #fff;
  } */
  .tab-item img,
  .tab-item .tab-text {
    width: 180%;
    max-width: none;
    text-align: left;
  }

  .tab-item .tab-text h3 {
    font-size: 32px;
  }

  .tab-item .tab-text p {
    font-size: 18px;
  }
}


/* /////////// ourservice section here   */

.services-section {
  margin: 0px;
  padding: 80px 8%;
  background: #010e2e;
  color: #fff;
}

.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ec1b96;
}

.services-header p {
  font-size: 16px;
  color: #FFF;
}

/* Tabs */
.services-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 20px;
}

.tab-btn {
  padding: 10px 30px;
  border: 2px solid #fa009a;
  border-radius: 30px;
  background: transparent;
  color: #fa009a;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: #fa009a;
  color: #fff;
}

/* Service Cards */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px 10px;
  /* flex: 1 1 calc(25% - 20px); */
    flex: 1 1 calc(15% - 20px);
  text-align: center;
  box-shadow: 0 8px 20px rgba(173, 173, 173, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(255, 255, 255, 0.205);
  background: #ec1b96;
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

/* Hidden grids */
.more-services,
.category {
  display: none;
}

/* View All Button */
.view-all-btn-container {
  text-align: center;
  margin-top: 40px;
}

.view-all-btn {
  padding: 12px 35px;
  border-radius: 30px;
  border: 2px solid #fa009a;
  background: transparent;
  color: #fa009a;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #fa009a;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .service-card {
    flex: 1 1 calc(33.33% - 20px);
  }
}

@media (max-width: 768px) {
  .service-card {
    flex: 1 1 calc(50% - 20px);
  }

  .services-tabs {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .service-card {
    flex: 1 1 100%;
  }
}


/* know us section sarted heree  */
.special{
  color: #ec1b96;
  border-bottom: 1px solid #ec1b96;
}

.knowus-section {
  padding: 100px 8%;
  /* background: linear-gradient(120deg, #0d2b45, #1c3f63); */
  /* background: #1d032e !important; */
  background: url(images/5104835.jpg);
  /* background-position: cover !important; */
  background-size: cover;
  background-attachment: fixed; /* optional for parallax */
  background-position: center;
  color: #fff;
  overflow: hidden;
  margin: 0;
}

.knowus-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background-color: transparent;
}

.knowus-content {
  flex: 1 1 45%;
}

.knowus-badge {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  border-bottom: 2px solid #fa009a;
  margin-bottom: 15px;
}

.knowus-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 18px;
}

.knowus-text {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.knowus-btn {
  background: #fa009a;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.knowus-btn:hover {
  background: #fff;
  color: #fa009a;
}

.knowus-image {
  flex: 1 1 45%;
  text-align: center;
}

.knowus-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Stats Section */
.knowus-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 70px;
  text-align: center;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: 0.3s;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-item h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fa009a;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}
.counter::after {
  content: "+";
  color: #fa009a;
  font-size: 28px;
  margin-left: 3px;
}


/* Responsive */
@media (max-width: 900px) {
  .knowus-container {
    flex-direction: column;
    text-align: center;
  }

  .knowus-content, .knowus-image {
    flex: 1 1 100%;
  }
}
.why-img{
  height: 100px;
  width: 100px;
}

/* why section here */

.why-section {
  padding: 100px 8%;
  /* background: linear-gradient(120deg, #0d2b45, #1c3f63); */
  background: url(images/5104835.jpg);
  background-size: cover;
  background-attachment: fixed; /* optional for parallax */
  background-position: center;
  /* -webkit-transform: scaleX(-1); */
  /* transform: scaleX(-1); */
  color: #fff;
  overflow: hidden;
}

.why-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.why-content {
  flex: 1 1 45%;
  text-align: center;
}

.why-badge {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  border-bottom: 2px solid #fa009a;
  margin-bottom: 15px;
}

.why-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 18px;
}

.why-text {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.why-btn {
  background: #fa009a;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.why-btn:hover {
  background: #fff;
  color: #fa009a;
}
/* 
.knowus-image {
  flex: 1 1 45%;
  text-align: center;
} */

/* .knowus-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  animation: float 3s ease-in-out infinite;
} */

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Stats Section */
.why-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 70px;
  text-align: center;
}

.why-stat-item {
  background: rgba(38, 11, 53, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: 0.3s;
}

.why-stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.why-stat-item h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fa009a;
  margin-bottom: 8px;
}

.why-stat-item p {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}


/* become a partner  */

.become-section {
  padding: 100px 8%;
  background: linear-gradient(120deg, #190d2e, #33081a);
  color: #fff;
  overflow: hidden;
}

/* .become-section {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 24, 35, 0.7);
  box-shadow: inset 2px 2px 10px rgba(0, 0, 0, 0.3);
 &:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    filter: blur(40px);
    transform: scale(1.3);
    background: linear-gradient(90deg, #0fffc1, #7e0fff);
    background-size: 200% 200%;
    animation: animateGlow 10s ease infinite;
    
    @keyframes animateGlow {
      0%  {
        background-position: 0% 50%
      }
      
      50% {
        background-position: 100% 50%
      }
      
      100% {
        background-position: 0% 50%
      }
    }
  }
} */

.become-header {
  text-align: center;
  margin-bottom: 60px;
}

.become-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ec1b96;
}
.become-content h3, strong{
  color: #ec1b96 !important;
}

.become-header p {
  font-size: 16px;
  color: #dcdcdc;
  line-height: 1.7;
}

.become-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 80px;
}

.become-item.reverse {
  flex-direction: row-reverse;
}

.become-img {
  flex: 1 1 45%;
  text-align: center;
}

.become-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.become-content {
  flex: 1 1 50%;
}

.become-content h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.become-content p {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 25px;
}

.become-btn {
  background: #fa009a;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.become-btn:hover {
  background: #fff;
  color: #fa009a;
}

/* Responsive */
@media (max-width: 992px) {
  .become-item {
    flex-direction: column;
    text-align: center;
  }
  .become-item.reverse {
    flex-direction: column;
  }
  .become-content {
    flex: 1 1 100%;
  }
  .become-img {
    flex: 1 1 100%;
  }
  .become-content h3 {
    font-size: 26px;
  }
}


/* Testimonials Section */
/* Container */
    .testimonials-section { padding: 80px 6%; text-align: center;
      background: url(images/5104835.jpg);
      background-size: cover;
      background-attachment: fixed; /* optional for parallax */
      background-position: center;
    }

    .testimonial-heading h2 { font-size: 34px; font-weight:700; margin-bottom:8px; color: #ec1b96; }
    .testimonial-heading p { color:#fff; margin-bottom:32px; }

    /* Swiper container explicit sizing */
    .swiper { width: 100%; padding-bottom: 40px; }
    .swiper .swiper-wrapper { align-items: stretch; } /* ensures slides match height */

    /* Slide card */
    .testimonial-card {
      background: #fff;
      border-radius: 16px;
      padding: 28px 22px;
      box-shadow: 0 6px 24px rgba(16,24,40,0.08);
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .testimonial-text {
      font-size: 16px;
      color: #222;
      line-height: 1.6;
      margin-bottom: 22px;
      flex: 1 0 auto;
    }

    .testimonial-user { display:flex; flex-direction: column; align-items:center; gap:6px; margin-top: 14px; flex-shrink:0; }
    .testimonial-user img { width:70px; height:70px; border-radius:50%; object-fit:cover; }
    .testimonial-user h4 { font-size:16px; margin:0; }
    .testimonial-user span { color:#777; font-size:14px; }

    /* Pagination bullets */
    .swiper-pagination-bullet { background:#fa009a !important; opacity:1 !important; }

    /* Navigation arrows appearance */
    .swiper-button-next, .swiper-button-prev {
      color: #fa009a;
      width:44px; height:44px;
      --swiper-navigation-size: 24px;
      filter: drop-shadow(0 6px 12px rgba(0,0,0,0.08));
    }
    .swiper-button-next:hover, .swiper-button-prev:hover { color:#b30072; }

    /* Responsive breakpoints handled in JS, but adjust card paddings */
    @media (max-width: 1024px) {
      .testimonial-card { padding:24px; }
    }
    @media (max-width: 768px) {
      .testimonial-heading h2 { font-size:28px; }
      .testimonial-card { padding:20px; }
    }


/* Download app section  */

.download-section {
  padding: 100px 8%;
  background: linear-gradient(120deg, #ff1bf4, #7a1069);
  /* background: url(images/panoramic-view-dubai-city-illuminated-neon-spectrum.jpg);
   background-size: cover;
  background-attachment: fixed; 
  background-position: center; */
  color: #fff;
  overflow: hidden;
  height: 60vh;
}

.download-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.download-content {
  flex: 1 1 45%;
}

.download-content h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.download-content p {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 25px;
}

.download-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 12px;
}

.input-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  margin: 12px;
  flex-wrap: wrap;
}

.simple-input {
  padding: 12px 18px;
  width: 280px;
  border-radius: 30px;
  border: none;
  outline: none;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.39);
  color: #fff;
  backdrop-filter: blur(8px);
}

.simple-input::placeholder {
  color: #ddd;
}

.simple-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  background: #fa009a;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.simple-btn:hover {
  background: #e60087;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 600px) {
  .input-section {
    flex-direction: column;
  }

  .simple-input, .simple-btn {
    width: 100%;
    text-align: center;
  }
}


.download-buttons a img {
  width: 150px;
  height: auto;
  transition: 0.3s;
}

.download-buttons a:hover img {
  transform: scale(1.05);
}

.download-image {
  flex: 1 1 45%;
  text-align: center;
}

.download-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 992px) {
  .download-container {
    flex-direction: column;
    text-align: center;
  }
  .download-content, .download-image {
    flex: 1 1 100%;
  }
  .download-content h2 {
    font-size: 30px;
  }
}


.footer-section {
  background: #010e2e;
  color: #fff;
  padding: 80px 8% 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-about {
  flex: 1 1 300px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 14px;
  color: #dcdcdc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-apps a img {
  width: 130px;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer-apps a img:hover {
  transform: scale(1.05);
}

/* Links & Support */
.footer-links, .footer-support {
  flex: 1 1 150px;
}

.footer-links h4, .footer-support h4, .footer-social h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-links ul, .footer-support ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li, .footer-support ul li {
  margin-bottom: 10px;
}

.footer-links ul li a, .footer-support ul li a {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links ul li a:hover, .footer-support ul li a:hover {
  color: #fa009a;
}

/* Social Media */
.footer-social {
  flex: 1 1 150px;
}

.social-icons a img {
  width: 30px;
  margin-right: 10px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.social-icons a img:hover {
  filter: brightness(0) invert(0.7) drop-shadow(0 0 5px #fa009a);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  font-size: 13px;
  color: #dcdcdc;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links, .footer-support, .footer-social {
    flex: 1 1 100%;
  }

  .footer-apps a img {
    width: 120px;
  }
}
