/*

Template 2106 Soft Landing

http://www.tooplate.com/view/2106-soft-landing

*/

  @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400');

  body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    background: #f9f9f9;
  }



  /*---------------------------------------
     TYPOGRAPHY
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: 300;
    line-height: normal;
  }

  h1 {
    font-size: 3em;
  }

  h2 {
    color: #353535;
    font-size: 2em;
  }

  p {
    color: #757575;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
  }

  /* Modern input styling */
.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 15px 15px 15px;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid #ccc;
  outline: none;
  transition: all 0.3s ease;
  background: #f9f9f9;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.form-group textarea {
  resize: none;
  min-height: 100px;
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
}


.preloader {
  opacity: 1;
  transition: opacity 0.6s ease; /* Fade duration */
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none; /* Prevent interaction while fading out */
}


.form-group input:focus,
.form-group textarea:focus {
  border-color: #667eea;
  background: #fff;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 12px;
  font-size: 13px;
  color: #575757;
  background: #fff;
  padding: 0 5px;
}

button {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(90deg, #667eea, #764ba2, #f64f59);
  background-size: 200% 200%;
  box-shadow: 0 8px 20px rgba(102,126,234,0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

button:hover::before {
  left: 125%;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(102,126,234,0.5);
  background-position: 100% 0;
}



  /*---------------------------------------
     GENERAL
  -----------------------------------------*/

  html{
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: #202020;
    text-decoration: none !important;
  }

  a,
  input, button,
  .form-control {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  a:hover, a:active, a:focus {
    color: #29ca8e;
    outline: none;
  }

  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #202020;
  }

  .section-title {
    padding-bottom: 0;
  }

  section {
    position: relative;
    padding: 30px 0;
  }

  #contact,
  footer {
    background: #ffffff;
    text-align: center;
  }

  .overlay {
    background: #5369762a;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #292e4956, #5369766e);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #292e498f, #6cadd37c); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    opacity: 0.6;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .online-form {
    position: relative;
  }

  .online-form .form-control {
    border-color: #f0f0f0;
    display: inline-block;
    vertical-align: top;
    border-radius: 50px;
    box-shadow: none;
    height: 50px;
    margin-right: 0.5em;
    padding-left: 15px;
  }



  .online-form button {
    background: #29ca8e;
    border: 0;
    color: #ffffff;
    position: absolute;
    right: 65%;
    width: 25%;
  }

  .online-form button:hover {
    background: #202020;
    color: #ffffff;
  }



  /*---------------------------------------
     BUTTONS
  -----------------------------------------*/

  .section-btn {
    background: #29ca8e;
    border: 0;
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    padding: 12px 30px;
    transition: 0.5s 0.2s;
  }

  .spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #ddd;
  border-top: 6px solid #222;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* Loading text animation */
.loading-text {
  margin-top: 15px;
  font-size: 16px;
  color: #222;
  font-weight: 500;
  text-align: center;
  animation: blink 3s linear infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}


  .section-btn:hover,
  .section-btn:focus {
    background: #202020;
    color: #ffffff;
  }



  /*---------------------------------------
       PRE LOADER
  -----------------------------------------*/

  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
  }

  .spinner {
    border: 1px solid transparent;
    border-radius: 3px;
    position: relative;
  }

  .spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 1px solid #575757;
    border-top-color: #ffffff;
    animation: spinner .9s linear infinite;
  }





  /*---------------------------------------
      MENU
  -----------------------------------------*/





  .custom-navbar {
    display: flexbox;
    border: none;
    margin-bottom: 0;
    padding: 25px 0;
  }

  .custom-navbar .navbar-brand {
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -1px;
  }

  .top-nav-collapse {
    background: #ffffff;
  }

  .custom-navbar .navbar-nav {
    margin-left: 6em;
  }

  .custom-navbar .nav li a {
    font-size: 16px;
    font-weight: normal;
    color: #f0f0f0;
    padding-right: 22px;
    padding-left: 22px;
  }

  .custom-navbar .nav li a:hover {
    background: transparent;
    color: #29ca8e;
  }

  .custom-navbar .navbar-nav > li > a:hover,
  .custom-navbar .navbar-nav > li > a:focus {
    background-color: transparent;
  }

  .custom-navbar .nav li.active > a {
    background-color: transparent;
    color: #29ca8e;
  }

  .custom-navbar .navbar-toggle {
    border: none;
    padding-top: 10px;
    background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  }

  .custom-navbar .navbar-toggle {
    background-color: transparent;
  }

  .custom-navbar .navbar-toggle .icon-bar {
    background: #29ca8e;
    border-color: transparent;
  }

  @media(min-width:768px) {
    .custom-navbar {
      border-bottom: 0;
      background: 0 0;
    }

    .custom-navbar.top-nav-collapse {
      background: #ffffff;
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
    }

    .top-nav-collapse .navbar-brand {
      color: #252525;
    }

    .top-nav-collapse .nav li a {
      color: #575757;
    }

    .top-nav-collapse .nav .section-btn a {
      color: #ffffff;
    }
  }



  /*---------------------------------------
      HOME
  -----------------------------------------*/

  #home {
    background: url(https://2o3ex5cnx5.ucarecd.net/8c79dfec-2fa9-44d7-bd47-1847f8ab9f47/Back.webp) no-repeat center center;
    background-size: cover;
    vertical-align: middle;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    padding-top: 12em;
    text-align: center;
  }

  #home h1 {
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 40px;
  }

  .home-info {
    margin-top: 7em;
}

