:root {
  --accent: #1a61b2;
  --accent-600: #1a61b2;
  --dark: #071133;
  --muted: #6b7280;
  --bg: #f8fafc;
  --card: #ffffff;
  --container-max: 1200px;
  --radius: 12px;
  --glass: rgba(255, 255, 255, 0.75);
  --gradient: linear-gradient(135deg, var(--accent), #6c4cff);
  --ease: cubic-bezier(.2, .9, .2, 1);
  --shadow-1: 0 10px 30px rgba(2, 6, 23, .06);
  --shadow-2: 0 14px 40px rgba(2, 6, 23, .08);
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9ff;
  color: #333;
  overflow-x: hidden;
}
  .hamburgerBtn{
      border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 3px 8px;
     display: none;
    }
    .navMenuMobile{
      display: none;
    }

/* ===== NAVBAR ===== */
/* nav {
      position: fixed; top:0; width:100%; display:flex; justify-content:space-between; align-items:center;
      padding:15px 50px; background: rgba(255,255,255,0.9); backdrop-filter: blur(12px);
      box-shadow: 0 2px 10px rgba(0,0,0,0.1); z-index:1000;
    }
    nav .logo { font-size:1.7em; font-weight:700; color:#007bff; cursor:pointer; }
    nav ul { list-style:none; display:flex; gap:30px; }
    nav ul li a { text-decoration:none; color:#333; font-weight:500; transition:color 0.3s ease; }
    nav ul li a:hover { color:#007bff; } */

/* Navbar container */
/* Navbar container */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px;
  z-index: 999;
}

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

nav .logo span {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a61b2;
}

/* Nav links */
nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 10px;
  transition: all 0.3s ease;
}

/* Hover effect */
nav ul li a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #1a61b2;
  margin-top: 4px;
  transition: width 0.3s ease;
}

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

nav ul li a:hover {
  color: #1a61b2;
  transform: translateY(-2px);
}

/* Dropdown */
.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  min-width: 180px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

.has-dropdown:hover .dropdown {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.dropdown a {
  padding: 12px 18px;
  color: #333;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.dropdown a:hover {
  background: #f3f7ff;
  color: #1a61b2;
  padding-left: 24px;
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #1a61b2;
  cursor: pointer;
}

@media(max-width: 850px) {
  nav ul {
    position: absolute;
    top: 70px;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    background: white;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  nav ul.active {
    max-height: 300px;
    padding: 20px 0;
  }

  .menu-toggle {
    display: block;
  }

  /* Mobile dropdown inside menu */
  .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    display: none;
    transform: none;
    box-shadow: none;
  }

  .has-dropdown.active .dropdown {
    display: flex;
  }
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 80px;
  background: linear-gradient(135deg, #f9f9ff 0%, #ffffff 100%);
}

.hero-text {
  max-width: 600px;
  animation: fadeInUp 1.3s ease;
}

.hero-text h1 {
  font-size: 3.5em;
  color: #1a61b2;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1em;
  color: #555;
  margin: 20px 0 30px;
  line-height: 1.6;
}

.hero-text button {
  background: #1a61b2;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 14px 30px;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-text button:hover {
  background: #1a61b2;
  transform: translateY(-4px);
}

.store-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  /* border: 2px solid #eff1f3; */
  border-radius: 12px;
  padding: 1px 1px;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.15);
  transition: all 0.3s ease;
}

/* .store-btn:hover {
  background: #060506; 
  transform: translateY(-3px);
} */
.store-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.25);
  border-color: #1a61b2;
}

/* .store-btn:hover img {
  filter: brightness(0) invert(1);
} */

.store-btn img {
  height: 40px;
  width: auto;
  display: block;
  transition: filter 0.3s ease;
}


.hero-video {
  width: 600px;
  height: 70vh;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(254, 253, 253, 0.1);
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}



/* ===== SECTIONS ===== */
section {
  padding: 100px 80px;
  text-align: center;
}

