 /* --- Color Variables & Theming --- */
 :root {
     --bg-dark: #050505;
     --bg-card: #121214;
     --text-light: #ffffff;
     --text-muted: #94a3b8;
     --color-cyan: #40C4FF;
     --color-green: #69F0AE;
 }

 html,
 body {
     overflow-x: hidden;
     width: 100%;
     position: relative;
 }

 body {
     background-color: var(--bg-dark);
     color: var(--text-light);
     font-family: 'Andika', sans-serif;
     -webkit-font-smoothing: antialiased;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 .fw-bold {
     font-weight: 700 !important;
     letter-spacing: -0.02em;
 }

 /* --- Custom Gradients --- */
 .text-gradient {
     background: linear-gradient(135deg, var(--color-green), var(--color-cyan));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     display: inline-block;
 }

 .bg-gradient-custom {
     background: linear-gradient(135deg, var(--color-green), var(--color-cyan));
     color: #000 !important;
     border: none;
     font-weight: 700;
     transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .bg-gradient-custom:hover {
     transform: translateY(-4px);
     box-shadow: 0 10px 25px rgba(64, 196, 255, 0.3);
 }

 /* --- Custom Button Pulse Animation (UPDATED & ENHANCED) --- */
 @keyframes pulse-btn {
     0% {
         transform: scale(1);
         box-shadow: 0 0 0 0 rgba(105, 240, 174, 0.7);
     }

     50% {
         transform: scale(1.06);
         box-shadow: 0 0 0 20px rgba(105, 240, 174, 0);
     }

     100% {
         transform: scale(1);
         box-shadow: 0 0 0 0 rgba(105, 240, 174, 0);
     }
 }

 .btn-pulse {
     animation: pulse-btn 2s infinite ease-in-out;
 }

 .btn-pulse:hover {
     animation-play-state: paused;
 }

 /* --- Floating Navbar --- */
 .navbar-dark {
     background: rgba(15, 15, 18, 0.75) !important;
     backdrop-filter: saturate(180%) blur(20px);
     -webkit-backdrop-filter: saturate(180%) blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 50px;
     margin-top: 20px;
     padding: 10px 20px;
     left: 50%;
     transform: translateX(-50%);
     width: 95%;
     max-width: 1200px;
     transition: all 0.3s ease;
 }

 .navbar-brand {
     font-weight: 800;
     font-size: 1.4rem;
     letter-spacing: -0.5px;
 }

 .nav-link {
     font-weight: 500;
     color: #cbd5e1 !important;
     transition: color 0.3s ease;
     font-size: 0.95rem;
     white-space: nowrap;
     /* Fix for text breaking into two lines */
 }

 .nav-link:hover {
     color: var(--color-cyan) !important;
 }

 .btn-download-nav {
     background-color: #ffffff;
     color: #000000;
     font-weight: 700;
     font-size: 0.9rem;
     transition: all 0.3s ease;
     border: none;
     border-radius: 50px !important;
 }

 .btn-download-nav:hover {
     background-color: #e2e8f0;
     transform: scale(1.05);
 }

 /* --- Hero Section --- */
 .hero-section {
     padding: 180px 0 120px;
     background: radial-gradient(circle at 50% 0%, rgba(64, 196, 255, 0.15) 0%, rgba(0, 0, 0, 0) 60%),
         url('images/hero-bg.webp');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     min-height: 90vh;
     display: flex;
     align-items: center;
     position: relative;
 }

 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, rgba(5, 5, 5, 0.8) 0%, rgba(5, 5, 5, 0.95) 100%);
     z-index: 0;
 }

 .hero-title {
     font-size: 4.5rem;
     font-weight: 800;
     line-height: 1.1;
     margin-bottom: 25px;
     text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
 }

 .hero-subtitle {
     font-size: 1.25rem;
     color: #cbd5e1;
     font-weight: 400;
     max-width: 600px;
     margin: 0 auto 40px;
 }

 .top-pill {
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     color: var(--color-cyan);
     font-size: 0.85rem;
     font-weight: 600;
     letter-spacing: 1px;
     text-transform: uppercase;
 }

 /* --- SECTION: What's Waiting For You --- */
 .waiting-section {
     padding: 60px 0;
     background: var(--bg-dark);
     text-align: center;
     position: relative;
 }

 .section-title {
     font-size: 3rem;
     font-weight: 800;
     margin-bottom: 15px;
     color: #ffffff;
 }

 .section-subtitle {
     font-size: 1.15rem;
     color: var(--text-muted);
     margin-bottom: 50px;
     font-weight: 400;
 }

 .filter-pills-container {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 10px;
     margin-bottom: 50px;
     max-width: 900px;
     margin-left: auto;
     margin-right: auto;
 }

 .filter-pill {
     background-color: rgba(255, 255, 255, 0.03);
     color: #94a3b8;
     border: 1px solid rgba(255, 255, 255, 0.08);
     padding: 10px 22px;
     border-radius: 50px;
     font-size: 0.95rem;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .filter-pill:hover {
     background-color: rgba(255, 255, 255, 0.08);
     color: #fff;
     transform: translateY(-2px);
 }

 .filter-pill.active {
     background: #ffffff;
     color: #000000;
     font-weight: 700;
     border-color: #ffffff;
     box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
 }

 /* --- Continuous Slider --- */
 .marquee-container {
     width: 100%;
     overflow: hidden;
     position: relative;
     padding: 20px 0 40px;
     -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
     mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
 }

 .marquee-track {
     display: flex;
     gap: 20px;
     width: max-content;
 }

 .scroll-active {
     animation: scroll-left 40s linear infinite;
 }

 .scroll-active:hover,
 .force-pause {
     animation-play-state: paused !important;
 }

 @keyframes scroll-left {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(calc(-50% - 10px));
     }
 }

 .card-vertical {
     width: 220px;
     height: 330px;
     border-radius: 16px;
     overflow: hidden;
     position: relative;
     cursor: pointer;
     flex-shrink: 0;
     border: 1px solid rgba(255, 255, 255, 0.05);
     transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
     background-color: var(--bg-card);
 }

 .card-vertical:hover {
     transform: translateY(-10px);
     border-color: rgba(64, 196, 255, 0.4);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(64, 196, 255, 0.15);
     z-index: 5;
 }

 .thumbnail-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.7s ease;
 }

 .card-vertical:hover .thumbnail-img {
     transform: scale(1.05);
 }

 .video-player-inline {
     display: none;
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     z-index: 10;
     border-radius: 16px;
     background: #000;
 }

 .card-gradient {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 60%;
     background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
     z-index: 1;
     transition: opacity 0.3s;
 }

 .card-content {
     position: absolute;
     bottom: 20px;
     left: 20px;
     right: 20px;
     z-index: 2;
 }

 .card-title-vert {
     color: #ffffff;
     font-size: 0.95rem;
     font-weight: 700;
     line-height: 1.3;
     margin-bottom: 8px;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .duration-badge {
     color: var(--color-cyan);
     font-size: 0.75rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     background: rgba(64, 196, 255, 0.1);
     display: inline-block;
     padding: 4px 10px;
     border-radius: 4px;
 }

 .play-overlay-center {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: all 0.3s ease;
     z-index: 3;
 }

 .card-vertical:hover .play-overlay-center {
     opacity: 1;
     background: rgba(0, 0, 0, 0.4);
 }

 .play-overlay-center i {
     font-size: 3.5rem;
     color: #ffffff;
     opacity: 0.8;
     transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
     transform: scale(0.8);
 }

 .card-vertical:hover .play-overlay-center i {
     transform: scale(1);
     opacity: 1;
     text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
 }

 /* --- SECTION: Reasons to Join --- */
 .reasons-section {
     padding: 45px 0 65px;
     background: var(--bg-dark);
     position: relative;
 }

 .reason-card {
     background: rgba(255, 255, 255, 0.02);
     border: 1px solid rgba(255, 255, 255, 0.05);
     border-radius: 24px;
     padding: 40px 30px;
     height: 100%;
     transition: all 0.4s ease;
 }

 .reason-card:hover {
     background: rgba(255, 255, 255, 0.04);
     border-color: rgba(64, 196, 255, 0.2);
     transform: translateY(-8px);
 }

 .reason-icon {
     width: 60px;
     height: 60px;
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.8rem;
     margin-bottom: 25px;
     background: rgba(64, 196, 255, 0.1);
     color: var(--color-cyan);
     border: 1px solid rgba(64, 196, 255, 0.2);
     transition: all 0.3s ease;
 }

 .reason-card:hover .reason-icon {
     background: var(--color-cyan);
     color: #000;
     box-shadow: 0 10px 20px rgba(64, 196, 255, 0.3);
 }

 .icon-green {
     color: var(--color-green);
     background: rgba(105, 240, 174, 0.1);
     border-color: rgba(105, 240, 174, 0.2);
 }

 .reason-card:hover .icon-green {
     background: var(--color-green);
     color: #000;
     box-shadow: 0 10px 20px rgba(105, 240, 174, 0.3);
 }

 .icon-pink {
     color: #FF4081;
     background: rgba(255, 64, 129, 0.1);
     border-color: rgba(255, 64, 129, 0.2);
 }

 .reason-card:hover .icon-pink {
     background: #FF4081;
     color: #fff;
     box-shadow: 0 10px 20px rgba(255, 64, 129, 0.3);
 }

 .reason-title {
     font-size: 1.3rem;
     font-weight: 700;
     margin-bottom: 12px;
     color: #ffffff;
 }

 .reason-desc {
     color: var(--text-muted);
     font-size: 0.95rem;
     line-height: 1.6;
     margin-bottom: 0;
 }

 /* --- SECTION: Animated Counter Stats --- */
 .stats-section {
     padding: 20px 0 100px;
     background: var(--bg-dark);
 }

 .stats-wrapper {
     background: rgba(255, 255, 255, 0.02);
     border: 1px solid rgba(255, 255, 255, 0.05);
     border-radius: 32px;
     padding: 60px 20px;
     position: relative;
 }

 .stat-item {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
 }

 .stat-icon {
     font-size: 2.5rem;
     background: linear-gradient(135deg, var(--color-cyan), var(--color-green));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     flex-shrink: 0;
 }

 .stat-number-wrapper {
     display: flex;
     align-items: baseline;
     gap: 2px;
 }

 .stat-number {
     font-size: 3rem;
     font-weight: 800;
     color: #ffffff;
     margin: 0;
     line-height: 1;
     letter-spacing: -2px;
 }

 .stat-suffix {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--color-cyan);
 }

 .stat-label {
     color: var(--text-muted);
     font-size: 0.95rem;
     font-weight: 500;
     margin-top: 5px;
     margin-bottom: 0;
 }

 .stat-divider {
     position: relative;
 }

 @media (min-width: 992px) {
     .stat-divider::after {
         content: '';
         position: absolute;
         right: 0;
         top: 20%;
         height: 60%;
         width: 1px;
         background: rgba(255, 255, 255, 0.08);
     }
 }

 @media (max-width: 991px) {
     .stat-item {
         flex-direction: column;
         text-align: center;
         margin-bottom: 30px;
         gap: 15px;
     }

     .stat-divider::after {
         display: none;
     }
 }

 /* --- SECTION: Testimonials --- */
 .testimonials-section {
     padding: 55px 0;
     background: var(--bg-dark);
 }

 .testi-slider-container {
     position: relative;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0;
     -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
     mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
 }

 .testi-track {
     display: flex;
     gap: 24px;
     overflow-x: auto;
     padding: 40px 10px;
     scroll-behavior: smooth;
     scroll-snap-type: x mandatory;
     scrollbar-width: none;
 }

 .testi-track::-webkit-scrollbar {
     display: none;
 }

 .testi-card {
     flex: 0 0 340px;
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.06);
     border-radius: 20px;
     padding: 35px 30px;
     position: relative;
     scroll-snap-align: center;
     transition: all 0.3s ease;
 }

 .testi-card:hover {
     background: rgba(255, 255, 255, 0.05);
     border-color: rgba(64, 196, 255, 0.2);
 }

 .testi-avatar {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     margin-bottom: 20px;
     border: 2px solid rgba(255, 255, 255, 0.1);
     object-fit: cover;
 }

 .testi-quote {
     font-size: 1.05rem;
     color: #cbd5e1;
     line-height: 1.6;
     margin-bottom: 25px;
     text-align: justify;
 }

 .testi-author {
     font-weight: 700;
     color: #ffffff;
     font-size: 1.1rem;
     margin-bottom: 2px;
 }

 .testi-location {
     font-size: 0.85rem;
     color: var(--text-muted);
 }

 /* --- SECTION: FAQ --- */
 .faq-section {
     padding: 50px 0;
     background-color: var(--bg-dark);
     position: relative;
     z-index: 5;
     overflow: hidden;
 }

 .faq-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: radial-gradient(rgba(64, 196, 255, 0.15) 1px, transparent 1px);
     background-size: 40px 40px;
     opacity: 0.4;
     pointer-events: none;
     z-index: 0;
 }

 .faq-section::after {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 800px;
     height: 600px;
     background: radial-gradient(circle, rgba(105, 240, 174, 0.05) 0%, rgba(64, 196, 255, 0.03) 40%, transparent 70%);
     pointer-events: none;
     z-index: 0;
 }

 .faq-header {
     text-align: center;
     margin-bottom: 60px;
     position: relative;
     z-index: 2;
 }

 .faq-container {
     max-width: 850px;
     margin: 0 auto;
     position: relative;
     z-index: 2;
 }

 .faq-item {
     background: rgba(20, 20, 25, 0.6);
     backdrop-filter: blur(15px);
     -webkit-backdrop-filter: blur(15px);
     border: 1px solid rgba(255, 255, 255, 0.05);
     border-radius: 20px;
     margin-bottom: 18px;
     overflow: hidden;
     transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .faq-item:hover {
     border-color: rgba(64, 196, 255, 0.3);
     background: rgba(30, 30, 35, 0.8);
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
 }

 .faq-item.active {
     border-color: var(--color-cyan);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(64, 196, 255, 0.05);
     background: rgba(25, 25, 30, 0.9);
 }

 .faq-question {
     width: 100%;
     text-align: left;
     padding: 24px 30px;
     background: transparent;
     border: none;
     color: #fff;
     font-size: 1.15rem;
     font-weight: 600;
     display: flex;
     justify-content: space-between;
     align-items: center;
     cursor: pointer;
     transition: color 0.3s;
     letter-spacing: 0.5px;
 }

 .faq-question:focus {
     outline: none;
 }

 .faq-item.active .faq-question {
     color: var(--color-cyan);
 }

 .faq-icon {
     font-size: 1.2rem;
     color: var(--text-muted);
     transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 32px;
     height: 32px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.05);
 }

 .faq-item.active .faq-icon {
     transform: rotate(45deg);
     color: #000;
     background: var(--color-cyan);
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .faq-answer-inner {
     padding: 0 30px 28px;
     color: #a0aec0;
     font-size: 1rem;
     line-height: 1.7;
     border-top: 1px solid rgba(255, 255, 255, 0.02);
     margin-top: 5px;
     padding-top: 20px;
 }

 @media (max-width: 768px) {
     .faq-question {
         font-size: 1.05rem;
         padding: 20px;
     }

     .faq-answer-inner {
         padding: 0 20px 20px;
         padding-top: 15px;
     }
 }

 /* --- PREMIUM CTA SECTION --- */
 .cta-section {
     padding: 45px 0 55px;
     background: var(--bg-dark);
     position: relative;
     z-index: 5;
 }

 .cta-container {
     background: #0a0a0c;
     border: 1px solid rgba(255, 255, 255, 0.06);
     border-radius: 32px;
     padding: 70px 60px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     position: relative;
     overflow: hidden;
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
 }

 .cta-container::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 50%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(64, 196, 255, 0.05), transparent);
     transform: skewX(-20deg);
     animation: sweepLight 7s infinite;
     pointer-events: none;
     z-index: 0;
 }

 @keyframes sweepLight {
     0% {
         left: -100%;
     }

     30%,
     100% {
         left: 200%;
     }
 }

 .cta-left-content {
     flex: 1;
     max-width: 550px;
     position: relative;
     z-index: 2;
 }

 .cta-app-title {
     font-size: 3.2rem;
     font-weight: 800;
     color: #fff;
     line-height: 1.15;
     margin-bottom: 20px;
     letter-spacing: -1px;
 }

 .cta-app-subtitle {
     font-size: 1.15rem;
     color: var(--text-muted);
     margin-bottom: 35px;
     line-height: 1.6;
 }

 .cta-feature-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 15px;
     margin-bottom: 30px;
 }

 .cta-tag {
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.08);
     padding: 12px 20px;
     border-radius: 12px;
     color: #e2e8f0;
     font-weight: 500;
     font-size: 0.95rem;
     display: flex;
     align-items: center;
     gap: 10px;
     transition: all 0.3s ease;
 }

 .cta-tag i {
     color: var(--color-cyan);
     font-size: 1.1rem;
 }

 .cta-tag:hover {
     background: rgba(64, 196, 255, 0.08);
     border-color: rgba(64, 196, 255, 0.3);
     transform: translateX(6px);
 }

 .btn-download-solid {
     background: #ffffff;
     color: #000000;
     font-weight: 700;
     font-size: 1.1rem;
     padding: 18px 45px;
     border-radius: 50px;
     display: inline-flex;
     align-items: center;
     gap: 12px;
     transition: all 0.3s ease;
     text-decoration: none;
     box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
 }

 .btn-download-solid:hover {
     background: linear-gradient(90deg, var(--color-cyan), var(--color-green));
     transform: scale(1.03);
     box-shadow: 0 10px 25px rgba(64, 196, 255, 0.3);
     color: #000;
 }

 .cta-right-content {
     flex: 1;
     display: flex;
     justify-content: flex-end;
     align-items: center;
     position: relative;
     z-index: 2;
 }

 .mockup-abstract {
     position: relative;
     width: 320px;
     height: 320px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .mockup-circle {
     position: absolute;
     width: 100%;
     height: 100%;
     border-radius: 50%;
     border: 1px dashed rgba(64, 196, 255, 0.3);
     animation: spinSlow 30s linear infinite;
 }

 .mockup-circle-inner {
     position: absolute;
     width: 70%;
     height: 70%;
     border-radius: 50%;
     border: 1px solid rgba(105, 240, 174, 0.1);
     animation: spinSlow 20s linear infinite reverse;
 }

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

 .mockup-card {
     background: rgba(20, 20, 25, 0.7);
     backdrop-filter: blur(15px);
     -webkit-backdrop-filter: blur(15px);
     border: 1px solid rgba(105, 240, 174, 0.3);
     border-top: 1px solid rgba(64, 196, 255, 0.5);
     padding: 35px 40px;
     border-radius: 24px;
     text-align: center;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(64, 196, 255, 0.05);
     z-index: 2;
 }

 .mockup-card i {
     font-size: 3.5rem;
     background: linear-gradient(135deg, var(--color-cyan), var(--color-green));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 15px;
 }

 .mockup-card h4 {
     color: #fff;
     font-weight: 800;
     margin: 0;
     font-size: 1.8rem;
     letter-spacing: 1px;
 }

 .mockup-card span {
     color: var(--color-cyan);
     font-size: 0.85rem;
     text-transform: uppercase;
     font-weight: 600;
     letter-spacing: 2px;
 }

 @media (max-width: 991px) {
     .cta-container {
         flex-direction: column;
         text-align: center;
         padding: 50px 25px;
     }

     .cta-app-title {
         font-size: 2.5rem;
     }

     .cta-right-content {
         margin-top: 60px;
         justify-content: center;
         width: 100%;
     }

     .cta-feature-tags {
         justify-content: center;
     }

     .cta-tag:hover {
         transform: translateY(-4px);
     }

     .mockup-abstract {
         width: 260px;
         height: 260px;
     }
 }

 /* --- SECTION: Seekho Gurus --- */
 .gurus-section {
     padding: 35px 0 40px;
     background: var(--bg-dark);
     position: relative;
     overflow: hidden;
 }

 .gurus-track-container {
     width: 100%;
     overflow: hidden;
     padding: 50px 0;
     -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
     mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
 }

 .gurus-track {
     display: flex;
     gap: 25px;
     width: max-content;
     animation: scroll-gurus 35s linear infinite;
 }

 .gurus-track:hover {
     animation-play-state: paused;
 }

 @keyframes scroll-gurus {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(calc(-50% - 12.5px));
     }
 }

 .guru-card {
     width: 320px;
     background: rgba(25, 25, 28, 0.4);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     border: 1px solid rgba(255, 255, 255, 0.05);
     border-radius: 28px;
     padding: 0 30px 30px;
     text-align: center;
     position: relative;
     display: flex;
     flex-direction: column;
     align-items: center;
     transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
     box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
 }

 .guru-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     border-radius: 28px;
     background: radial-gradient(circle at top center, var(--card-theme) 0%, transparent 60%);
     opacity: 0.08;
     pointer-events: none;
     transition: opacity 0.4s ease;
 }

 .guru-card:hover {
     transform: translateY(-12px);
     background: rgba(30, 30, 35, 0.8);
     border-color: var(--card-theme);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 .guru-card:hover::before {
     opacity: 0.15;
 }

 .guru-badge {
     background: #0f1014;
     border: 1px solid var(--card-theme);
     color: var(--card-theme);
     padding: 8px 20px;
     border-radius: 30px;
     font-size: 0.85rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     transform: translateY(-50%);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
     white-space: nowrap;
     position: relative;
     z-index: 2;
 }

 .guru-avatar-wrapper {
     width: 120px;
     height: 120px;
     border-radius: 50%;
     margin-top: -10px;
     margin-bottom: 20px;
     padding: 4px;
     background: linear-gradient(135deg, var(--card-theme), transparent);
     position: relative;
     z-index: 2;
 }

 .guru-avatar {
     width: 100%;
     height: 100%;
     border-radius: 50%;
     object-fit: cover;
     border: 4px solid #1a1a1d;
 }

 .guru-name {
     color: #ffffff;
     font-size: 1.5rem;
     font-weight: 800;
     margin-bottom: 5px;
 }

 .guru-domain {
     color: var(--text-muted);
     font-size: 1rem;
     margin-bottom: 25px;
     font-weight: 400;
 }

 .guru-stats {
     display: flex;
     justify-content: space-between;
     width: 100%;
     border-top: 1px solid rgba(255, 255, 255, 0.08);
     padding-top: 20px;
 }

 .guru-stat-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 6px;
     width: 50%;
 }

 .guru-stat-item:first-child {
     border-right: 1px solid rgba(255, 255, 255, 0.08);
 }

 .guru-stat-icon {
     color: var(--card-theme);
     font-size: 1.3rem;
     opacity: 0.9;
 }

 .guru-stat-value {
     color: #f8fafc;
     font-weight: 700;
     font-size: 1.1rem;
     line-height: 1;
 }

 .guru-stat-label {
     color: #64748b;
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     font-weight: 600;
 }

 /* --- SECTION: App Download with QR --- */
 .app-download-section {
     padding: 30px 0 50px;
     background: var(--bg-dark);
     position: relative;
     z-index: 5;
 }

 .app-download-card {
     background: linear-gradient(145deg, #0a0f1a 0%, #050505 100%);
     border: 1px solid rgba(64, 196, 255, 0.1);
     border-top: 1px solid rgba(64, 196, 255, 0.25);
     border-radius: 40px;
     padding: 0;
     display: flex;
     align-items: center;
     justify-content: space-between;
     position: relative;
     overflow: hidden;
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(64, 196, 255, 0.05);
 }

 .app-download-card::before {
     content: '';
     position: absolute;
     top: -20%;
     left: -10%;
     width: 50%;
     height: 150%;
     background: radial-gradient(ellipse, rgba(105, 240, 174, 0.05) 0%, transparent 60%);
     transform: rotate(-15deg);
     pointer-events: none;
 }

 .app-content {
     flex: 1;
     padding: 50px 60px;
     position: relative;
     z-index: 2;
 }

 .app-badge {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     color: var(--color-cyan);
     padding: 8px 20px;
     border-radius: 50px;
     font-size: 0.85rem;
     font-weight: 700;
     letter-spacing: 1px;
     text-transform: uppercase;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     margin-bottom: 25px;
 }

 .app-title {
     font-size: 3.5rem;
     font-weight: 800;
     color: #fff;
     line-height: 1.1;
     margin-bottom: 20px;
     letter-spacing: -1px;
 }

 .app-subtitle {
     font-size: 1.15rem;
     color: var(--text-muted);
     margin-bottom: 35px;
     line-height: 1.6;
     max-width: 450px;
     text-align: justify;
 }

 .store-buttons {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
 }

 .store-btn {
     background: #000000;
     border: 1px solid rgba(255, 255, 255, 0.2);
     color: #ffffff;
     padding: 12px 24px;
     border-radius: 14px;
     display: flex;
     align-items: center;
     gap: 15px;
     text-decoration: none;
     transition: all 0.3s ease;
     min-width: 180px;
 }

 .store-btn:hover {
     background: #1a1a1d;
     border-color: var(--color-cyan);
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(64, 196, 255, 0.15);
     color: #ffffff;
 }

 .store-btn i {
     font-size: 2rem;
 }

 .store-btn-text {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
 }

 .store-btn-text small {
     font-size: 0.65rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     opacity: 0.8;
 }

 .store-btn-text strong {
     font-size: 1.1rem;
     font-weight: 600;
     line-height: 1.1;
 }

 .app-visual {
     flex: 1;
     display: flex;
     justify-content: center;
     align-items: flex-end;
     position: relative;
     padding-top: 30px;
     min-height: 420px;
     z-index: 2;
 }

 .phone-mockup {
     width: 280px;
     height: 380px;
     background: #000;
     border: 12px solid #1e293b;
     border-bottom: 0;
     border-radius: 40px 40px 0 0;
     position: relative;
     box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05);
     display: flex;
     flex-direction: column;
     align-items: center;
     animation: floatPhone 6s ease-in-out infinite;
 }

 @keyframes floatPhone {
     0% {
         transform: translateY(20px);
     }

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

     100% {
         transform: translateY(20px);
     }
 }

 .phone-notch {
     position: absolute;
     top: 0;
     width: 140px;
     height: 25px;
     background: #1e293b;
     border-radius: 0 0 15px 15px;
     z-index: 10;
 }

 .phone-screen {
     width: 100%;
     height: 100%;
     border-radius: 28px 28px 0 0;
     background: linear-gradient(180deg, #1e1b4b 0%, #0f172a 100%);
     overflow: hidden;
     position: relative;
     display: flex;
     flex-direction: column;
     align-items: center;
     padding-top: 60px;
 }

 .phone-screen::before {
     content: '';
     position: absolute;
     top: -50px;
     left: -50px;
     width: 150px;
     height: 150px;
     background: var(--color-cyan);
     filter: blur(80px);
     opacity: 0.3;
 }

 .screen-title {
     color: #fff;
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 5px;
     text-align: center;
     position: relative;
     z-index: 2;
 }

 .screen-subtitle {
     color: var(--color-cyan);
     font-size: 0.8rem;
     margin-bottom: 30px;
     text-align: center;
     position: relative;
     z-index: 2;
 }

 .qr-wrapper {
     background: #ffffff;
     padding: 15px;
     border-radius: 20px;
     position: relative;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
     z-index: 2;
     overflow: hidden;
 }

 .qr-image {
     width: 140px;
     height: 140px;
     display: block;
 }

 .scanner-line {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 3px;
     background: var(--color-cyan);
     box-shadow: 0 0 15px 3px var(--color-cyan);
     animation: scanCode 2.5s linear infinite;
 }

 @keyframes scanCode {
     0% {
         top: 10px;
         opacity: 0;
     }

     10% {
         opacity: 1;
     }

     90% {
         opacity: 1;
     }

     100% {
         top: 160px;
         opacity: 0;
     }
 }

 /* --- FOOTER --- */
 .footer-section {
     padding: 55px 0 30px;
     background-color: #030305;
     position: relative;
     overflow: hidden;
     border-top: 1px solid rgba(64, 196, 255, 0.15);
 }

 .footer-section::before {
     content: '';
     position: absolute;
     top: -50px;
     left: 0;
     right: 0;
     bottom: 0;
     opacity: 0.6;
     animation: panGrid 20s linear infinite;
     z-index: 0;
     background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
     background-size: 40px 40px;
     background-position: center top;
 }

 @keyframes panGrid {
     0% {
         transform: translateY(0);
     }

     100% {
         transform: translateY(40px);
     }
 }

 .footer-glow {
     position: absolute;
     width: 500px;
     height: 500px;
     border-radius: 50%;
     filter: blur(120px);
     z-index: 0;
     opacity: 0.25;
     animation: floatFooterGlow 15s ease-in-out infinite alternate;
     pointer-events: none;
 }

 .footer-glow-cyan {
     background: var(--color-cyan);
     bottom: -200px;
     left: -150px;
 }

 .footer-glow-green {
     background: var(--color-green);
     top: -200px;
     right: -150px;
     animation-delay: -5s;
 }

 @keyframes floatFooterGlow {
     0% {
         transform: translate(0, 0) scale(1);
     }

     100% {
         transform: translate(50px, -50px) scale(1.1);
     }
 }

 .footer-content-wrapper {
     position: relative;
     z-index: 2;
 }

 .footer-brand-title {
     font-size: 1.8rem;
     font-weight: 800;
     letter-spacing: -0.5px;
     color: #fff;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
 }

 .footer-link {
     color: var(--text-muted);
     text-decoration: none;
     transition: all 0.3s ease;
     font-size: 0.95rem;
     line-height: 2.2;
     display: inline-flex;
     align-items: center;
     position: relative;
 }

 .footer-link::before {
     content: '\f105';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     font-size: 0.7rem;
     color: var(--color-cyan);
     position: absolute;
     left: -15px;
     opacity: 0;
     transition: all 0.3s ease;
 }

 .footer-link:hover {
     color: #ffffff;
     transform: translateX(15px);
 }

 .footer-link:hover::before {
     opacity: 1;
     left: -12px;
 }

 .social-btn {
     width: 42px;
     height: 42px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.08);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--text-muted);
     font-size: 1.1rem;
     transition: all 0.3s ease;
     text-decoration: none;
 }

 .social-btn:hover {
     background: var(--color-cyan);
     color: #000;
     border-color: var(--color-cyan);
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(64, 196, 255, 0.3);
 }

 .footer-app-btn {
     background: rgba(20, 20, 25, 0.6);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     transition: all 0.3s ease;
     color: #fff;
     text-decoration: none;
     padding: 10px 20px;
     border-radius: 12px;
     display: inline-flex;
     align-items: center;
     gap: 15px;
     width: 100%;
     max-width: 220px;
 }

 .footer-app-btn:hover {
     background: rgba(64, 196, 255, 0.1);
     border-color: rgba(64, 196, 255, 0.4);
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(64, 196, 255, 0.15);
     color: #fff;
 }

 /* --- NEW: Advanced Scroll Animations --- */
 .reveal {
     opacity: 0;
     transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .reveal.fade-up {
     transform: translateY(50px);
 }

 .reveal.fade-left {
     transform: translateX(50px);
 }

 /* Slides in from the right */
 .reveal.fade-right {
     transform: translateX(-50px);
 }

 /* Slides in from the left */
 .reveal.zoom-in {
     transform: scale(0.85);
 }

 .reveal.is-visible {
     opacity: 1;
     transform: translate(0) scale(1);
 }

 /* Animation Delays */
 .delay-100 {
     transition-delay: 100ms;
 }

 .delay-200 {
     transition-delay: 200ms;
 }

 .delay-300 {
     transition-delay: 300ms;
 }

 .delay-400 {
     transition-delay: 400ms;
 }

 /* --- Mobile Navbar & Menu Centering Fix --- */
 @media (max-width: 991px) {
     .navbar-collapse {
         background: rgba(20, 20, 25, 0.98);
         padding: 20px;
         border-radius: 16px;
         margin-top: 15px;
         border: 1px solid rgba(255, 255, 255, 0.05);
         text-align: center;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
     }

     .navbar-nav {
         width: 100%;
         align-items: center;
     }

     .nav-item {
         width: 100%;
         margin-bottom: 5px;
     }

     .nav-link {
         padding: 10px 0 !important;
     }

     .mobile-nav-btn-box {
         justify-content: center !important;
         width: 100%;
     }

     .btn-download-nav {
         width: 100%;
         max-width: 200px;
         /* Optional: Keep button size nice and compact */
     }

     .stat-item {
         flex-direction: column;
         text-align: center;
         margin-bottom: 30px;
         gap: 15px;
     }

     .stat-divider::after {
         display: none;
     }
 }

 /* --- Mobile Responsiveness --- */
 @media (max-width: 768px) {
     .hero-section {
         padding: 140px 0 80px;
         min-height: auto;
     }

     .hero-title {
         font-size: 2.3rem !important;
         line-height: 1.25;
         margin-bottom: 15px;
     }

     .hero-subtitle {
         font-size: 1.05rem;
         padding: 0 10px;
         margin-bottom: 30px;
     }

     .section-title {
         font-size: 2rem !important;
         line-height: 1.2;
     }

     .section-subtitle {
         font-size: 1rem;
         margin-bottom: 30px;
         padding: 0 15px;
     }

     .filter-pills-container {
         gap: 8px;
         margin-bottom: 30px;
         padding: 0 10px;
     }

     .filter-pill {
         padding: 8px 16px;
         font-size: 0.85rem;
     }

     .app-download-card,
     .cta-container {
         padding: 40px 20px !important;
         border-radius: 24px;
         margin: 0 15px;
     }

     .app-title {
         font-size: 2rem !important;
         margin-bottom: 15px;
     }

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

     .store-buttons {
         flex-direction: column;
         gap: 15px;
         width: 100%;
         align-items: center;
     }

     .store-btn {
         width: 100%;
         max-width: 260px;
         justify-content: center;
     }

     .phone-mockup {
         width: 230px;
         height: 420px;
         border-width: 10px;
     }

     .phone-screen {
         padding-top: 60px;
     }

     .qr-image {
         width: 120px;
         height: 120px;
     }

     .footer-section {
         padding: 60px 0 20px;
         text-align: center;
     }

     .footer-app-btn {
         max-width: 100%;
         justify-content: center;
     }

     .footer-link::before {
         display: none;
     }

     .footer-link:hover {
         transform: translateX(0);
         color: var(--color-cyan);
     }

     .faq-section,
     .reasons-section,
     .gurus-section {
         padding: 60px 0;
     }

     .gurus-track-container {
         padding: 40px 15px;
     }

     .stats-wrapper {
         padding: 40px 15px;
         margin: 0 15px;
     }

     .guru-card {
         width: 280px;
         padding: 0 20px 25px;
     }

     .guru-name {
         font-size: 1.3rem;
     }

     .cta-right-content {
         margin-top: 60px;
         justify-content: center;
         width: 100%;
     }

     .cta-feature-tags {
         justify-content: center;
     }

     .cta-tag:hover {
         transform: translateY(-4px);
     }

     .mockup-abstract {
         width: 260px;
         height: 260px;
     }

     .faq-question {
         font-size: 1.05rem;
         padding: 20px;
     }

     .faq-answer-inner {
         padding: 0 20px 20px;
         padding-top: 15px;
     }

     .stat-item {
         flex-direction: column;
         text-align: center;
         margin-bottom: 30px;
         gap: 15px;
     }

     .stat-divider::after {
         display: none;
     }

     .testi-card {
         flex: 0 0 300px;
     }

     .testi-nav-btn {
         display: none;
     }

     .testi-slider-container {
         padding: 0 10px;
     }
 }

 /* Inner Page Hero Setup */
 .page-hero {
     padding: 150px 0 70px;
     /* Reduced Height */
     background: radial-gradient(circle at 50% 0%, rgba(64, 196, 255, 0.15) 0%, rgba(0, 0, 0, 0) 60%),
         url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1600&q=80');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     position: relative;
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
 }

 .page-hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, rgba(5, 5, 5, 0.7) 0%, rgba(5, 5, 5, 0.98) 100%);
     z-index: 0;
 }

 .page-title {
     font-size: 4.2rem;
     font-weight: 800;
     margin-bottom: 20px;
 }

 .hero-subtitle {
     font-size: 1.2rem;
     color: rgba(255, 255, 255, 0.85);
     /* Improved visibility */
     line-height: 1.6;
 }

 /* Continuous Floating Animation */
 @keyframes float-img {
     0% {
         transform: translateY(0px);
     }

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

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

 .float-anim {
     animation: float-img 6s ease-in-out infinite;
 }

 /* Our Story Section */
 .about-section {
     padding: 50px 0;
     background: var(--bg-dark);
     position: relative;
 }

 .story-img-wrapper {
     position: relative;
     border-radius: 24px;
     overflow: hidden;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
     border: 1px solid rgba(255, 255, 255, 0.05);
     z-index: 2;
 }

 .story-img-wrapper::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(64, 196, 255, 0.1), rgba(105, 240, 174, 0.1));
     mix-blend-mode: overlay;
 }

 .story-img-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .story-text-box h3 {
     font-size: 2.8rem;
     margin-bottom: 25px;
     font-weight: 800;
     color: #fff;
 }

 .story-text-box p {
     color: rgba(255, 255, 255, 0.75);
     font-size: 1.15rem;
     line-height: 1.8;
     margin-bottom: 20px;
     text-align: justify;
 }

 /* Enhanced text color */

 /* Background blur elements for premium feel */
 .blur-orb-1 {
     position: absolute;
     top: 10%;
     right: 10%;
     width: 300px;
     height: 300px;
     background: rgba(64, 196, 255, 0.1);
     border-radius: 50%;
     filter: blur(100px);
     pointer-events: none;
 }

 .blur-orb-2 {
     position: absolute;
     bottom: 10%;
     left: 10%;
     width: 300px;
     height: 300px;
     background: rgba(105, 240, 174, 0.1);
     border-radius: 50%;
     filter: blur(100px);
     pointer-events: none;
 }

 /* Values Section */
 .value-card {
     background: rgba(25, 25, 28, 0.6);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 24px;
     padding: 40px;
     height: 100%;
     transition: all 0.4s ease;
 }

 .value-card:hover {
     background: rgba(30, 30, 35, 0.9);
     border-color: var(--color-cyan);
     transform: translateY(-10px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
 }

 .value-icon {
     width: 70px;
     height: 70px;
     border-radius: 20px;
     background: rgba(64, 196, 255, 0.1);
     color: var(--color-cyan);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     margin-bottom: 25px;
     transition: all 0.3s ease;
 }

 .value-card:hover .value-icon {
     background: var(--color-cyan);
     color: #000;
     box-shadow: 0 10px 25px rgba(64, 196, 255, 0.3);
 }

 .value-title {
     font-size: 1.5rem;
     margin-bottom: 15px;
     color: #fff;
 }

 .value-card p {
     color: rgba(255, 255, 255, 0.7);
     line-height: 1.6;
 }

 /* Culture Grid (Life at Humse Seekho) */
 .culture-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     grid-auto-rows: 250px;
     gap: 20px;
 }

 .culture-item {
     border-radius: 20px;
     overflow: hidden;
     position: relative;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
 }

 .culture-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

 .culture-item:hover img {
     transform: scale(1.1);
 }

 .culture-item.large {
     grid-column: span 2;
     grid-row: span 2;
 }

 .culture-item.wide {
     grid-column: span 2;
 }

 /* Employee Well-being */
 .wellbeing-box {
     background: rgba(255, 255, 255, 0.03);
     backdrop-filter: blur(5px);
     border: 1px solid rgba(255, 255, 255, 0.06);
     border-radius: 100px;
     padding: 20px 35px;
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 20px;
     transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
     cursor: default;
 }

 .wellbeing-box:hover {
     background: rgba(255, 255, 255, 0.08);
     border-color: rgba(105, 240, 174, 0.4);
     transform: translateX(15px) scale(1.02);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
 }

 .wb-icon {
     color: var(--color-green);
     font-size: 1.6rem;
     transition: transform 0.3s ease;
 }

 .wellbeing-box:hover .wb-icon {
     transform: scale(1.2);
 }

 .wb-text {
     color: #fff;
     font-size: 1.15rem;
     font-weight: 600;
     margin: 0;
 }

 /* Responsive Fixes for New CSS */
 @media (max-width: 991px) {
     .culture-grid {
         grid-template-columns: repeat(2, 1fr);
         grid-auto-rows: 200px;
     }

     .culture-item.large {
         grid-column: span 2;
         grid-row: span 1;
     }
 }

 @media (max-width: 768px) {
     .page-hero {
         padding: 130px 0 60px;
     }

     /* Adjusted mobile hero padding */
     .page-title {
         font-size: 2.8rem;
     }

     .story-text-box h3 {
         font-size: 2rem;
     }

     .culture-grid {
         grid-template-columns: 1fr;
         grid-auto-rows: 250px;
     }

     .culture-item.large,
     .culture-item.wide {
         grid-column: span 1;
         grid-row: span 1;
     }

     .wellbeing-box {
         border-radius: 20px;
         padding: 20px;
     }
 }

 /* Inner Page Hero Setup */
 .page-hero {
     padding: 150px 0 70px;
     background: radial-gradient(circle at 50% 0%, rgba(64, 196, 255, 0.15) 0%, rgba(0, 0, 0, 0) 60%),
         url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=1600&q=80');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     position: relative;
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
 }

 .page-hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, rgba(5, 5, 5, 0.75) 0%, rgba(5, 5, 5, 0.98) 100%);
     z-index: 0;
 }

 .page-title {
     font-size: 4.2rem;
     font-weight: 800;
     margin-bottom: 20px;
 }

 .hero-subtitle {
     font-size: 1.2rem;
     color: rgba(255, 255, 255, 0.85);
     line-height: 1.6;
 }

 /* Contact Info Cards */
 .contact-info-section {
     padding: 60px 0 20px;
     background: var(--bg-dark);
     position: relative;
     z-index: 5;
     margin-top: -60px;
     /* Pulls cards slightly into the hero section */
 }

 .contact-info-card {
     background: rgba(25, 25, 28, 0.8);
     backdrop-filter: blur(15px);
     -webkit-backdrop-filter: blur(15px);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-top: 1px solid rgba(64, 196, 255, 0.2);
     border-radius: 20px;
     padding: 35px 25px;
     height: 100%;
     text-align: center;
     transition: all 0.4s ease;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
 }

 .contact-info-card:hover {
     transform: translateY(-8px);
     background: rgba(30, 30, 35, 0.95);
     border-top-color: var(--color-green);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 5px 15px rgba(105, 240, 174, 0.15);
 }

 .info-icon {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background: linear-gradient(135deg, rgba(64, 196, 255, 0.1), rgba(105, 240, 174, 0.1));
     color: var(--color-cyan);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.6rem;
     margin: 0 auto 20px;
     border: 1px solid rgba(64, 196, 255, 0.2);
     transition: all 0.3s ease;
 }

 .contact-info-card:hover .info-icon {
     background: var(--color-cyan);
     color: #000;
     transform: scale(1.1);
 }

 .info-title {
     color: #fff;
     font-size: 1.25rem;
     font-weight: 700;
     margin-bottom: 10px;
 }

 .info-desc {
     color: var(--text-muted);
     font-size: 1rem;
     line-height: 1.6;
     margin-bottom: 0;
 }

 .info-desc a {
     color: var(--text-muted);
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .info-desc a:hover {
     color: var(--color-cyan);
 }

 /* Main Contact Area (Form & Map) */
 .contact-main-section {
     padding: 80px 0 80px;
     background: var(--bg-dark);
     position: relative;
 }

 .contact-form-wrapper {
     background: rgba(20, 20, 25, 0.6);
     border: 1px solid rgba(255, 255, 255, 0.05);
     border-radius: 24px;
     padding: 50px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
 }

 .form-heading {
     font-size: 2.2rem;
     font-weight: 800;
     color: #fff;
     margin-bottom: 10px;
 }

 .form-subheading {
     color: var(--text-muted);
     margin-bottom: 30px;
     font-size: 1.05rem;
 }

 /* Custom Premium Form Controls */
 .custom-form-control {
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 12px;
     color: #fff;
     padding: 16px 20px;
     font-size: 1rem;
     transition: all 0.3s ease;
     width: 100%;
 }

 .custom-form-control:focus {
     background: rgba(255, 255, 255, 0.05);
     border-color: var(--color-cyan);
     outline: none;
     box-shadow: 0 0 0 4px rgba(64, 196, 255, 0.1);
     color: #fff;
 }

 .custom-form-control::placeholder {
     color: rgba(255, 255, 255, 0.3);
 }

 .form-group {
     margin-bottom: 24px;
 }

 .form-label {
     color: #e2e8f0;
     font-weight: 600;
     margin-bottom: 8px;
     font-size: 0.95rem;
 }

 /* Input with Icons Styling */
 .input-icon-wrapper {
     position: relative;
     width: 100%;
 }

 .input-icon {
     position: absolute;
     left: 18px;
     top: 50%;
     transform: translateY(-50%);
     color: rgba(255, 255, 255, 0.4);
     font-size: 1.1rem;
     transition: color 0.3s ease;
     pointer-events: none;
 }

 textarea~.input-icon {
     top: 22px;
     transform: none;
 }

 /* Align icon to top for textarea */
 .custom-form-control.with-icon {
     padding-left: 50px;
 }

 .input-icon-wrapper:focus-within .input-icon {
     color: var(--color-cyan);
 }

 /* Map Dark Mode Styling */
 .map-wrapper {
     height: 100%;
     min-height: 500px;
     border-radius: 24px;
     overflow: hidden;
     border: 1px solid rgba(255, 255, 255, 0.05);
     position: relative;
 }

 .map-wrapper iframe {
     width: 100%;
     height: 100%;
     border: 0;
     /* Filter to make google maps look dark and fit the theme */
     filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(85%);
     transition: filter 0.3s ease;
 }

 .map-wrapper iframe:hover {
     filter: invert(90%) hue-rotate(180deg) brightness(100%) contrast(90%);
 }

 /* Pulse Button specifically for form */
 @keyframes pulse-btn-form {
     0% {
         box-shadow: 0 0 0 0 rgba(105, 240, 174, 0.5);
         transform: scale(1);
     }

     50% {
         box-shadow: 0 0 0 15px rgba(105, 240, 174, 0);
         transform: scale(1.02);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(105, 240, 174, 0);
         transform: scale(1);
     }
 }

 .btn-submit-pulse {
     animation: pulse-btn-form 2.5s infinite ease-in-out;
     width: 100%;
     padding: 16px;
     font-size: 1.1rem;
 }

 .btn-submit-pulse:hover {
     animation-play-state: paused;
 }

 /* Responsive */
 @media (max-width: 991px) {
     .contact-form-wrapper {
         padding: 30px;
         margin-bottom: 40px;
     }

     .map-wrapper {
         min-height: 400px;
     }
 }

 @media (max-width: 768px) {
     .page-hero {
         padding: 130px 0 80px;
     }

     .page-title {
         font-size: 2.8rem;
     }

     .contact-info-section {
         margin-top: 0;
         padding-top: 20px;
     }
 }

 .legal-main-section {
     padding: 80px 0;
     background: var(--bg-dark);
     position: relative;
 }

 /* Sticky Sidebar Navigation */
 .legal-sidebar {
     position: sticky;
     top: 120px;
     background: rgba(20, 20, 25, 0.5);
     border: 1px solid rgba(255, 255, 255, 0.05);
     border-radius: 20px;
     padding: 30px 20px;
 }

 .legal-sidebar-title {
     font-size: 1.1rem;
     color: #fff;
     font-weight: 700;
     margin-bottom: 20px;
     padding-bottom: 15px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 }

 .legal-nav-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .legal-nav-item {
     margin-bottom: 10px;
 }

 .legal-nav-link {
     color: var(--text-muted);
     text-decoration: none;
     font-size: 0.95rem;
     display: block;
     padding: 8px 15px;
     border-radius: 10px;
     transition: all 0.3s ease;
     position: relative;
 }

 .legal-nav-link:hover,
 .legal-nav-link.active {
     color: #fff;
     background: rgba(64, 196, 255, 0.1);
 }

 .legal-nav-link.active::before {
     content: '';
     position: absolute;
     left: 0;
     top: 50%;
     transform: translateY(-50%);
     width: 3px;
     height: 60%;
     background: var(--color-cyan);
     border-radius: 0 4px 4px 0;
 }

 /* Legal Content Formatting */
 .legal-content-card {
     background: rgba(20, 20, 25, 0.4);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.05);
     border-radius: 24px;
     padding: 50px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
 }

 .legal-last-updated {
     display: inline-block;
     background: rgba(255, 255, 255, 0.05);
     padding: 6px 15px;
     border-radius: 50px;
     font-size: 0.85rem;
     color: var(--color-cyan);
     margin-bottom: 30px;
     font-weight: 600;
 }

 .legal-content-block {
     margin-bottom: 50px;
     scroll-margin-top: 120px;
     /* Important for smooth scrolling anchor links */
 }

 .legal-content-block:last-child {
     margin-bottom: 0;
 }

 .legal-content-block h3 {
     color: #fff;
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .legal-content-block h3 i {
     color: var(--color-green);
     font-size: 1.4rem;
 }

 .legal-content-block p,
 .legal-content-block li {
     color: rgba(255, 255, 255, 0.75);
     font-size: 1.05rem;
     line-height: 1.8;
     margin-bottom: 15px;
     text-align: justify;
 }

 .legal-content-block ul {
     padding-left: 20px;
     margin-bottom: 20px;
 }

 .legal-content-block li {
     margin-bottom: 10px;
     position: relative;
     list-style-type: none;
 }

 .legal-content-block li::before {
     content: '•';
     color: var(--color-cyan);
     font-weight: bold;
     position: absolute;
     left: -15px;
 }

 .highlight-box {
     background: rgba(64, 196, 255, 0.05);
     border-left: 3px solid var(--color-cyan);
     padding: 20px;
     border-radius: 0 12px 12px 0;
     margin: 25px 0;
 }

 .highlight-box p {
     margin-bottom: 0;
     color: #fff;
 }

 @media (max-width: 991px) {
     .legal-sidebar {
         display: none;
     }

     /* Hide sidebar on mobile to save space */
     .legal-content-card {
         padding: 30px 20px;
         border-radius: 16px;
     }

     .legal-content-block h3 {
         font-size: 1.5rem;
     }

     .waiting-section {
         padding: 30px 0 30px;
     }

     .reason-card {
         padding: 20px 20px;
     }

     .stats-section {
         padding: 20px 0 30px;
     }

     .faq-section,
     .reasons-section,
     .gurus-section {
         padding: 30px 0;
     }

     .testimonials-section {
         padding: 25px 0;
     }

     .cta-section {
         padding: 25px 0 35px;
     }

     .app-download-card,
     .cta-container {
         flex-direction: column;
     }

     .app-content {
         padding: 0px 6px;
     }

     .phone-mockup {
         height: 330px;
     }

     .app-visual {
         min-height: 349px;
     }

     .legal-main-section {
         padding: 31px 0;
     }
 }