.home-info h3 {
    color: #f0f0f0;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 10px 0;
    text-align: left;    /* keep text aligned left */
    margin-left: 10%;    /* push it 30% from the left of container */
}



  /*---------------------------------------
      FEATURE
  -----------------------------------------*/
#feature {
  background: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

/* Tabs */
#feature .nav-tabs {
  border-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

#feature .nav-tabs > li {
  float: none;
}

#feature .nav-tabs > li > a {
  padding: 10px 12px;
  color: #cccccc;
  font-size: 16px;
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: transparent;
}

#feature .nav-tabs > li.active > a,
#feature .nav-tabs > li.active > a:focus,
#feature .nav-tabs > li.active > a:hover {
  color: #202020;
  border-bottom: 3px solid #29ca8e;
}

#feature .nav-tabs > li > a:hover {
  color: #202020;
  border-bottom: 3px solid #29ca8e;
}

/* Tab Content */
#feature .tab-content {
  margin-top: 40px;
}

.tab-pane-item {
  margin-bottom: 25px;
}

.tab-pane-item h2 {
  margin-bottom: 8px;
  font-size: 22px;
}

/* Feature Image */
.feature-image {
  position: relative;
  text-align: center;
  margin-top: 40px;
}

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

/* ------------------------------------
   MOBILE FIXES
------------------------------------- */

@media (max-width: 768px) {

  #feature {
    padding: 60px 0;
  }

  #feature .nav-tabs {
    flex-direction: column;
  }

  #feature .nav-tabs > li > a {
    font-size: 15px;
  }

  .feature-image {
    margin-top: 30px;
  }
}

  /*---------------------------------------
      ABOUT
  -----------------------------------------*/

  #about .col-md-4 {
    margin: 0;
    padding: 0;
  }

  .team-thumb {
    background: #ffffff;
    position: relative;
    overflow: hidden;
  }

  .team-thumb-up:after {
    display: block;
    margin: 0 auto;
    position: absolute;
    top: -15px;
    right: 0;
    left: 0;
    content: "";
    width: 0;
    height: 0;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #ffffff;
  }

  .team-thumb-down:after {
    display: block;
    margin: 0 auto;
    position: absolute;
    bottom: -15px;
    right: 0;
    left: 0;
    content: "";
    width: 0;
    height: 0;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 15px solid #ffffff;
  }

  .team-info {
    position: relative;
    padding: 40px;
  }

  .team-info h2 {margin: 0;}

  .team-info small {
    display: block;
    font-size: 18px;
    margin: 5px 0 10px 0;
  }

  .team-thumb img {
    width: 100%;
  }



  /*---------------------------------------
      TESTIMONIAL
  -----------------------------------------*/

  #testimonials {
  padding: 80px 0;
  background: #f9f9f9;
  overflow: hidden;
  position: relative;
}

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

