/* ============================
   Template Name: PaySmart B2B
   Description: Cleaned & Professional Fintech Layout
=============================== */

@import url("https://fonts.googleapis.com/css2?family=Sen:wght@400;700;800&display=swap");

/* --- COMMON CSS --- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sen", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: rgba(0, 0, 0, 0.7);
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

a {
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

a:hover {
  color: #5f6fff;
}

i,
span,
a {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0px;
  color: #2e2e2e;
}

h1 {
  font-size: 55px;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 28px;
}
h4 {
  font-size: 20px;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 0px;
}

/* --- BUTTONS --- */
.main-btn {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  padding: 18px 40px;
  font-size: 16px;
  border-radius: 50px;
  color: #fff;
  background: #fb7370;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

.main-btn.border-btn {
  border: 2px solid #0052ff;
  background: transparent;
  color: #0052ff;
}

.main-btn.border-btn:hover {
  background: #0052ff;
  color: #fff;
}

.btn-hover::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  top: 50%;
  left: 50%;
  padding: 50%;
  z-index: -1;
  transition: all 0.3s ease-out 0s;
  transform: translate3d(-50%, -50%, 0) scale(0);
}

.btn-hover:hover::after {
  transform: translate3d(-50%, -50%, 0) scale(1.3);
}
/* ===== NAVBAR ===== */
/* ===== BASE ===== */
body {
  overflow-x: hidden;
}

.navbar-area {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 20px 0;
  transition: 0.3s;
}

/* Sticky */
.navbar-area.sticky {
  position: fixed;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 15px 0;
}

/* Logo */
.navbar-brand {
  font-weight: 800;
  font-size: 24px;
  color: #fff;
  transition: 0.3s;
}

.navbar-area.sticky .navbar-brand {
  color: #222;
}

/* Nav links */
.navbar-nav .nav-item {
  margin-left: 25px;
}

.navbar-nav .nav-item a {
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.navbar-area.sticky .nav-item a {
  color: #333;
}

/* Button */
.login-btn {
  background: #ff6b6b;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  margin-left: 20px;
}

.navbar-area.sticky .login-btn {
  background: #ff6b6b;
  color: #fff;
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {

  .navbar-toggler {
    border: none;
    font-size: 24px;
  }

  .navbar-collapse {
    background: #fff;
    padding: 20px;
    margin-top: 10px;
    border-radius: 10px;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-item {
    margin: 10px 0;
  }

  .navbar-nav .nav-item a {
    color: #333;
  }

  .login-btn {
    display: inline-block;
    margin-top: 10px;
  }

}

/* --- HERO SECTION --- */
.hero-section {
  padding: 200px 0 100px;
  background: linear-gradient(135deg, #5f6fff 0%, #3f4cb8 100%);
  color: #fff;
}


.hero-image {
  overflow: hidden; 
  max-width: 650px;
  height: 450px;
  overflow: hidden;
  margin: auto;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  display: block;
  transition: transform 0.4s ease;
  transition: transform 0.5s ease, filter 0.5s ease;
}


.hero-image:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}



.hero-content h1 {
  color: #fff;
  margin-bottom: 20px;
}
.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
}

/* --- BRANDS SECTION --- */
/* --- Brands Section Updated --- */
.brands-section {
  margin-top: 120px; /* Big margin from Hero */
  padding-bottom: 60px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.logo-slider {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  white-space: nowrap;
}

.Brand-head {
  font-size: 18px;
  color: #2e2e2e;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

/* Moving Track */
.logo-track {
  display: flex;
  align-items: center;
  width: calc(200px * 12); /* Based on logo count */
  animation: scrollLogos 30s linear infinite;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused; /* Pause on hover */
}

.single-logo {
  width: 200px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.single-logo img {
  max-width: 140px;
  max-height: 70px;
  object-fit: contain;
  /* Filter gray hta diya, ab original color dikhega */
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.05));
  transition: all 0.4s ease;
}

/* --- Hover Effect --- */
.single-logo:hover {
  transform: translateY(-8px) scale(1.1); /* Lift and Zoom */
}

.single-logo:hover img {
  filter: drop-shadow(
    0 10px 20px rgba(95, 111, 255, 0.2)
  ); /* Blueish glow on hover */
}

/* Infinite Scroll Animation */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 6));
  } /* Adjust based on your logo count */
}

