:root {
/**    --primary-charcoal: #2d2d2d; **/
   --primary-charcoal: #198754;
    --secondary-charcoal: #58b5a9;
    --dark: #198754;
    --dark-bg: #198754;
    --glass-bg: #198754;
    --glass-border: rgba(255, 255, 255, 0.1);
    --light: #ffffff;
    --gray: #a0a0a0;
    --charcoal-accent: #58b5a9;
}
/* Step 1: Define the font */
@font-face {
    font-family: 'MyCustomFont'; /* Name you'll use in CSS */
    src: url('asset/font/Puckfont Regular.ttf'); /* Path to your .ttf file */
    font-weight: normal;
    font-style: normal;
}

html, body {
  overflow-x: hidden;
}


/* Step 2: Apply the font */
body {
    font-family: 'MyCustomFont', sans-serif;
}


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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    background-attachment: fixed;
    color: var(--light);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(74, 74, 74, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(58, 58, 58, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(45, 45, 45, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

html {
    scroll-behavior: smooth;
}

  .circle {
        position: absolute;
  width: 82%;
  height: 146%;
  border: 2px solid #adb5db;
  border-radius: 50%;
  margin-left: -24rem;
  margin-top: 1rem;
}

.circle-topright {
        position: absolute;
  width: 23%;
  height: 43%;
  border: 2px solid #adb5db;
  border-radius: 50%;
  margin-left: 92%;
  margin-top: 2rem;
}

.navbar .container {
    display: flex;
    justify-content: center;
}

.navbar-brand {
    margin: 0;
}


/* Navigation */
.navbar {
    background: #198754;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.9);
    box-shadow: 0 4px 30px rgba(45, 45, 45, 0.3);
}

.logo-text {
    font-size: 2.7rem;
    font-weight: 700;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--light);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--charcoal-accent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--charcoal-accent);
}

.modal-header {border-bottom: none;}

.btn-download {
    background: linear-gradient(135deg, var(--primary-charcoal), var(--charcoal-accent));
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 74, 74, 0.4);
    color: var(--light);
    background: linear-gradient(135deg, var(--charcoal-accent), var(--primary-charcoal));
}

/* Hero Parallax Section */
.hero-parallax {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #198754;
    z-index: 1;
}


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

.hero-text h1 {
    color: var(--light);
    animation: fadeInUp 1s ease;
    font-size: 2.5rem;
}

.hero-highlight {
    display: block;
    background: linear-gradient(135deg, #e0e0e0, #808080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-playstore,
.btn-appstore {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid;
}

.btn-playstore {
    background: #000;
    color: var(--light);
    border-color: var(--charcoal-accent);
}

.btn-appstore {
    background: #fff;
    color: #000;
    border-color: var(--charcoal-accent);
}

.btn-playstore:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 74, 74, 0.4);
    color: var(--light);
    background: var(--charcoal-accent);
}

.btn-appstore:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(58, 58, 58, 0.4);
    color: var(--light);
    background: var(--primary-charcoal);
}

.btn-playstore i,
.btn-appstore i {
    font-size: 2rem;
}

.btn-playstore span,
.btn-appstore span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-playstore small,
.btn-appstore small {
    font-size: 0.7rem;
    font-weight: 400;
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.phone-mockup {
    position: relative;
    animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-charcoal), var(--charcoal-accent));
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(45, 45, 45, 0.6),
                0 0 100px rgba(74, 74, 74, 0.3);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0 0 20px 20px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--light);
    border-radius: 30px;
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--charcoal-accent);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

/* Section Styling */
.section-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.decorative-dash {
    color: var(--charcoal-accent);
    font-size: 2rem;
}