.section-subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 40px;
}

/* Scrolling wrapper */
.testimonial-scroll {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.scroll-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.testimonial-card {
  flex: 0 0 350px;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testimonial-card .stars {
  color: #f7c948;
  margin-bottom: 10px;
}

.testimonial-card .text {
  font-style: italic;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-card .author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .author-info h4 {
  margin: 0;
  font-size: 1rem;
}

.testimonial-card .author-info span {
  font-size: 0.85rem;
  color: #777;
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Optional: duplicate cards for seamless loop */
.scroll-track::after {
  content: "";
}
.grid-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust min width */
  gap: 40px; /* equal space between boxes (both row + column) */
  justify-content: center;
  align-items: center;
  margin: 50px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-box {
  width: 100%;
  aspect-ratio: 1 / 1; /* perfect square */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.527);
}

:root {
            --primary-color: #4296f7; /* Deep, premium purple */
            --secondary-color: #4296f7; /* Vibrant blue */
            --accent-color: #00F2FE; /* Energetic teal/cyan */
            
            --text-dark: #121029;
            --text-light: #4A5568;
            --text-white: #F7FAFC;
            
            --bg-light: #FFFFFF;
            --bg-offwhite: #F9FAFB;
            --bg-dark: #101b29;
            
            --border-color: #E2E8F0;
            
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            --shadow-glow: 0 0 30px 0 rgba(var(--accent-rgb), 0.5);
            
            --transition-fast: all 0.2s ease-out;
            --transition-main: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            
            /* RGB values for RGBA box shadows */
            --accent-rgb: 0, 242, 254;
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

       
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        h1, h2, h3, h4 {
            font-weight: 200;
            line-height: 1.3;
            color: var(--text-dark);
            letter-spacing: -0.01em;
        }

        h1 { font-size: 3.75rem; font-weight: 800; }
        h2 { font-size: 2.75rem; }
        h3 { font-size: 1.5rem; }
        p { margin-bottom: 1.5rem; }
        
        a { text-decoration: none; color: var(--secondary-color); }
        
        .section {
            padding: 5px 50px;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0 auto 4rem auto;
        }

        .btn {
            display: inline-block;
            text-decoration: none;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition-main);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: #fff;
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: var(--shadow-lg);
        }
        
        .btn-secondary {
            background-color: var(--bg-light);
            color: var(--text-dark);
            border: 2px solid var(--border-color);
            box-shadow: var(--shadow-sm);
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            border-color: var(--text-dark);
            box-shadow: var(--shadow-md);
        }
        
     
        /* ---
        [5] HOW IT WORKS (PROCESS)
        --- */
        
        .process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    position: relative;
    margin-top: 5px; /* reduced from large default space */
}
        
        /* Animated Connector Lines */
        .process-grid::before {
            content: '';
            position: absolute;
            top: 55px; /* Aligns with middle of icon */
            left: 16.66%; /* (100 / 3) / 2 */
            width: 66.66%; /* 2/3 of total width */
            height: 2px;
            border-top: 0 dashed var(--border-color);
            z-index: -1;
            
            /* Animation */
            width: 0;
            animation: drawLine 1s ease-out forwards;
            animation-delay: 0.5s;
        }
        
        @keyframes drawLine {
            to { width: 66.66%; }
        }

        .process-step {
            padding: 3rem;
            text-align: center;
            position: relative;
            background: var(--bg-light);
        }
        
        .step-number {
            display: grid;
            place-items: center;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--bg-offwhite);
            color: var(--secondary-color);
            font-size: 1.5rem;
            font-weight: 700;
            margin: 1rem auto 1.5rem auto;
            border: 2px solid var(--border-color);
            position: relative;
            z-index: 1;
        }
        
        .process-step h3 {
            margin-bottom: 1rem;
        }
        
        /* ---
        [6] WORKOUT LIBRARY
        --- */
    
        
        .workout-library {
            background-color: var(--bg-dark);
            color: var(--text-white);
        }
        
        .workout-library h2 {
            color: var(--text-white);
        }
        
        .workout-library .section-subtitle {
            color: var(--border-color);
        }
        
        .workout-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        
        .workout-card {
            position: relative;
            height: 350px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition-main);
        }
        
        .workout-card:hover {
            transform: scale(1.05);
            box-shadow: 0 0 35px rgba(var(--accent-rgb), 0.6);
        }
        
        .workout-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .workout-card:hover img {
            transform: scale(1.1);
        }
        
        .workout-card .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top, rgba(18, 16, 41, 0) 0%, rgba(18, 16, 41, 0) 100%);
        }
        
        .workout-card .content {
            position: absolute;
            bottom: 1.5rem;
            left: 1.5rem;
            color: var(--text-white);
        }
        
        .workout-card .content h3 {
            color: var(--text-white);
            font-size: 1.75rem;
            margin: 0;
        }
        
        /* Different sizes for grid */
        .workout-card.wide { grid-column: span 2; }
        .workout-card.tall { height: 450px; }
        .workout-card.small { height: 250px; }

        /* ---
        [7] SMART DEVICES (PARALLAX)
        --- */
        .devices {
            padding: 0;
            height: 600px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .devices-bg {
            background-image: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1400&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Parallax effect */
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }
        
        .devices-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(18, 16, 41, 0.8);
            z-index: -1;
        }
        
        .devices-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 3rem;
        }
        
        .devices-text {
            color: var(--text-white);
        }
        
        .devices-text h2 {
            color: var(--text-white);
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }
        
        .devices-text p {
            font-size: 1.15rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        
        .device-logos img {
            height: 40px;
            margin-right: 2rem;
            opacity: 0.8;
            filter: grayscale(100%) brightness(200%);
        }
        
        .devices-image img {
            width: 100%;
            max-width: 450px;
        }

        /* ---
        [8] STATS (BY THE NUMBERS)
        --- */
        .stats {
            background-color: var(--bg-offwhite);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }
        
        .stat-item {
            background: var(--bg-light);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
        }
        
        .stat-item h3 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .stat-item p {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-light);
            margin: 0;
        }

        /* ---
        [9] PRICING
        --- */
        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .pricing-card {
            background: var(--bg-light);
            border: 2px solid var(--border-color);
            border-radius: 20px;
            padding: 2.5rem;
            transition: var(--transition-main);
            position: relative;
            box-shadow: var(--shadow-md);
        }

        .pricing-card.popular {
            border: 2px solid var(--primary-color);
            transform: scale(1.05);
            z-index: 10;
            /* Glassmorphism highlight */
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: var(--shadow-lg), 0 0 50px rgba(var(--accent-rgb), 0.3);
        }
        
        .popular-badge {
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: #fff;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.05em;
        }

        .pricing-card .plan-name {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .pricing-card .price {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }
        
        .pricing-card .price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-light);
        }
        
        .pricing-card .plan-description {
            font-size: 0.9rem;
            margin-bottom: 2rem;
            height: 40px;
        }
        
        .pricing-card .features-list {
            list-style: none;
            margin: 2rem 0;
        }
        
        .pricing-card .features-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 1rem;
            
            /* Staggered animation class */
            opacity: 0;
            transform: translateX(-10px);
        }
        
        .pricing-card .features-list li::before {
            content: '\f00c'; /* Check */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--accent-color);
            position: absolute;
            left: 0;
            top: 4px;
        }
        
        .pricing-card .btn {
            width: 100%;
            text-align: center;
        }

        /* ---
        [10] TESTIMONIALS
        --- */
        .testimonial-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        
        .testimonial-card {
            background: var(--bg-offwhite);
            padding: 2.5rem;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
        }

        .stars {
            color: #FFC107;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .testimonial-card .text {
            font-size: 1.1rem;
            font-style: italic;
            color: var(--text-dark);
            flex-grow: 1;
        }
        
        .author {
            display: flex;
            align-items: center;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
        }
        
        .author img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            margin-right: 1rem;
        }
        
        .author-info h4 {
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-dark);
            margin: 0;
        }
        
        .author-info span {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* ---
        [11] CTA SECTION
        --- */
        .cta-section {
            background: var(--bg-offwhite);
            padding-bottom: 7rem;
            
        }
        
        .cta-container {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 5rem;
            border-radius: 24px;
            text-align: center;
            color: #fff;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }
        
        /* Subtle glow/pattern on CTA */
        .cta-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgb(67, 149, 255) 0%, rgb(255, 255, 255) 70%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .cta-container > * { position: relative; z-index: 1; } /* Keep content above pattern */
        
        .cta-container h2 {
            color: #fff;
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-container p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 2.5rem auto;
        }
        
        .cta-container .btn {
            background: #fff;
            color: var(--primary-color);
            font-weight: 700;
        }
        
        .cta-container .btn:hover {
            background: var(--bg-offwhite);
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(255,255,255,0.5);
        }

        /* ---
        [12] FOOTER
        --- */
        .footer {
            background: var(--bg-dark);
            color: var(--border-color);
            padding: 6rem 0 3rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }
        
        .footer-col h4 {
            color: #fff;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .footer-col .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--bg-light);
            display: block;
            margin-bottom: 1.5rem;
        }

        .footer-col p {
            font-size: 0.95rem;
            max-width: 300px;
            opacity: 0.8;
        }
        
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 1rem; }
        
        .footer-col a {
            color: var(--text-light);
            transition: var(--transition-fast);
        }
        
        .footer-col a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .footer-col .app-links img {
            height: 40px;
            margin-right: 0.5rem;
            opacity: 0.8;
            transition: var(--transition-fast);
        }
        .footer-col .app-links img:hover {
            opacity: 1;
            transform: scale(1.05);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #3a4454;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* ---
        [13] SCROLL ANIMATIONS
        --- */
        .animate-on-scroll {
            opacity: 0;
            transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), 
                        transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .fade-in-up { transform: translateY(50px); }
        .fade-in-left { transform: translateX(-50px); }
        .fade-in-right { transform: translateX(50px); }
        .zoom-in { transform: scale(0.9); }

        .is-visible {
            opacity: 1;
            transform: translateY(0) translateX(0) scale(1);
        }
        
        /* Staggered children animation */
        .is-visible .stagger-child {
            opacity: 1;
            transform: translateX(0);
        }

        /* ---
        [14] RESPONSIVE
        --- */
        @media (max-width: 1024px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2.5rem; }
            
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero { padding: 12rem 0 5rem; height: auto; min-height: 0; }
            .hero-content { order: 1; }
            .hero-image { order: 2; margin-top: 3rem; }
            .hero-image img { max-width: 400px; }
            .hero p { margin: 0 auto 2.5rem auto; }
            
            .process-grid { grid-template-columns: 1fr; }
            .process-grid::before { display: none; } /* Hide connectors */
            
            .workout-grid { grid-template-columns: 1fr 1fr; }
            .workout-card.wide { grid-column: span 2; }
            
            .devices-content { grid-template-columns: 1fr; text-align: center; }
            .devices-image { display: none; }
            
            .stats-grid { grid-template-columns: 1fr 1fr; }
            .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
            .pricing-card.popular { transform: scale(1.02); }
            
            .testimonial-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        
        @media (max-width: 768px) {
            .nav-links { display: none; } /* Requires JS for hamburger */
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .section { padding: 4rem 0; }
            .hero { padding: 8rem 0 4rem; }
            
            .ecosystem-grid { grid-template-columns: 1fr; }
            .workout-grid { grid-template-columns: 1fr; }
            .workout-card.wide { grid-column: span 1; }
            
            .stats-grid { grid-template-columns: 1fr; }
            
            .cta-container { padding: 3rem 1.5rem; }
            .cta-container h2 { font-size: 2rem; }
            
            .footer-grid { grid-template-columns: 1fr; }
        }


  /* HOVER EFFECT */
  .grid-box:hover {
    box-shadow: 0 0 0 2px #007bff83, 0 4px 15px rgba(0, 0, 0, 0.3);
  transform: scale(1.03);
    cursor: pointer;
  }

  /* RESPONSIVE: tablets */
  @media (max-width: 768px) {
    .grid-box {
      flex: 1 1 45%; /* 2 per row */
      margin-bottom: 20px;
    }
  }

  /* RESPONSIVE: mobile */
  @media (max-width: 600px) {
  .grid-row {
    grid-template-columns: repeat(auto-fit, minmax(clamp(150px, 30vw, 1300px), 1fr));
    gap: 20px;
    padding: 0 10px;
  }

  .grid-box {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.527);
  }
}

   .section-title h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 26px;
    font-weight: bold;
    color: #33333393;
  }