/* Responsive Fix */
@media (max-width: 767px) {
  .brands-section {
    margin-top: 60px;
  }
  .single-logo {
    width: 150px;
  }
  .single-logo img {
    max-width: 100px;
  }
}

/* --- About Section (Feature Section 1) Updated --- */
/* --- About Section Image Fix --- */
.about-img-wrapper {
    width: 100%;
    height: 100%;
    min-height: 450px; /* Desktop pe minimum height */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-main-img {
    width: 100%;
    height: 500px; /* Fixed height for desktop to match content */
    object-fit: cover; /* Isse image kategi nahi balki frame mein fill ho jayegi */
    object-position: center;
    transition: all 0.5s ease;
}

.About-head{
  padding-bottom: 10px;
}

.about-text{
  padding-bottom: 10px;
}

.about-points{
  padding-bottom: 10px;
}

.about-img-wrapper:hover .about-main-img {
    transform: scale(1.05); /* Hover effect */
}

/* --- Responsive Adjustments --- */

@media (max-width: 1200px) {
    .about-main-img {
        height: 450px;
    }
}

@media (max-width: 991px) {
    .about-main-img {
        height: 400px; /* Tablet pe height thodi kam */
    }
    .ps-lg-5 {
        padding-left: 15px !important; /* Mobile pe padding reset */
        margin-top: 30px;
    }
    .About-head {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .about-main-img {
        height: 300px; /* Mobile pe compact look */
    }
    .about-img-wrapper {
        min-height: auto;
    }
    .About-head {
        font-size: 28px;
    }
}

/* --- SERVICES (FEATURE SECTION) --- */
.feature-section {
  padding: 100px 0;
  background: #fdfdfd;
}

.services-head{
  padding-bottom: 10px;
}

.single-feature.custom-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
  margin-bottom: 30px;
  height: calc(100% - 30px); /* Height balance fix */
}

.single-feature.custom-card:hover {
  transform: translateY(-10px);
  border-color: #5f6fff;
  box-shadow: 0 15px 35px rgba(95, 111, 255, 0.1);
}

/* New Icon Style: Royal Blue Theme */
.feature-icon-new {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Light blue background jiske upar dark blue icon chamkega */
  background: rgba(95, 111, 255, 0.1); 
  color: #5f6fff;
  font-size: 30px;
  margin-bottom: 25px;
  transition: 0.4s;
}

/* Hover par Icon color reverse hoga */
.single-feature.custom-card:hover .feature-icon-new {
  background: #5f6fff;
  color: #fff;
  transform: rotateY(180deg); /* Smooth flip effect */
}

.feature-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2e2e2e;
}

.feature-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}


/* --- HOW IT WORKS (FEATURE 2) --- */
.feature-section-2 {
  padding: 100px 0;
  background: #fff;
}

