/* ------------------------------------------------------------
   Root Variables
------------------------------------------------------------ */
:root {
  --bg: #f7fafc;
  --card: #ffffff;
  --muted: #6b7280;
  --accent: #6b8bff;
  --accent-2: #8be3c7;
  --radius: 14px;
  --max-width: 1100px;

}

/* ------------------------------------------------------------
   Global Reset & Base Styles
------------------------------------------------------------ */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}

.logo {
  width: 100px;   
  height: auto;
  
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  color: #111827;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

main {
  flex: 1;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem;
}

.section-team {
  margin-top: -20px ;
}
.section-features  {
  margin-top: -20px ;
}

.section-terms {
  margin-top: -20px ;
}

.section-contact {
  margin-top: -70px ;
}

.reveal,
[data-reveal] {
  opacity: 0;
  transform: translateY(30px); 
  filter: blur(6px); 
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out,
    filter 0.8s ease-out;
}
.latest-jobs-card[data-reveal] {
  transform: translateX(40px);
}

.latest-jobs-card.is-visible {
  transform: translateX(0);
}

.reveal.visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}



/* ------------------------------------------------------------
   Header / Navbar
------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}
.site-header.transparent {
    background: transparent ;
    backdrop-filter: none ;
    border-bottom: none ;
}

.home-page .site-header {
  position: fixed;   
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.home-page .site-header.transparent .site-nav a {
    color: rgb(162, 181, 194) ;   
}

.home-page .site-header.transparent .site-nav a:hover {
    color: #ffffff ;                     
    background: rgba(255, 255, 255, 0.20) ; 
    backdrop-filter: blur(6px);                    
}
.home-page .site-header.transparent .site-nav a.active {
    color: #ffffff t;
    background: rgba(255, 255, 255, 0.28) ;
    border-radius: 8px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: Poppins, Inter;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  text-decoration: none;
}

.site-nav ul {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  padding: 0.6rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--muted);
  transition: all 0.18s;
}

.site-nav a:hover {
  color: #0f172a;
  background: rgba(107, 140, 255, 0.08);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
}

.hamburger {
  width: 22px;
  height: 2px;
  background: var(--muted);
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--muted);
}
.hamburger::before {
  top: -7px;
}
.hamburger::after {
  bottom: -7px;
}

/* ------------------------------------------------------------
   Hero Section
------------------------------------------------------------ */
.hero-video-bg {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    perspective: 1200px;
    overflow: hidden;
    
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: transform 0.2s ease-out;
    will-change: transform;
}

.hero-video-bg.parallax-scroll .bg-video {
    transform: translate(-50%, calc(-50% + var(--scrollOffset))) scale(1.05);
}
.video-overlay,
.hero-video-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.video-overlay {
    background: rgba(0, 0, 0, 0.430);
}

.hero-video-bg::after {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.1) 25%,
        rgba(0,0,0,0.3) 85%,
        rgba(0,0,0,0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 850px;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1.2s ease-out forwards;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    will-change: opacity, transform;
    text-align: center ;
    align-items: center;
    margin: 0 auto;
}
.hero-content.scrolled {
    opacity: 0;
    transform: translateY(-30px);
}

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

/* Titles */
.hero-content h1 {
    font-size: 4.6rem !important;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.4rem;
    color: #ffffff;
    text-shadow: 0 4px 28px rgba(0,0,0,0.45);
}

.hero-content .typing-text {
    font-size: 4.4rem !important;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #9ab0ff !important;
    text-shadow: 0 4px 28px rgba(0,0,0,0.45);
}

/* Paragraph */
.hero-content p.lead {
    font-size: 1.32rem !important;
    line-height: 1.7;
    max-width: 650px;
    margin: 14px 0 34px;
    color: rgba(255,255,255,0.88);
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    text-align: center ;
    margin-left: auto ;
    margin-right: auto
}


.hero-content .input-group {
    max-width: 600px;
    height: 68px;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 45px rgba(0,0,0,0.28);
    margin-left: auto;
    margin-right: auto;
}

.hero-content .input-group input {
    font-size: 1.15rem !important;
    padding: 0 24px !important;
    color: #111;
}

