/* Custom Styles for Hero Section */

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


body {
    font-family: 'Jost', sans-serif;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
     overflow-x: hidden;
}
@media (max-width: 768px) {
  .navbar {
    padding: 10px 14px;
  }

  .navbar-brand {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .navbar-toggler {
    padding: 6px 8px;
    border-radius: 8px;
  }
}
/* Header/Navigation Styles */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

/* Logo Styles */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
}

.navbar-logo {
    height: 40px;
    margin-right: 10px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00C676, #1DD882);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Heebo', sans-serif;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: #2d3748 !important;
    font-weight: 500;
    font-size: 1rem;
    margin: 0 10px;
    padding: 8px 16px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white !important;
    background: linear-gradient(135deg, #76F1D5, #71E8F0);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, #76F1D5, #71E8F0);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background: none;
}

.navbar-toggler-icon i {
    color: white;
    font-size: 1.2rem;
}

/* Mobile Menu Styling */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        margin-top: 15px;
        padding: 20px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
        text-align: center;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #F0F0F0 0%, #76F1D5 50%, #76F1D5 100%);
    position: relative;
    min-height: 100vh;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Logo */
.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
    font-family: 'Heebo', sans-serif;
}

/* Hero Content */
.hero-content {
    color: white;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: black;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgb(46, 44, 44, 0.9);
    max-width: 500px;
}

