@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary: #fcb900;
  --primary-dark: #e6a800;
  --secondary: #ff5e00;
  --accent: #00d2ff;
  --dark: #0f3460;
  --darker: #16213e;
  --darkest: #000000;
  --light: #ffffff;
  --gray: #a0a0b0;
--dark-bg: #fff;

}

a {
  color: #e6a800;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  color: #cc9100;
  text-decoration: none;
}

/* Add this to your CSS */
nav ul li a.active {
  color: var(--primary) !important;
}

nav ul li a.active::after {
  width: 100% !important;
  background: var(--primary) !important;
}

/* For mobile menu */
.mobile-menu ul li a.active {
  background: rgba(252, 185, 0, 0.1) !important;
  color: var(--primary) !important;
  border-color: rgba(252, 185, 0, 0.2) !important;
}

html {
  overflow-x: hidden;
}

body {
  background: var(--dark-bg);
  color: var(--light);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--light) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--light) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--light);
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: black;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  max-width: 1200px;
  margin: 0;
}

/* Logo Styles */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* keeps it sharp */
  display: block;
  border-radius: 50%;
}

.logo img:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light);
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation Styles */
nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: var(--light);
  font-weight: 500;
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li a:hover::after {
  width: 100%;
}

/* Auth Buttons */
.auth-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.login-btn,
.signup-btn {
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.login-btn {
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.login-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.signup-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--darkest);
  border: none;
  position: relative;
  overflow: hidden;
}

.signup-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: 0.5s;
}

.signup-btn:hover::before {
  left: 100%;
}

.signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(252, 185, 0, 0.4);
}

/* Mobile Menu Toggle - Fixed Hamburger */
.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1002;
}

.menu-toggle a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--darkest);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  position: relative;
}

.menu-toggle a i {
  transition: all 0.4s ease;
  position: absolute;
}

.menu-toggle a .fa-bars {
  opacity: 1;
  transform: rotate(0deg);
}

.menu-toggle a .fa-times {
  opacity: 0;
  transform: rotate(-180deg);
}

.menu-open .menu-toggle a .fa-bars {
  opacity: 0;
  transform: rotate(180deg);
}

.menu-open .menu-toggle a .fa-times {
  opacity: 1;
  transform: rotate(0deg);
}


/* Sidebar Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: #0C0B0B;
  backdrop-filter: blur(15px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 80px 25px 30px;
  transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.mobile-menu ul li {
  margin-bottom: 8px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
}

.mobile-menu.active ul li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu ul li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu ul li:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu ul li:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu ul li:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu ul li a {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--light);
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 5px;
}

.mobile-menu ul li a i {
  margin-right: 15px;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  color: var(--primary);
}

.mobile-menu ul li a:hover {
  background: rgba(252, 185, 0, 0.1);
  color: var(--primary);
  transform: translateX(5px);
  border-color: rgba(252, 185, 0, 0.2);
}

.mobile-auth {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.mobile-auth a {
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-auth .login-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-auth .signup-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--darkest);
}

.mobile-auth a:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 992px) {

  nav,
  .desktop-auth {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-container {
    padding: 15px 20px;
  }
}

@media (max-width: 576px) {
  .logo-text {
    font-size: 1.5rem;
  }

  .header-container {
    padding: 0px 15px;
  }

  .mobile-menu {
    width: 280px;
    padding: 70px 20px 20px;
  }

}

.primary-btn {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--darkest);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(252, 185, 0, 0.3);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(252, 185, 0, 0.4);
}

.words-gen {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px 20px;
}

.words-indoors {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: start;
  margin-top: 20px;
  margin-bottom: 20px;
}




/* Phone Gallery Section */

.scroll-phone-display {
  height: fit-content;
  padding: 20px 20px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.phone-display-wrapper {
  position: relative;
  top: 0;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-phone-image {
  position: relative;
  z-index: -999;
  width: 300px;
  transition: transform 0.5s ease;
}

.main-phone-image img {
  width: 100%;
  height: auto;
}

.flanking-image {
  position: absolute;
  width: 180px;
  transition: all 0.8s ease;
  z-index: 5;
}

.flanking-image img {
  width: 100%;
  height: auto;
}

.flanking-image.left-side {
  left: 20%;
  transform: translateX(-20px);
  top: 20%;
}

.flanking-image.right-side {
  /* right: 20%; */
  transform: translateX(50px);
}

/* When scrolled into view */
.flanking-image.in-view {
  /* opacity: 1; */
  transform: translateX(20px) rotate(0);
}



/* phone-scroll text div */

.full-width-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: start;
}
.full-width-container h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #000000 0%, #050505 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
  text-align: start;
  align-self: flex-start;
}

.description {
  font-size: 15px;
  color: grey;
  margin: 0 auto 10px;
  animation: fadeInUp 1s ease-out 0.2s both;
  text-align: start;
}


.icon-list {
  display: flex;
  justify-content: start;
  animation: fadeInUp 1s ease-out 0.6s both;
  align-self: flex-start;
}

.icon-list-item {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #2b2b2b;
  font-weight: 500;
  transition: color 0.3s;
}

.icon-list-item:hover {
  color: var(--primary);
}

.icon-list-icon {
  margin-right: 10px;
  font-size: 1.5rem;
  color: var(--primary);
}

/******************************** Animations *********************************************/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

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

  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* Move only half the width */
  }
}

@keyframes pairScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    /* Calculate translation based on total content width */
    transform: translateX(calc(-50% - 10px));
  }
}

/* Pause animation on hover */
.pairs-container:hover {
  animation-play-state: paused;
}

/* scroll phone */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 992px) {

  .hero-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text {
    text-align: start;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    background: var(--darker);
    width: 280px;
    height: 100vh;
    padding: 100px 30px 30px;
    transition: 0.4s;
    z-index: 1000;
    gap: 20px;
  }

  .nav-links.active {
    right: 0;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .auth-buttons {
    margin-top: 20px;
    flex-direction: column;
    gap: 15px;
  }

  .desktop-auth {
    display: none;
  }

  .flanking-image.left-side {
    left: 10%;
  }

  .flanking-image.right-side {
    right: 10%;
  }
}


.flanking-image.left-side {
  left: 10%;
}

.flanking-image.right-side {
  right: 10%;
}


@media (max-width: 768px) {

  #header {
    margin-bottom: 0px;
  }




  /* Phone scroll notif sec */

  .phone-display-wrapper {
    height: 500px;
  }

  .full-width-container {
    padding: 10px 0;
  }

  .main-phone-image {
    width: 320px;
  }

  .flanking-image {
    width: 200px;
  }


  /* When scrolled into view */
  .flanking-image.in-view {
    opacity: 1;
    /* transform: translateX(0px) rotate(0); */
  }

  .flanking-image.left-side {
    /* transform: translateX(-100px) rotate(-5deg); */
    top: 10%;
    left: -7%;
    opacity: 1;
  }

  .flanking-image.right-side {
    /* transform: translateX(100px) rotate(5deg); */
    right: 2%;
  }

  .heading {
    font-size: 30px;
  }

  .boxed-container {

    gap: 30px;
  }

  .counter-number-wrapper {
    font-size: 2.5rem;
  }

  .counter-number {
    font-size: 2.5rem;
  }

  .scroll-phone-display {
    display: flex;
    flex-direction: column;
  }

  .Get-started {
    padding: 30px 20px;
  }

}

                  /* ---------------------smartsuppp css ---------------------------*/


.main {
    padding: 30px;
    background: #f4f4f4;
    min-height: 400px;
}
footer {
    background: #35424a;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
.smartsupp-btn {
    display: inline-block;
    background: #e8491d;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
}