.hero-content .input-group button {
    padding: 0 32px !important;
    background: linear-gradient(90deg, #6c79ff, #4e5fff) !important;
}

.hero-content .input-group button svg {
    width: 28px !important;
    height: 28px !important;
    stroke: white !important;
}


.lead {
  color: var(--muted);
  margin-bottom: 1.25rem;
}



/* Buttons */
.btn {
  display: inline-block;
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.18s, box-shadow 0.18s;
  border: none;
}

.btn.primary {
  color: white;
  background: linear-gradient(90deg, var(--accent), #7a9bff);
  box-shadow: 0 6px 18px rgba(107, 140, 255, 0.14);
  
}

.btn.ghost {
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--muted);
  background: transparent;
}

.btn:hover {
  transform: translateY(-3px);
}


/* ------------------------------------------------------------
   Home
------------------------------------------------------------ */


.typing-text {
    color: var(--accent); 
    font-weight: 700;
    border-right: 3px solid #007bff; 
    animation: blink-caret 0.75s step-end infinite;
    display: inline-block; 
}
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #007bff; }
}

.input-group {
    margin-top:40px ;
    display: flex;
    max-width: 400px; 
    margin-bottom: 0.5rem;
    border: 1px solid rgba(15,23,42,0.1);
    border-radius: 50px;
    background: var(--card);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(2,6,23,0.05);
}

.input-group input {
    flex-grow: 1;
    border: none;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.input-group button {
    background: var(--accent); 
    border: none;
    color: white;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
}

.input-group button:hover {
    background: #4868db; 
}

.input-group button svg {
    display: block;
    width: 24px;
    height: 24px;
}

.waitlist-arrow {
    animation: arrow-wiggle 1s ease-in-out infinite;
    transform-origin: center;
}

@keyframes arrow-wiggle {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(4px); }
    100% { transform: translateX(0); }
}




.latest-jobs-card {
  margin-top: 25px;
  margin-left: 0px;
  width: 400px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0px 4px 18px rgba(0,0,0,0.08);
  font-family: 'Inter', sans-serif;
  animation: fadeInUp 0.6s ease-in-out;
}

.jobs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.jobs-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.updated-text {
  font-size: 12px;
  color: #5a5a5a;
}


.job-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  animation: fadeIn 0.6s ease forwards;
}

.job-item:last-child {
  border-bottom: none;
}


.job-info h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.job-info p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #666;
}


.job-meta {
  text-align: right;
}

.price {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}


.apply-btn {
  background: var(--accent);
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
}

.apply-btn:hover {
  background: #4868db;
}

