@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #27aae1;
  --primary-gradient: linear-gradient(135deg, #27aae1 0%, #1e81b0 100%);
  --secondary-color: #2f2927;
  --text-color: #404040;
  --bg-color: #f9fbfd;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(39, 170, 225, 0.15);
  --shadow-lg: 0 15px 35px rgba(39, 170, 225, 0.2);
  --font-main: "Poppins", sans-serif;
  --font-display: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  max-width: 90%;
}

body {
  font-family: var(--font-main);
  background: var(--bg-color);
  color: var(--text-color);
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

.logo {
  width: auto;
  height: 54px;
  object-fit: contain;
}

/* hero section */
.hero-section {
  margin-bottom: -15vh;
  position: relative;
  /* overflow: hidden; Removed to prevent cutting off the phone image */
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(39, 170, 225, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  border-radius: 50%;
  animation: float 10s infinite ease-in-out;
}

.hero-title {
  font-family: var(--font-main);
  font-size: 4.5vw;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.hero-subTitle {
  font-size: 1.25vw;
  font-weight: 400;
  color: var(--text-color);
  opacity: 0.9;
  font-family: var(--font-body);
  line-height: 1.6;
}

.storeLogo {
  width: 250px;
  height: 40px;
}

/* Store Buttons */
.storeBtn {
  width: 60% !important;
  height: auto;
  transition: transform 0.2s ease;
}

.storeBtn:hover {
  transform: scale(1.05);
}

/* Phone Mockups */
.phone {
  max-width: 100%;
  position: relative;
  /* Reduced negative top to prevent hitting navbar */
  top: -5%;
}

.phone-front {
  z-index: 2;
  /* Removed negative margin to prevent left clipping */
  margin-left: 0;
}

.phone-back {
  z-index: 1;
  opacity: 0.9;
}

/* Scroll Indicator */

.scroll-arrow {
  width: 46px !important;
  height: 60px !important;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20px, 30px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* Stats Section */
.stats {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  margin-left: 10%;
  /* Adjusted from 12% */
  margin-right: 10%;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
  border: 1px solid var(--glass-border);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  justify-content: center;
  /* Centered */
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
  display: flex;
  justify-content: center;
}

/* About Section */
.about-section {
  padding-bottom: 0 !important;
}

.about-label {
  font-size: 1.65vw;
  font-weight: 600;
  color: #27aae1;
  line-height: 130%;
  letter-spacing: 0%;
  margin-bottom: 10px;

  font-family: "Manrope";
}

.about-title {
  font-size: 3.13vw;
  font-family: "Manrope";
  font-weight: 600;
  color: #211d1a;
  margin-bottom: 20px;
}

.about-titleMob {
  display: none;
}

.about-text {
  max-width: 100%;
  margin: 0 auto;
  font-size: 1.39vw;
  font-weight: 400;
  color: #404040;
  line-height: 36px;
  opacity: 0.8;
  font-family: "Inter", sans-serif;
}

/* About Image */
.about-image img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: translateY(-8px);
}

/* about tab  */
@media (min-width: 768px) and (max-width: 991px) {
  .about-title {
    font-size: 26px;
  }

  .about-text {
    font-size: 15px;
  }
}