/* Features Section */
.features-section {
    background: transparent;
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.feature-card {
    position: relative;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(74, 74, 74, 0.4),
                0 0 60px rgba(74, 74, 74, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(40, 40, 40, 0.7);
}

.feature-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    opacity: 0.1;
    z-index: 1;
}

.blob-1 {
    background: radial-gradient(circle, var(--primary-charcoal) 0%, transparent 70%);
    border-radius: 40% 60% 60% 40%;
    animation: blobRotate 10s ease-in-out infinite;
}

.blob-2 {
    background: radial-gradient(circle, var(--charcoal-accent) 0%, transparent 70%);
    border-radius: 60% 40% 40% 60%;
    animation: blobRotate 12s ease-in-out infinite reverse;
}

.blob-3 {
    background: radial-gradient(circle, var(--primary-charcoal) 0%, transparent 70%);
    border-radius: 50% 50% 40% 60%;
    animation: blobRotate 8s ease-in-out infinite;
}

@keyframes blobRotate {
    0%, 100% {
        border-radius: 40% 60% 60% 40%;
    }
    50% {
        border-radius: 60% 40% 40% 60%;
    }
}

.feature-icon {
    font-size: 3rem;
    color: var(--light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light);
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

/* Parallax Divider */
.parallax-divider {
    background: #198754;
    background-attachment: fixed;
    background-size: cover;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}


.parallax-divider .overlay {
    background: #198754;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.parallax-divider .container {
    position: relative;
    z-index: 2;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: var(--light);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Screenshots Section */
.screenshots-section {
    background: #198754;
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.screenshots-carousel {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 2rem 0;
}

.screenshots-carousel::-webkit-scrollbar {
    height: 8px;
}

.screenshots-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.screenshots-carousel::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-charcoal), var(--charcoal-accent));
    border-radius: 10px;
}

.screenshots-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--charcoal-accent);
}

.screenshot-track {
    display: flex;
    gap: 2rem;
    padding: 1rem;
}

.screenshot-item {
    flex: 0 0 auto;
}

.screenshot-card {
    width: 250px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(74, 74, 74, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.screenshot-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(74, 74, 74, 0.5),
                0 0 80px rgba(74, 74, 74, 0.3);
}

.screenshot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Download Section */
.download-section {
    background: transparent;
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

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

.download-content h2 {
    color: var(--light);
}

.download-content p {
    color: rgba(255, 255, 255, 0.8);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: var(--charcoal-accent);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(74, 74, 74, 0.5));
}

.download-buttons-large {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-playstore-large,
.btn-appstore-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
}

.btn-playstore-large {
    background: var(--primary-charcoal);
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-appstore-large {
    background: var(--dark);
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-playstore-large:hover,
.btn-appstore-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: var(--light);
}

.btn-playstore-large i,
.btn-appstore-large i {
    font-size: 3rem;
}

.btn-playstore-large div,
.btn-appstore-large div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.btn-playstore-large small,
.btn-appstore-large small {
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
}

.btn-playstore-large strong,
.btn-appstore-large strong {
    font-size: 1.2rem;
}

.download-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-phone {
    animation: floatPhone 6s ease-in-out infinite;
}

.floating-phone img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(45, 45, 45, 0.6),
                0 0 100px rgba(74, 74, 74, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Section */
.contact-section {
    background: transparent;
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.contact-form .form-control {
    padding: 1rem;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    color: var(--light);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form .form-control:focus {
    border-color: var(--charcoal-accent);
    box-shadow: 0 0 0 0.2rem rgba(74, 74, 74, 0.2),
                0 0 20px rgba(74, 74, 74, 0.1);
    background: rgba(40, 40, 40, 0.7);
    outline: none;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-charcoal), var(--charcoal-accent));
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 3rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 74, 74, 0.4);
    background: linear-gradient(135deg, var(--charcoal-accent), var(--primary-charcoal));
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--light);
}

.footer h5 {
    color: var(--light);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--charcoal-accent);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--charcoal-accent);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
    .col-lg-6.hero-text {
        text-align: center;
        margin-top: 3rem;
    }

    .phone-frame {
        width: 250px;
        height: 500px;
        margin-top: 5rem;
    }

    .download-buttons,
    .download-buttons-large {
        flex-direction: column;
        margin-top: 3rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }

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