.jobs-footer {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer-btn {
  flex: 1;
  border: 1px solid #ccc;
  background: #fff;
  padding: 8px 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}

.footer-btn:hover {
  background: #f0f0f0;
}

@keyframes fadeInUp {
  from { transform: translateY(15px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.section{
  padding:32px 0
}
.section-title{
  font-family:'Poppins',sans-serif;
  font-weight:700;
  display:inline-block;
  background:var(--accent);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  font-size:20px
}

.section-sub{
  margin-top:6px
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.features-grid .feature-card:nth-child(4) {
  grid-column: 2;
}
/* Key Features – smooth hover like How it works */
.feature-card {
  transition: transform 0.25s ease, 
              box-shadow 0.25s ease, 
              background 0.25s ease;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

/* Hover effect identical to .step:hover */
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  background: linear-gradient(180deg, #ffffff, #eef2ff);
}

.feature-card:hover .feature-icon img {
  transform: scale(1.05);
  transition: transform 0.25s ease;
}

.feature-icon {
  width: 50px;         
  height: 50px;
  margin-bottom: 12px;  
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width:980px){
  .features-grid{grid-template-columns:repeat(2,1fr)}
  .widgets-grid-wrapper {
    grid-template-columns: 1fr; 
    gap: 1.5rem;
  }
}
@media (max-width:560px){
  .features-grid{grid-template-columns:1fr}
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 18px;
  margin-top: 24px;
  max-width: 500px; 
  
  
  margin-left: auto;
  margin-right: auto;
}

.step {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 36, 0.03);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  text-align: left;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  background: linear-gradient(180deg, #ffffff, #eef2ff);
  
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  margin-bottom: 8px;
  box-shadow: 0 6px 16px rgba(107, 139, 255, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}


.step:hover .step-num {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 24px rgba(107, 139, 255, 0.5);
}


@media (max-width:980px){
  .steps-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:560px){
  .step{padding:14px}
  .steps-grid{grid-template-columns:1fr}
}

.widgets-grid-wrapper1 {
  padding: 60px 2rem 40px;
}
.how-layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
  max-width: 500px;
}
@media (max-width: 980px) {
  .how-layout {
    flex-direction: column;
    align-items: center;
  }
}
.widgets-grid-wrapper #features {
    padding-top: 0;
    padding-bottom: 0;
}
.cta-section{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px;
  border-radius:12px;
  margin-top:18px;
  background:linear-gradient(90deg,#f8fafc,#f1f5f9);
  border:1px solid rgba(15,23,36,0.03)
}
.cta-actions{
  display:flex;
  gap:10px
}

.stats-section {
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.progress {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 10px;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  border-radius: 999px;
  transition: width 1.5s ease-out;
}


@media (max-width: 720px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
.waitlist-fade {
  opacity: 1;
  transition: opacity 0.8s ease;
}

.waitlist-fade.hide {
  opacity: 0;
}

#waitlistStatus {
  font-size: 1.1rem;
  margin-left: 150px;
  min-height: 20px; 
  display: flex;    
  align-items: center;
  transition: opacity 0.4s ease;
}



/* ------------------------------------------------------------
   Generic Sections / Cards
------------------------------------------------------------ */
.section {
  padding: 3rem 0;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}
.home-page .section-title {
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.home-page .section-sub,
.home-page p.section-sub,
.home-page .section-subtitle,
.home-page p.section-subtitle {
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.section.how {
  background: #f5f7fb;
  padding: 3.5rem 0 4.5rem;
}

.section.how .section-title {
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
}

.how-intro {
  max-width: 640px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.card,
.feature-card,
.team-card,
.mockup,
.screenshot,
.screenshot-link {
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.28s;
}

/* Card */
.card {
  padding: 1.25rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.04);
}

/* Add a touch more vertical spacing between stacked cards on the Terms page */
main#main .card {
  margin-bottom: 1.25rem;
}

.card:hover,
.feature-card:hover,
.team-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.08);
}

.card.step {
  padding: 1.5rem 1.75rem;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.step-list {
  margin-top: 1.2rem;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  counter-reset: step-counter;
}

.step-list li {
  position: relative;
  padding-left: 2.4rem;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

.step-list li::befor {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(107, 140, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(107, 140, 255, 0.08);
}

.step-list li strong {
  font-weight: 600;
  color: #111827;
}

.feature-card {
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  background: var(--card);
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.04);
  margin-top: 20px;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Screenshots */
.screens-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.screenshot {
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
}
.screenshot-link:hover .screenshot,
.screenshot:hover {
  transform: scale(1.035) translateY(-6px);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.08);
}

/* ------------------------------------------------------------
   Team Cards
------------------------------------------------------------ */
.team-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
}

.team-card {
  background: #eef2ff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.36s, box-shadow 0.36s;
}

.team-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.45s, filter 0.36s;
}
.img-frame {
    border: 0.5px solid #eef2ff;
    border-radius: var(--radius);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: var(--card);
  }

.team-card:hover {
  transform: translateY(-10px) scale(1.02) rotateX(4deg) rotateY(-2deg);
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.12);
}

.team-card h4,
.team-card p {
  transform: translateY(8px);
  opacity: 0.92;
  transition: transform 0.32s, opacity 0.32s;
}

.team-card:hover h4,
.team-card:hover p {
  transform: translateY(0);
  opacity: 1;
}

/* Team card social icons */
.team-social{
  display:flex;
  gap:1rem;
  justify-content:center;
  align-items:center;
  padding:0.75rem 0 1rem;
}
.team-social .social-link{
  display:inline-flex;
  width:40px;
  height:40px;
  border-radius:10px;
  align-items:center;
  justify-content:center;
  background: rgba(15,23,42,0.03);
  transition: transform 0.18s, background 0.18s, box-shadow 0.18s;
}
.team-social .social-link img{
  width:40px;
  height:40px;
  display:block;
}
.team-social .social-link:hover{
  transform: translateY(-4px);
  background: rgba(107,140,255,0.08);
  box-shadow: 0 8px 20px rgba(107,140,255,0.06);
}


/* ------------------------------------------------------------
   Contact Section Layout
------------------------------------------------------------ */

.section-contact {
  padding: 4rem 0;
}

.section-title-reveal {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

/* Main Grid (Perfect Alignment) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Cards */
.card {
  background: var(--card);
  padding: 1.6rem;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

/* Contact Info */
.contact-info h4 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.meta {
  padding: 0;
  list-style: none;
  margin: 1rem 0 1.5rem;
}
.meta li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Support Box */
.contact-box {
  background: linear-gradient(90deg, rgba(107,140,255,0.06), rgba(139,227,199,0.05));
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1.2rem;
}

/* Map */
.map-embed {
  margin-top: 1.2rem;
  border-radius: 10px;
  overflow: hidden;
}
.map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

/* Subtitle */
.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0.5rem auto 1.5rem;
  line-height: 1.5;
}

/* Highlight Box */
.contact-highlight {
  text-align: center;
  background: linear-gradient(90deg, rgba(107,140,255,0.08), rgba(139,227,199,0.06));
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: var(--muted);
  max-width: 650px;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 4px 12px rgba(2,6,23,0.05);
}


/* ------------------------------------------------------------
   Form Styling
------------------------------------------------------------ */

.contact-form label {
  display: block;
  margin-bottom: 1rem;
}

.contact-form span {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  font-size: 0.95rem;
  background: var(--card);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.contact-form textarea {
  min-height: 140px;
}

.form-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.form-status {
  font-size: 0.95rem;
  color: var(--muted);
}

/* Form status colors */
.form-status.error {
  color: #e11d48;
}
.form-status.success {
  color: green;
}

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

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .map-embed iframe {
    height: 240px;
  }
}

/* ------------------------------------------------------------
   Footer
------------------------------------------------------------ */
.site-footer {
  padding: 1.25rem 0;
  color: var(--card);
  background: linear-gradient(180deg, #0f172a, #091022);
}

.footer-inner {
  max-width: var(--max-width);
  padding: 1rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-inner p {
  margin: 0;
}
.footer-inner nav a {
  margin-left: 0.8rem;
  text-decoration: none;
  color: rgba(230, 238, 252, 0.85);
}

.social {
  display: flex;
  gap: 0.5rem;
}
.social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.18s, background 0.18s;
}
.social a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.09);
}

/* ------------------------------------------------------------
   Back to Top
------------------------------------------------------------ */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
  border: 0;
  background: var(--accent);
  color: white;
  display: none;
  box-shadow: 0 10px 20px rgba(107, 140, 255, 0.14);
}

/* ------------------------------------------------------------
   Responsive
------------------------------------------------------------ */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .split,
  .steps-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    padding: 1rem;
  }

  /* Mobile nav */
  .site-nav {
    display: none;
    position: fixed;
    inset: 70px 16px auto 16px;
    background: var(--card);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.08);
  }
  .site-nav.open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
  }

  .nav-toggle {
    display: block;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}


/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    transform: none !important;
  }
}
/* ------------------------------------------------------------
   ABOUT PAGE
*/