.scroll-container {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  box-sizing: border-box;
}

.scroll-text {
  display: inline-flex;
  gap: 100px; /* spacing between sentences */
  transform: translateX(0); /* start fully visible */
  animation: scrollLeft 20s linear infinite;
}

.scroll-text span {
  white-space: nowrap;
  font-size: 18px;
  color: #333;
}

/* Seamless scroll animation */
@keyframes scrollLeft {
  0% {
    transform: translateX(0); /* start visible immediately */
  }
  100% {
    transform: translateX(-100%); /* move fully to left */
  }
}

/* Responsive */
@media (max-width: 768px) {
  .scroll-text span { font-size: 16px; gap: 50px; }
}
@media (max-width: 480px) {
  .scroll-text span { font-size: 14px; gap: 40px; }
}

  .testimonial-image {
    background: url('https://42dax5uo64.ucarecd.net/9dd530f1-0794-421b-9bbb-7c7d8ab0fc3a/testimonialimage.webp') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 65vh;
  }

  .testimonial-info {
    background: #202020;
    padding: 60px;
    height: 65vh;
  }

  .testimonial-info h3 {
    color: #d9d9d9;
    font-style: italic;
    margin-top: 5px;
  }

  .testimonial-info .item {
    display: block;
    width: 100%;
  }

  .testimonial-item {
    margin: 20px 0;
  }

  .owl-carousel .owl-item img,
  .testimonial-item img,
  .testimonial-item h4 {
    color: #d9d9d9;
    display: inline-block;
    vertical-align: top;
  }

  .owl-carousel .owl-item img,
  .testimonial-item img {
    border: 3px solid #ffffff;
    border-radius: 100px;
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }



  
  /*---------------------------------------
      CONTACT
  -----------------------------------------*/

  #contact-form .col-md-12,
  #contact-form .col-md-4 {
    padding-left: 0;
  }

  #contact-form .form-control {
    background: transparent;
    border: 0;
    border-bottom: 3px solid #f0f0f0;
    border-radius: 0;
    box-shadow: none;
    margin: 10px 0;
  }

  #contact-form .form-control:focus {
    border-bottom-color: #202020;
  }

  #contact-form input {
    height: 50px;
  }

  #contact-form input[type='submit'] {
    background: #202020;
    border-radius: 50px;
    border: 0;
    color: #ffffff;
  }

  #contact-form input[type='submit']:hover {
    background: #29ca8e;
    color: #ffffff;
  }



  /*---------------------------------------
     FOOTER
  -----------------------------------------*/

  footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .copyright-text p {
    margin: 5px;
  }



  /*---------------------------------------
     SOCIAL ICON
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 0;
    
  }

  .social-icon li {

    display:inline-block;
    list-style: none;
    

  }

  .social-icon li a {
    border-radius: 50px;
    
    color: #202020;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    position: relative;
    margin: 5px 5px 5px 0;
    
  }

 

  .social-icon12 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  padding: 20px 0;
}

.social-icon12 li {
  list-style: none;
}

.social-icon12 li a img {
  width: 25px;
  height: 25px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover effect: enlarge + soft glow */