/* Buttons */
.btn-custom {
    background: rgb(184, 156, 156, 0.27);
    border: 2px solid rgb(242, 236, 236, 0.3);
    color: black;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-custom-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: black;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-custom-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

/* Hero Mobile Slider */
.mobile-slider-container {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.mobile-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mobile-slide {
    display: none;
    width: 100%;
}

.mobile-slide.active {
    display: block;
}

.mobile-slide img {
    width: 100%;
    height: auto;
    border-radius: 22px;
}

/* Hero Navigation Dots */
.hero-nav-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* Curved Bottom */
.curved-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    clip-path: ellipse(100% 100% at 50% 100%);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-section {
        text-align: center;
        padding: 120px 0 100px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-custom,
    .btn-custom-secondary {
        width: 200px;
    }

    .mobile-slider-container {
        margin-top: 40px;
        max-width: 250px;
    }

    .hero-nav-dots {
        position: static;
        flex-direction: row;
        transform: none;
        margin-top: 20px;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .mobile-slider-container {
        max-width: 220px;
    }

    .curved-bottom {
        height: 60px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-section {
        padding: 100px 0 80px;
    }

    .mobile-slider-container {
        max-width: 200px;
    }
}

/* Animation Effects */
.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.mobile-mockup-container {
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

/* Additional Decorative Elements */
.hero-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

/* About App Section Styles */
.about-section {
    background: #FFFFFF;
    padding: 100px 0;
}

.about-content {
    padding-right: 2rem;
}

.about-badge {
    background: linear-gradient(135deg, #76F1D5 , #71E8F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Stats Section */
.stats-row {
    margin: 2rem 0;
}

.stats-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stats-item:hover {
    transform: translateY(-5px);
}

.stats-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #76F1D5, #76F1D5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stats-icon:nth-child(even) {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.stats-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
}

.stats-label {
    color: #76F1D5;
    font-weight: 600;
    font-size: 0.9rem;
}

/* About Button */
.btn-about-custom {
    background: linear-gradient(135deg, #76F1D5, #77F1D5);
    border: none;
    color: white;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-about-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 198, 118, 0.3);
    color: white;
}

/* Mobile Mockups Container */
.mobile-mockups-container {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Phone Mockups */
.mobile-mockup {
    position: absolute;
    width: 200px;
    height: 400px;
    transition: all 0.3s ease;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

/* Main Phone (Center) */
.mockup-main {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.mockup-main .phone-screen {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.app-content {
    padding: 20px;
    text-align: center;
}

.transform-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.transform-section p {
    margin-bottom: 0.5rem;
}

.small-text {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 15px 0 30px;
}

.navigation-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.nav-dot.active {
    background: white;
}

.action-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.skip-btn,
.next-btn {
    background: none;
    border: none;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
}

/* Left Phone */
.mockup-left {
    top: 20%;
    left: 15%;
    transform: translate(-50%, -50%) scale(0.8) rotate(-10deg);
    z-index: 1;
}

.walking-screen {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.walking-content {
    text-align: center;
}

.walking-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Right Phone */
.mockup-right {
    top: 20%;
    right: 15%;
    transform: translate(50%, -50%) scale(0.8) rotate(10deg);
    z-index: 2;
}

.profile-screen {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    padding: 20px;
}

.profile-image {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 20px auto;
}

.chart-bars {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 8px;
    height: 80px;
    margin-top: 30px;
}

.bar {
    width: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.bar:nth-child(1) {
    height: 40px;
}

.bar:nth-child(2) {
    height: 60px;
}

.bar:nth-child(3) {
    height: 80px;
}

.bar:nth-child(4) {
    height: 45px;
}

.bar:nth-child(5) {
    height: 55px;
}

.bar.active {
    background: white;
}

/* Hover Effects */
.mockup-main:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.mockup-left:hover {
    transform: translate(-50%, -50%) scale(0.85) rotate(-5deg);
}

.mockup-right:hover {
    transform: translate(50%, -50%) scale(0.85) rotate(5deg);
}

/* Responsive Design for About Section */
@media (max-width: 991.98px) {
    .about-title {
        font-size: 2.2rem;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .mobile-mockups-container {
        height: 500px;
    }

    .mobile-mockup {
        width: 160px;
        height: 320px;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .stats-row {
        margin: 1.5rem 0;
    }

    .mobile-mockups-container {
        height: 400px;
    }

    .mobile-mockup {
        width: 140px;
        height: 280px;
    }

    .mockup-left {
        left: 10%;
    }

    .mockup-right {
        right: 10%;
    }
}

@media (max-width: 575.98px) {
    .about-title {
        font-size: 1.6rem;
    }

    .mobile-mockups-container {
        height: 350px;
    }

    .mobile-mockup {
        width: 120px;
        height: 240px;
    }
}

/* App Features Section Styles */
.features-section {
    background: #ffffff;
    padding: 100px 0;
}

.features-badge {
    background: linear-gradient(135deg, #76F1D5, #77F1D5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.features-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 3rem;
}

/* Feature Cards */
.feature-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #76F1D5, #77F1D5);;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-icon-secondary {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 198, 118, 0.3);
}

.feature-card:hover .feature-icon-secondary {
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Feature Content */
.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Staggered Animation */
.feature-card {
    animation: fadeInUp 0.8s ease-out both;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

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

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

/* Responsive Design for Features Section */
@media (max-width: 991.98px) {
    .features-title {
        font-size: 2.2rem;
    }

    .features-section {
        padding: 70px 0;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .features-title {
        font-size: 1.8rem;
    }

    .features-section {
        padding: 50px 0;
    }

    .feature-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .features-title {
        font-size: 1.6rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* Download Section Styles */
.download-section {
    background: #ffffff;
    padding: 100px 0;
}

.download-content {
    padding-left: 2rem;
}

.download-badge {
    background: linear-gradient(135deg, #76F1D5, #77F1D5);;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.download-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.download-description {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Mobile Mockups for Download */
.download-mockups-container {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockups-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.download-mockup {
    position: absolute;
    width: 220px;
    height: 450px;
    transition: all 0.4s ease;
}

.download-mockup .phone-frame {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 35px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.download-mockup .phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

/* Phone Positioning */
.mockup-1 {
    top: 10%;
    left: -5%;
    transform: rotate(-15deg) scale(0.9);
    z-index: 1;
}

.mockup-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 3;
}

.mockup-3 {
    top: 10%;
    right: -5%;
    transform: rotate(15deg) scale(0.9);
    z-index: 2;
}

/* Status Bar */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.signal-battery {
    display: flex;
    gap: 5px;
}

/* Walking Lunges Screen (Purple) */
.walking-lunges-screen {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
}

.walking-lunges-screen .screen-content {
    padding: 30px 20px;
    text-align: center;
    height: calc(100% - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exercise-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
}

/* Transform Screen (Blue Gradient) */
.transform-screen {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.transform-content {
    padding: 30px 20px;
    text-align: center;
    height: calc(100% - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-image-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
}

.checkmark {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1d4ed8;
    font-size: 1.2rem;
}

.transform-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.transform-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.transform-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.nav-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.dot.active {
    background: white;
}

.action-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.skip-btn,
.next-btn {
    background: none;
    border: none;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
}

/* Goal Screen (Light Blue) */
.goal-screen {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
}

.goal-content {
    padding: 20px;
    height: calc(100% - 60px);
}

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

.goal-question {
    font-size: 0.8rem;
    font-weight: 600;
}

.goal-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.goal-chart {
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Download Buttons */
.download-buttons {
    margin-top: 2rem;
}

.download-btn {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.app-store-btn {
    background: linear-gradient(135deg, #76F1D5, #77F1D5);
}

.play-store-btn {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.btn-icon {
    font-size: 2.5rem;
    margin-right: 15px;
    min-width: 50px;
}

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

.available-text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.store-name {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Hover Effects for Mockups */
.mockup-1:hover {
    transform: rotate(-10deg) scale(0.95);
}

.mockup-2:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.mockup-3:hover {
    transform: rotate(10deg) scale(0.95);
}

/* Responsive Design for Download Section */
@media (max-width: 991.98px) {
    .download-title {
        font-size: 2.2rem;
    }

    .download-content {
        padding-left: 0;
        margin-top: 3rem;
        text-align: center;
    }

    .download-mockups-container {
        height: 500px;
    }

    .download-mockup {
        width: 180px;
        height: 360px;
    }
}

@media (max-width: 767.98px) {
    .download-section {
        padding: 60px 0;
    }

    .download-title {
        font-size: 1.8rem;
    }

    .download-mockups-container {
        height: 400px;
        margin-bottom: 2rem;
    }

    .download-mockup {
        width: 150px;
        height: 300px;
    }

    .mockup-1 {
        left: 0%;
    }

    .mockup-3 {
        right: 0%;
    }

    .download-buttons .row {
        flex-direction: column;
    }

    .download-btn {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .download-title {
        font-size: 1.6rem;
    }

    .download-mockups-container {
        height: 350px;
    }

    .download-mockup {
        width: 130px;
        height: 260px;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.testimonials-badge {
    background: linear-gradient(135deg, #76F1D5, #77F1D5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonials-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 3rem;
}

/* Slider Container */
.testimonials-slider-container {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-slider {
    overflow: hidden;
}

.slider-wrapper {
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: calc(100% * 5 / 3);
    /* Adjust based on number of items */
}

.testimonial-item {
    flex: 0 0 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Highlighted Card (Center) */
.testimonial-card-highlight {
    background: linear-gradient(135deg, #76F1D5, #77F1D5);
    color: white;
    transform: scale(1.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card-highlight .client-name,
.testimonial-card-highlight .testimonial-text {
    color: white;
}

.testimonial-card-highlight .client-profession {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-card-highlight .star-rating i {
    color: #ffd700;
}

/* Client Info */
.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.client-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
    border: 3px solid #f0f0f0;
}

.testimonial-card-highlight .client-photo {
    border-color: rgba(255, 255, 255, 0.3);
}

.client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details {
    flex: 1;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.client-profession {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 0.5rem;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 2px;
}

.star-rating i {
    color: #ffd700;
    font-size: 0.9rem;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    font-style: italic;
    flex: 1;
}

/* Navigation Arrows */
.slider-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #76F1D5, #77F1D5);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 198, 118, 0.3);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Responsive Design for Testimonials */
@media (max-width: 991.98px) {
    .testimonials-title {
        font-size: 2.2rem;
    }

    .slider-track {
        width: calc(100% * 5 / 2);
        /* Adjust for 2 items visible */
    }

    .testimonial-item {
        flex: 0 0 50%;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .client-photo {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 767.98px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-title {
        font-size: 1.8rem;
    }

    .slider-track {
        width: calc(100% * 5);
        /* All items in single column */
    }

    .testimonial-item {
        flex: 0 0 100%;
    }

    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .client-info {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1rem;
    }

    .client-photo {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .slider-navigation {
        margin-top: 2rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .testimonials-title {
        font-size: 1.6rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .client-name {
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* Animation for testimonials loading */
.testimonial-item {
    animation: fadeInScale 0.6s ease-out both;
}

.testimonial-item:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-item:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-item:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

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

/* Smooth highlight transition */
.testimonial-highlight .testimonial-card {
    animation: highlightGlow 0.5s ease-in-out;
}

@keyframes highlightGlow {
    0% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 15px 35px rgba(0, 198, 118, 0.3);
    }

    100% {
        box-shadow: 0 10px 25px rgba(0, 198, 118, 0.2);
    }
}

/* Footer Section Styles */
.footer-section {
    background: linear-gradient(135deg, #76F1D5 0%, #76F1D5 50%, #76F1D5 100%);
    color: white;
    position: relative;
    margin-top: 0;
}

/* Curved Top */
.footer-curve-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #f8f9fa;
    clip-path: ellipse(100% 100% at 50% 0%);
    z-index: 1;
}

/* Footer Content */
.footer-section .container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: black;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-content {
    color: rgba(41, 40, 40, 0.9);
}

/* Address Section */
.address-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.address-item i {
    width: 20px;
    margin-right: 1rem;
    margin-top: 2px;
    color: rgba(41, 40, 40, 0.9);
    flex-shrink: 0;
}

.address-item span {
    line-height: 1.6;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #77f1d5;
    border: 1px solid rgba(41, 40, 40, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateY(-2px);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(41, 40, 40, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 0.7rem;
    margin-right: 0.75rem;
    width: 12px;
    opacity: 0.7;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
}

/* Newsletter Section */
.newsletter-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(21, 20, 20, 0.9);
}

.newsletter-form {
    margin-top: 1.5rem;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(43, 40, 40, 0.2);
    border-radius: 25px;
    padding: 12px 20px;
    color: rgb(71, 70, 70);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: black;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    background: black;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-left: -50px;
    position: relative;
    z-index: 3;
}

.newsletter-btn:hover {
    background: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(248, 248, 248, 0.975);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.copyright-text {
    font-size: 0.9rem;
    color:transparent;
    margin: 0;
    line-height: 1.6;
}

.copyright-link {
    color:black;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.copyright-link:hover {
    color: black;
    border-bottom-color: rgba(20, 19, 19, 0.5);
}

/* Footer Menu */
.footer-menu {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-menu-link {
    color: rgba(8, 8, 8, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-menu-link:hover {
    color: white ;
}

.footer-menu-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgb(255, 255, 255);
    transition: width 0.3s ease;
}

.footer-menu-link:hover::after {
    width: 100%;
}

/* Responsive Design for Footer */
@media (max-width: 10px) {
    .footer-section .container {
        padding-top: 100px;
    }

    .footer-curve-top {
        height: 80px;
    }

    .footer-widget {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-menu {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .footer-section .container {
        padding-top: 80px;
    }

    .footer-curve-top {
        height: 60px;
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .address-item {
        justify-content: center;
        text-align: left;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links {
        max-width: 200px;
        margin: 0 auto;
    }

    .newsletter-form {
        max-width: 300px;
        margin: 1.5rem auto 0;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-menu {
        margin-top: 1rem;
        gap: 1rem;
    }

    .copyright-text {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .footer-section .container {
        padding-top: 70px;
    }

    .footer-widget {
        margin-bottom: 2rem;
    }

    .footer-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .address-item {
        font-size: 0.9rem;
    }

    .newsletter-input {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .newsletter-btn {
        width: 40px;
        height: 40px;
        margin-left: -45px;
    }
}

/* Decorative Elements */
.footer-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 8s ease-in-out infinite;
}

.footer-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 10s ease-in-out infinite reverse;
}

@keyframes floatSlow {

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}