/* ------------------------------------------------------------
   FEATURE PAGE — UPGRADED PROFESSIONAL UI
------------------------------------------------------------ */

/* GENERAL */
.section {
  padding: 32px 0;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: -0.5px;
  color: #1a1a1a;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* GRID BASE */
.features-grid,
.routine-grid,
.main-features-grid,
.barriers-grid {
  display: grid;
  gap: 28px;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

/* UNIVERSAL CARD STYLE */
.feature-card,
.routine-card,
.main-feature-card,
.barrier-card {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.25s ease,
              box-shadow 0.25s ease,      
}

.feature-card h4,
.routine-card h4,
.main-feature-card h4,
.barrier-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.feature-card p,
.routine-card p,
.main-feature-card p,
.barrier-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

/* HOVER EFFECT (smooth premium-style) */
.feature-card:hover,
.routine-card:hover,
.main-feature-card:hover,
.barrier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
  border-color: whitesmoke;
  background: linear-gradient(180deg, #ffffff, #eef2ff);
}

/* ROUTINE KILLERS GRID */
.routine-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* MAIN KEY FEATURES */
.main-features-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.main-feature-card {
  border-left: 5px solid whitesmoke;
}

/* REMOVING BARRIERS */
.barriers-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.15, 0.85, 0.35, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .feature-card,
  .routine-card,
  .main-feature-card,
  .barrier-card {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 28px;
  }
}
/* ------------------------------------------------------------
   🔥 FEATURE PAGE — PREMIUM ANIMATION UPGRADE PACK (ADD ONLY)
------------------------------------------------------------ */

/* Smooth Stagger Reveal */
.feature-card:nth-child(1),
.routine-card:nth-child(1),           
.main-feature-card:nth-child(1),      
.barrier-card:nth-child(1) {   
  transition-delay: 0.1s;
}


.feature-card:nth-child(2),
.routine-card:nth-child(2),           
.main-feature-card:nth-child(2),      
.barrier-card:nth-child(2) {        
  transition-delay: 0.2s;
}


.feature-card:nth-child(3),
.routine-card:nth-child(3),          
.main-feature-card:nth-child(3),      
.barrier-card:nth-child(3) {          
  transition-delay: 0.3s;
}


.feature-card:nth-child(4),
.routine-card:nth-child(4),           
.main-feature-card:nth-child(4),      
.barrier-card:nth-child(4) {          
  transition-delay: 0.4s;
}


.feature-card:nth-child(5),
.routine-card:nth-child(5),           
.main-feature-card:nth-child(5),      
.barrier-card:nth-child(5) {          
  transition-delay: 0.5s;
}


.feature-card:nth-child(6),
.routine-card:nth-child(6),           
.main-feature-card:nth-child(6),      
.barrier-card:nth-child(6) {          
  transition-delay: 0.6s;
}


/* Floating Animation (modern gentle drift) */
.feature-card,
.routine-card,
.main-feature-card,
.barrier-card {
  animation: floatCard 7s ease-in-out infinite;
  transform-style: preserve-3d;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Gradient Shine */
.feature-card,
.routine-card,
.main-feature-card,
.barrier-card {
  position: relative;
  overflow: hidden;
}
.feature-card::after,
.routine-card::after,
.main-feature-card::after,
.barrier-card::after {
  content: '';
  position: absolute;
  top: -120%;
  left: -40%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.4) 50%,
    transparent 100%
  );
  opacity: 0;
  transform: rotate(25deg);
  transition: opacity 0.3s;
  pointer-events: none;
}
.feature-card:hover::after,
.routine-card:hover::after,
.main-feature-card:hover::after,
.barrier-card:hover::after {
  opacity: 1;
  animation: shineMove 0.9s forwards;
}
@keyframes shineMove {
  0% { transform: translate(-120%, -120%) rotate(25deg); }
  100% { transform: translate(120%, 120%) rotate(25deg); }
}