section h2 {
  font-size: 2.6em;
  color: #1a61b2;
  margin-bottom: 20px;
}

section p {
  color: #666;
  font-size: 1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.feature {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
  text-align: left;
}

.feature img {
  width: 50px;
  margin-bottom: 15px;
}

.feature h3 {
  margin-bottom: 10px;
  color: #333;
}

.feature p {
  color: #555;
  font-size: 0.95em;
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
}

.testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial h4 {
  color: #1a61b2;
  margin-bottom: 10px;
}

.testimonial p {
  font-size: 0.95em;
  color: #555;
}

/* ===== CONTACT ===== */
.contact-form {
  max-width: 600px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1em;
}

.contact-form button {
  padding: 12px;
  background: #1a61b2;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #1a61b2;
}

/* ===== FOOTER ===== */
/* footer { background:#007bff; color:#fff; text-align:center; padding:25px; margin-top:100px; } */

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .hero {
    flex-direction: column;
    padding: 100px 20px;
    text-align: center;
  }

  .hero-video {
    width: 80%;
    margin-top: 40px;
  }

  nav {
    padding: 15px 20px;
  }

  .feature {
    text-align: center;
  }
}

/* Footer */
footer {
  background-color: #333;
  background: var(--dark);
  color: #cbd5e1;
  padding: 36px 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  max-width: var(--container-max);
  margin: 0 auto
}

footer a {
  color: #cbd5e1;
  display: block;
  margin: 6px 0
}

/* Back to top */
.backtop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(11, 99, 255, .18);
  cursor: pointer;
  z-index: 1400;
  opacity: 0;
  transform: translateY(8px) scale(.98);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}

.backtop.show {
  opacity: 1;
  transform: translateY(0) scale(1)
}

a {
  text-decoration: none;
  text-align: left;
}

/* Footer links hover effect */
footer a {
  color: #e9ecf0;
  /* Default link color */
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

footer a:hover {
  color: #1a61b2;
  /* Change color on hover */
  transform: translateX(5px);
  /* Optional slight slide effect */
}

.piaddress p {

  letter-spacing: -.5px;
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  margin: 0 0;
  color: #ffff;
}

footer h4 {
  margin-bottom: 15px; /* space below the h4 */
}

hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 20px;
  /* translucent white */
}

/* app screens */
.app-showcase {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  padding: 100px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.app-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 80px; /* more breathing room */
  max-width: 1200px;
  width: 100%;
}

.app-text {
  flex: 1 1 450px;
  max-width: 500px;
  z-index: 1;
}

.app-text h2 {
  font-size: 2.5rem;
  color: #071133;
  margin-bottom: 20px;
}

.app-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  background: #1a61b2;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background: #1a61b2;
  transform: translateY(-3px);
}

/* --- IMAGE SECTION --- */
.app-images {
  flex: 1 1 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  max-width: 500px;
}

.app-screen {
  width: 180px;
  border-radius: 30px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
  position: absolute;
}

/* Position screens neatly with slight rotation */
.screen1 {
  transform: rotate(-15deg) translateX(-120px);
  animation: float1 4s ease-in-out infinite;
}

.screen2 {
  z-index: 2;
  transform: scale(1.05);
  animation: float2 5s ease-in-out infinite;
}

.screen3 {
  transform: rotate(15deg) translateX(120px);
  animation: float3 4.5s ease-in-out infinite;
}

/* Floating Animations */
@keyframes float1 {
  0%, 100% { transform: rotate(-15deg) translateX(-120px) translateY(0); }
  50% { transform: rotate(-15deg) translateX(-120px) translateY(-10px); }
}

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