.social-icon12 li a img:hover {
  transform: scale(1.4);
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
}

.social-icon li a img:hover {
  transform: scale(1.4);
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
}

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

  @media only screen and (max-width: 1200px) {

    .custom-navbar .navbar-nav {
      margin-left: 3em;
    }

    .home-info {
      margin-top: 0;
    }
  }


  @media only screen and (max-width: 992px) {

    section {
      padding: 60px 0;
    }

    .custom-navbar .navbar-nav {
      margin-left: 0;
    }

    .custom-navbar .nav li a {
      font-size: 14px;
      padding-right: 15px;
      padding-left: 15px;
    }

    #feature .nav-tabs>li>a {
      font-size: 16px;
      margin-right: 20px;
    }

    .feature-image {
      bottom: -24em;
    }

    .pricing-thumb {
      margin-bottom: 30px;
    }

    footer {
      padding-bottom: 40px;
    }
  }





  @media screen and (max-width: 767px) {

    .section-title {
      padding-bottom: 0px;

    }


    .custom-navbar .navbar-toggle .icon-bar {
  width: 40px;   /* wider */
  height: 2px;   /* thicker */
}


    .custom-navbar .navbar-header {
    display: flex !important;
    align-items: center !important;
    width: 100%;
    gap: 12px;
    background: #ffffff !important;
  }

    .custom-navbar {
      display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 15px !important;
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1) !important;
    text-align: left !important;
    background: #ffffff !important;
    }



    .custom-navbar .nav li a {
      line-height: normal;
      padding: 5px;
      background: #ffffff !important;
    }

    .custom-navbar .navbar-toggle {
    margin: 0;       /* keep toggle aligned */
    background: #ffffff !important;
  }

    .custom-navbar .navbar-brand,
    .top-nav-collapse .navbar-brand {
      color: #202020;
      font-weight: normal;
      color: #202020;

    font-size: 20px; /* adjust if too big */
    margin: 0;       /* remove extra margin */
    }

    .custom-navbar .nav li a,
    .top-nav-collapse .nav li a {
      color: #656565;
    }

    .feature-image {
      position: relative;
      bottom: 0;
    }

    #about .col-md-4:nth-child(3n) .team-thumb {
      display: flex;
      -webkit-box-orient: vertical;
      flex-direction: column-reverse;
      -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
    }

    .team-thumb-down:after {
      top: -15px;
      bottom: inherit;
      border-top: inherit;
      border-bottom: 15px solid #ffffff;
    }

    .testimonial-image,
    .testimonial-info {
      height: 85vh;
    }

    .testimonial-info {
      padding: 30px;
    }
  }


  @media screen and (max-width: 280px) {

    .online-form input[type="email"],
    .online-form .form-control {
      width: 25%;
    }



    .online-form .form-control {
      display: block;
      margin: 20px auto;
    }

    .online-form button {
      position: relative;
      right: 0;
    }

    .testimonial-image,
    .testimonial-info {
      height: 65vh;
    }
  }

 