/* Icon/Text Glow Pulse */
.feature-card:hover h4,
.routine-card:hover h4,
.main-feature-card:hover h4,
.barrier-card:hover h4 {
  animation: pulseGlow 1.4s ease-out infinite;
}
@keyframes pulseGlow {
  0% { text-shadow: 0 0 0 rgba(107,139,255,0.0); }
  50% { text-shadow: 0 0 12px rgba(107,139,255,0.4); }
  100% { text-shadow: 0 0 0 rgba(107,139,255,0.0); }
}

/* Elastic Hover Bounce */
.feature-card:hover,
.routine-card:hover,
.main-feature-card:hover,
.barrier-card:hover {
  transform: translateY(-10px) scale(1.03);
  transition-timing-function: cubic-bezier(0.22, 1.25, 0.32, 1);
}

/* Smooth Reveal Upgrade */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  filter: blur(6px);
  transition: all 0.9s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* 3D Tilt Parallax Support */
.feature-card,
.routine-card,
.main-feature-card,
.barrier-card {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

 /*Core Features layout – Center second row*/
.section-features .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}


.section-features .feature-card {
  flex: 0 1 320px;
}

/*Routine killer layout - Center secound row*/
.section.routine .routine-grid {
  display: flex;              
  flex-wrap: wrap;            
  gap: 28px;                  
  justify-content: center; 
}

.section.routine .routine-card {
  flex: 0 1 320px;            
}

/*Removing Barriers layout - Center second row */
.section.barriers .barriers-grid {
  display: flex;              
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;   
}

.section.barriers .barrier-card {
  flex: 0 1 320px;            
}


    /* decorative blobs */
   .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(36px);
      opacity: 0.8;
      pointer-events: none;
      animation: floaty 6s ease-in-out infinite;
    }

    .blob.b1 {
      width: 360px; height: 360px;
      background: radial-gradient(circle at 30% 30%, rgba(107,140,255,0.95), rgba(107,140,255,0.6) 40%, transparent 70%);
      left: -60px; top: -80px;
    }
    .blob.b2 {
      width: 300px; height: 300px;
      background: radial-gradient(circle at 60% 40%, rgba(139,227,199,0.9), rgba(139,227,199,0.5) 45%, transparent 75%);
      right: -40px; top: -50px;
      animation-duration: 10s; animation-delay: .6s;
    }
    .blob.b3 {
      width: 220px; height: 220px;
      background: linear-gradient(135deg, rgba(107,140,255,0.6), rgba(139,227,199,0.6));
      left: 10%; bottom: -80px;
      filter: blur(40px); opacity: 0.5;
      animation-duration: 12s; animation-delay: .9s;
    }

    @keyframes floaty {
        0% {
          transform: translate(0px, 0px) scale(1);
        }
        50% {
          transform: translate(60px, -80px) scale(1.15);
        }
        100% {
          transform: translate(0px, 0px) scale(1);
        }
      }


      /*  use this for add moving bubbles  */

        /*
          <div class="blob b1"></div>
          <div class="blob b2"></div>
          <div class="blob b3"></div>
          
        */