@keyframes float3 {
  0%, 100% { transform: rotate(15deg) translateX(120px) translateY(0); }
  50% { transform: rotate(15deg) translateX(120px) translateY(-10px); }
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 1024px) {
  .app-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .app-images {
    margin-bottom: 60px;
    min-height: auto;
  }

  .app-screen {
    position: relative;
    transform: none !important;
    animation: none;
    width: 160px;
    margin: 0 10px;
  }

  .app-images {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
}
/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 768px) {
  .app-showcase {
    padding: 60px 5%;
  }

  .app-text h2 {
    font-size: 1.8rem;
  }

  .app-text p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .store-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .store-btn img {
    width: 130px;
    height: auto;
  }

  .app-images {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
  }

  .app-screen {
    width: 120px;
    border-radius: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  }

  /* Stack elements neatly */
  .app-container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
    text-align: center;
  }
}

/* Extra small screens (phones under 480px) */
@media (max-width: 480px) {
  .app-showcase {
    padding: 50px 4%;
  }

  .app-text h2 {
    font-size: 1.5rem;
  }

  .app-text p {
    font-size: 0.95rem;
  }

  .store-btn img {
    width: 110px;
  }

  .app-screen {
    width: 100px;
  }
}


/* about */
/* ===== About Section Styling ===== */
/* ===== About SkillPop Section ===== */
.about-skillpop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 10%;
  background: radial-gradient(circle at top left, #ffffff, #ffffff);
  overflow: hidden;
  gap: 60px;
}

.about-left {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  perspective: 1000px;
}

.about-image-wrapper img {
  width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
  transform: scale(1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image-wrapper img:hover {
  transform: scale(1.05) rotateY(3deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-right {
  flex: 1 1 50%;
  animation: fadeInUp 1s ease forwards;
}

.about-right h2 {
  font-size: 2.5rem;
  color: #071133;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.about-right h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 80px;
  height: 3px;
  background: #f3f4f6;
  border-radius: 2px;
}

.about-right p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  margin-top: 30px;
  margin-bottom: 40px;
  max-width: 550px;
}

/* Learn More hover effect (only for this section) */
.about-learn {
  position: relative;
  color: #071133;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.about-learn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #1a61b2;
  transition: width 0.3s ease;
}

.about-learn:hover {
  color: #1a61b2;
}

.about-learn:hover::after {
  width: 100%;
}

/* Scroll zoom animation */
.zoom-on-scroll {
  transform-origin: center center;
  transition: transform 0.3s ease-out;
}

/* Keyframes */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .about-skillpop {
    flex-direction: column;
    text-align: center;
  }

  .about-right h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-left img {
    max-width: 300px;
  }
}

/* footeer bottom */
.terms {
  display: flex;
  align-items: center;
  justify-content: center; /* use 'flex-start' if you prefer left alignment */
  gap: 8px;
  margin-top: 18px;
  color: #e7ecf2;
  font-size: 0.9rem;
  flex-wrap: wrap; /* prevents overflow on smaller screens */
}

.terms a {
  color: #e2e9f3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms a:hover {
  color: #1a61b2;
}


@media screen and (min-width: 320px) and (max-width: 767px){
/*** Mobile Menu Starts**/
   .hamburgerBtn{
    display: block;
   }
   .navMenuDesktop{
    display: none;
   }
   .navMenuMobile.show {
        display: flex;
        position: absolute;
        background: #ddd;
        z-index: 999999;
        flex-direction: column;
        max-height: none;
                padding: 10px;
}
   .navMenuMobile.show  .has-dropdown .dropdown {
               position: static;
        opacity: 1;
        display: block;
        transform: none;
        box-shadow: none;
        width: 100%;
        text-align: left;
        background: transparent;
        padding-left: 20px;
}

   ul.navMenuMobile.show  li {
    text-align: center;
    padding: 1px 0;
    display: flex;
    flex-flow: column wrap;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
}
   ul.navMenuMobile.show  li a{
    display: block;
   }
 ul.navMenuMobile.show li a::after {
    content: none;
}

/*** Mobile Menu Ends**/



}