/* Section background */
.premium-section {
  background: linear-gradient(135deg, #f8fbff, #eef3ff);
  padding: 100px 0;
}

/* Title */
.premium-title h2 {
  font-weight: 700;
  font-size: 38px;
}

.premium-title p {
  color: #6c757d;
}

/* Left glass card */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Heading */
.premium-heading {
  font-weight: 700;
  line-height: 1.3;
  padding-bottom: 20px;
}

/* Feature items */
.premium-feature {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 15px;
  transition: 0.3s;
}

.premium-feature:hover {
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* Icon styling */
.feature-icon {
  min-width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  font-size: 20px;
}

/* Image wrapper FIX (important) */
.premium-image-wrapper {
  max-width: 650px;
  margin-left: auto;
}

/* Image FIX (no more cut/crop issue) */
.dashboard-mockup {
  width: 100%;
  height: auto;
  object-fit: contain; /* FIXED: no cut */
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transition: 0.4s ease;
}

.dashboard-mockup:hover {
  transform: scale(1.03);
}

/* ===== FIX: Responsive Layout ===== */
/* ===== SECTION BASE ===== */
.feature-section-2 {
  padding: 100px 0;
  background: #fff;
}

.premium-section {
  background: linear-gradient(135deg, #f8fbff, #eef3ff);
  padding: 100px 0;
}

/* ===== TITLE ===== */
.premium-title h2 {
  font-weight: 700;
  font-size: 38px;
}

.premium-title p {
  color: #6c757d;
  font-size: 16px;
}

/* ===== LEFT CARD ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* ===== HEADING ===== */
.premium-heading {
  font-weight: 700;
  line-height: 1.3;
  padding-bottom: 20px;
  font-size: 32px;
}

/* ===== FEATURES ===== */
.premium-feature {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 15px;
  transition: 0.3s;
}

.premium-feature:hover {
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.feature-icon {
  min-width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  font-size: 20px;
}

/* ===== IMAGE ===== */
.premium-image-wrapper {
  width: 100%;
  max-width: 100%;
}

.dashboard-mockup {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transition: 0.4s ease;
}

.dashboard-mockup:hover {
  transform: scale(1.03);
}

/* ===== DESKTOP ZIG-ZAG ===== */
@media (min-width: 992px) {
  .feature-2 {
    margin-left: 80px;
  }
  .feature-3 {
    margin-left: 160px;
  }
}

/* ===== TABLET (1199px ↓) ===== */
@media (max-width: 1199px) {

  .premium-row {
    flex-direction: column;
  }

  .premium-row .col-lg-6 {
    width: 100%;
    max-width: 100%;
  }

  .premium-image-wrapper {
    margin-top: 40px;
    text-align: center;
  }

  .dashboard-mockup {
    width: 100%;
    max-width: 100%; /* FULL WIDTH FIX */
  }

  .glass-card {
    width: 100%;
  }

  .feature-2,
  .feature-3 {
    margin-left: 0 !important;
  }

  /* TEXT SCALE */
  .premium-title h2 {
    font-size: 32px;
  }

  .premium-heading {
    font-size: 28px;
  }

  .feature-content h4 {
    font-size: 18px;
  }

  .feature-content p {
    font-size: 14px;
  }
}

/* ===== MOBILE (768px ↓) ===== */
@media (max-width: 768px) {

  .feature-section-2 {
    padding: 70px 0;
  }

  .premium-title h2 {
    font-size: 26px;
  }

  .premium-title p {
    font-size: 14px;
  }

  .premium-heading {
    font-size: 22px !important;
  }

  .glass-card {
    padding: 20px;
  }

  .premium-feature {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-icon {
    margin-bottom: 10px;
  }

  .feature-content h4 {
    font-size: 16px;
  }

  .feature-content p {
    font-size: 13px;
  }

  .dashboard-mockup {
    width: 100%;
  }
}


/* --- WHY CHOOSE (TEAM STYLE) --- */
.why-choose-section {
    background: #fcfdfe; /* Clean light blue background */
    padding-top: 120px;
    padding-bottom: 60px;
}

.why-choose-head{
  padding-bottom: 10px;
}

.why-choose-title{
  margin-bottom: 40px;
}

.trust-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Snappy bounce effect */
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Hover State */
.trust-card:hover {
    transform: translateY(-12px); /* Slightly more lift */
    box-shadow: 0 25px 50px rgba(95, 111, 255, 0.15);
    border-color: #5f6fff;
}

/* --- Premium Icon Box (Blue Gradient Fix) --- */
.trust-icon-box {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: 0.5s ease-in-out;
    border: 4px solid rgba(255, 255, 255, 0.1);
    
    /* Sare icons ab blue theme mein honge */
    background: linear-gradient(145deg, #5f6fff, #3f4cb8);
    box-shadow: 0 10px 25px rgba(95, 111, 255, 0.3);
}

.trust-icon-box i {
    font-size: 38px;
    color: #fff;
}

/* Hover flip effect for icon */
.trust-card:hover .trust-icon-box {
    transform: rotateY(360deg) scale(1.05);
    background: linear-gradient(145deg, #3f4cb8, #5f6fff); /* Inverted gradient */
}

/* --- Content Styling --- */
.trust-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2e2e2e;
    transition: 0.3s;
}

.trust-card:hover .trust-content h4 {
    color: #5f6fff; /* Title turns blue on hover */
}

.trust-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* --- RESPONSIVE OPTIMIZATION --- */

/* For 1200px overlapping issues */
@media (max-width: 1200px) {
    .trust-card {
        padding: 40px 20px;
    }
}

/* Tablet & Mobile (991px to below) */
@media (max-width: 991px) {
    .why-choose-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .trust-card {
        margin-bottom: 20px;
    }
    .trust-icon-box {
        width: 85px;
        height: 85px;
        font-size: 32px;
    }
}

/* Mobile Screen Small (576px) */
@media (max-width: 576px) {
    .trust-content h4 {
        font-size: 20px;
    }
    .trust-content p {
        font-size: 14px;
    }
    .hero-content h1{
      font-size: 35px;
    }
}

/* --- PLATFORMS --- */
.platform-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.platforms-head{
  padding-bottom: 10px;
}

.platforms-title{
  margin-bottom: 40px;
}

.platform-relative-wrapper {
  position: relative;
  padding: 20px 0;
}

.connecting-line {
  position: absolute;
  top: 100px; 
  left: 10%;
  right: 10%;
  height: 3px;
  background: #e67e22; 
  z-index: 1;
  opacity: 0.4;
}

@media (max-width: 968px) {
  .connecting-line {
    display: none;
  }
}

.platform-modern-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.platform-box-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  transition: 0.4s;
}

/* --- Circle UI --- */
.platform-circle-ui {
  width: 150px;
  height: 150px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

/* --- Hover Effects --- */
.platform-box-item:hover .platform-circle-ui {
  transform: translateY(-10px) scale(1.1);
  border-color: #e67e22; /* Glows orange on hover */
  box-shadow: 0 15px 35px rgba(230, 126, 34, 0.2);
}

.inner-icon i {
  font-size: 45px;
  transition: 0.3s;
}

/* Merchant Rupee Icon Style */
.rupee-icon {
  font-size: 55px;
  font-weight: 800;
  color: #e67e22;
}

.platform-box-item:hover .inner-icon {
  transform: rotate(10deg);
}

/* Icon Colors */
.p-green .inner-icon i {
  color: #2ecc71;
}
.p-blue .inner-icon i {
  color: #5f6fff;
}
.p-whatsapp .inner-icon i {
  color: #25d366;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 968px) {
  .platform-box-item {
    flex: 0 0 calc(50% - 20px);
    margin-bottom: 30px;
  }
  .platform-circle-ui {
    width: 130px;
    height: 130px;
  }
}

/* Mobile (Single Column) */
@media (max-width: 576px) {
  .platform-box-item {
    flex: 0 0 100%;
  }
}

.platform-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #2e2e2e;
}

.platform-info p {
  font-size: 14px;
  color: #666;
}

/* --- Security Section CSS --- */

.security-trust-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.security-text{
padding-bottom: 15px;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-left: 50px;
}

.badge-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    transition: 0.4s;
}

.badge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(95, 111, 255, 0.1);
}

/* Icon Box for Logos */
.badge-icon-box {
    font-size: 50px;
    color: #5F6FFF;
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-card p {
    font-size: 14px;
    font-weight: 800;
    color: #333;
    letter-spacing: 1px;
}

/* Left Side Icons Fix */
.trust-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.trust-item i {
    width: 50px;
    height: 50px;
    background: #fff;
    color: #5F6FFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

@media (max-width: 991px) {
    .badge-grid { padding-left: 0; margin-top: 50px; }
}

/* -- SUpport Section  -- */
.app-support-section {
  margin-top: 100px;
  padding-bottom: 80px;
  background: #ffffff;
  position: relative;
}

.app-wrapper-box {
  background: linear-gradient(135deg, #5f6fff 0%, #3f4cb8 100%);
  border-radius: 30px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  /* overflow: hidden hta diya taaki image kategi nahi */
  z-index: 1;
}

/* Background Abstract Shape (Dobara position kiya taaki image se na takraye) */
.app-wrapper-box::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -150px;
  right: -100px;
  z-index: -1;
}

/* --- Image Fixing Logic --- */
.app-image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px solid blue !important;
}

.floating-mockup {
  max-width: 100%; /* Frame ke bahar nahi jayegi */
  height: auto;
  object-fit: contain; /* Image kategi nahi */
  /* Agar image ke border katti lag rahi hai toh ye padding help karegi */
  padding: 10px;
}

.app-content h2 {
  color: #fff;
  font-size: 38px;
  line-height: 1.3;
}

.app-content p {
  color: rgba(255, 255, 255, 0.8);
}

/* Download Buttons Style */
.download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.store-btn {
  background: #fff;
  color: #333;
  padding: 12px 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  transition: 0.3s;
  text-decoration: none;
}

.store-btn i {
  font-size: 30px;
  margin-right: 12px;
  color: #5f6fff;
}

.store-btn span {
  font-size: 13px;
  line-height: 1.2;
}

.store-btn span b {
  display: block;
  font-size: 16px;
}

.store-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  color: #5f6fff;
}

.web-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.web-btn i,
.web-btn span {
  color: #fff;
}

/* Support Box */
.support-quick-box {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 15px;
  max-width: 400px;
}

.s-icon-wrap {
  font-size: 30px;
  color: #efb544;
  margin-right: 20px;
}

.s-text-wrap h6 {
  color: #fff;
  margin-bottom: 2px;
}
.s-text-wrap p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/*==== download section ====*/
.app-head{
  padding-bottom: 10px;
}

.app-info{
  padding-bottom: 10px;
}

.download-btns{
  margin-bottom: 15px;
}

@keyframes floatAnim {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}


@media (max-width: 1200px) {
  .floating-mockup {
    max-width: 85%; 
  }
}

@media (max-width: 968px) {
  .app-wrapper-box {
    padding: 40px 20px;
    text-align: center;
  }
  .app-image-wrap {
    margin-bottom: 30px;
  }
  .floating-mockup {
    max-width: 250px; 
  }
  .app-content {
    margin-top: 20px;
    padding-left: 0 !important;
  }
  .download-btns {
    justify-content: center;
  }
  .support-quick-box {
    margin: 20px auto 0;
  }
}

@media (max-width: 576px) {
  .app-content h2 {
    font-size: 28px;
  }
  .store-btn {
    width: 100%; 
    justify-content: center;
  }
}

/* --- FOOTER --- */
.footer-area {
  margin-top: 100px;
  background: #0d121d; 
  color: #fff;
  position: relative;
  padding-top: 50px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-social-links ul{
  list-style: none;
}

.footer-links{
  list-style: none;
}

.footer-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #5f6fff; /* Blue Accent */
}

/* Footer Links Style */
.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: 0.3s;
  display: block;
}

.footer-links li a:hover {
  color: #5f6fff;
  transform: translateX(5px);
}

/* Social Links */
.footer-social-links ul {
  display: flex;
}

.footer-social-links {
  padding-top: 15px;
}

.footer-social-links ul li a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  transition: 0.3s;
}

.footer-social-links ul li a:hover {
  background: #5f6fff;
  transform: translateY(-5px);
}

/* Newsletter Style */
.footer-newsletter form {
  position: relative;
}

.footer-newsletter input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 5px;
  color: #fff;
}

.footer-newsletter button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background: #5f6fff;
  border: none;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

/* Contact Info */
.contact-info li {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-info li i {
  color: #5f6fff;
  margin-right: 12px;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
}

.copyright-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links li {
  display: inline-block;
  margin-left: 20px;
}

.footer-bottom-links li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Mobile Fix */
@media (max-width: 767px) {
  .footer-top {
    text-align: left;
  }
  .footer-bottom {
    text-align: center;
  }
  .footer-bottom-links {
    margin-top: 15px;
  }
  .footer-bottom-links li {
    margin: 0 10px;
  }
}
