@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #00FF88;
    --primary-glow: rgba(0, 255, 136, 0.4);
    --bg-dark: #000000;
    --bg-surface: #0A0A0A;
    --bg-card: rgba(15, 15, 15, 0.8);
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --white: #FFFFFF;
    --gradient-dark: linear-gradient(135deg, #000000 0%, #111111 100%);
    --gradient-primary: linear-gradient(135deg, #00FF88 0%, #00CC6A 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-main);
    position: relative;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: var(--white);
}

h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 25px;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 42px;
    color: var(--white);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3,
h4 {
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--white);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

h4 {
    font-size: 1.5rem;
}

h5,
h6 {
    font-size: 1.25rem;
    margin: 0 0 10px;
}

img {
    border: none;
    outline: none;
    max-width: 100%;
}

ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

a,
a:hover {
    text-decoration: none;
    color: var(--primary);
}

a:focus {
    outline: none;
    text-decoration: none;
}

a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Helper Class */
.padding {
    padding: 120px 0;
}

.no-padding {
    padding: 0;
}

.padding-15 {
    padding: 15px;
}

.padding-20 {
    padding: 20px;
}

.bg-gradiant {
    background: var(--gradient-dark);
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-60 {
    margin-bottom: 60px;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: var(--bg-dark);
    height: 100%;
    width: 100%;
    transition: all .5s .2s ease;
}

.loader {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 60px;
    height: 60px;
    display: block;
    margin: auto;
    margin-top: -30px;
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

/*Battery*/
.battery {
    width: 28px;
    height: 14px;
    border: 1px var(--primary) solid;
    border-radius: 2px;
    position: relative;
    animation: charge 5s linear infinite;
    top: 40px;
    margin: 0 auto;
}

.battery:after {
    width: 2px;
    height: 7px;
    background-color: var(--primary);
    border-radius: 0px 1px 1px 0px;
    position: absolute;
    content: "";
    top: 2px;
    right: -4px;
}

@keyframes charge {
    0% {
        box-shadow: inset 0px 0px 0px var(--primary);
    }

    100% {
        box-shadow: inset 30px 0px 0px var(--primary);
    }
}

/* Button Style */
.btn-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-group a {
    margin: 5px;
    margin-left: 0;
}

.download-btn {
    display: inline-block;
    transition: var(--transition);
}

.download-btn:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px var(--primary-glow));
}

.download-btn img {
    height: 56px;
    width: auto;
    display: block;
}


/* Transition Effect */
a,
a:hover,
.overlay,
img,
.form-control,
.form-control:hover,
button {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

/* ==========================================================================
   Header Section
   ========================================================================== */
.header-section {
    background-color: transparent;
    width: 100%;
    height: 90px;
    z-index: 999;
    position: fixed;
    left: 0;
    top: 0;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar-fixed-top.header-section {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0;
}

.navbar-fixed-top ul.nav>li>a {
    color: var(--white);
}

.navbar-fixed-top ul.nav>li>a:hover,
.navbar-fixed-top ul.nav>li>a:focus,
.navbar-fixed-top ul.nav>li.active>a {
    color: var(--primary);
}

.navbar {
    border: none;
    margin: 0;
    position: relative;
    padding: 0;
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    text-transform: uppercase;
}

/* Nav Menu */
#navbar {
    z-index: 999;
    padding: 0 15px;
}

ul.nav>li>a {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Sora', sans-serif;
    display: inline-block;
    vertical-align: middle;
    padding: 0 15px;
    font-size: 15px;
    font-weight: 600;
    line-height: 90px;
    transition: var(--transition);
}

ul.nav>li>a:hover,
ul.nav>li>a:focus,
ul.nav>li>a.active {
    background: none;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.menu-btn {
    margin-left: 10px;
    margin-top: 10px;
}

/*Mobile Menu */
.menu-wrap {
    position: relative;
}

.slicknav_menu {
    background: none;
    padding: 4px 0;
    display: none;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.slicknav_nav {
    background-color: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-top: 5px;
}

.slicknav_btn {
    background-color: transparent;
    margin: 17px 5px 19px;
}

.slicknav_nav .slicknav_row:hover,
.slicknav_nav .slicknav_row,
.slicknav_nav a,
.slicknav_nav a:hover {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
    padding: 12px 20px;
    margin: 0;
    color: var(--text-muted);
}

.slicknav_nav a .caret {
    display: none;
}

.slicknav_nav ul {
    margin: 0;
}

.slicknav_nav ul li a {
    padding-left: 30px;
    font-size: 12px;
}

.slicknav_nav .slicknav_row:hover,
.slicknav_nav a:hover {
    background-color: transparent;
    color: var(--primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    background: #000000;
    position: relative;
    width: 100%;
    height: 100vh;
    padding-top: 90px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.hero-section:before {
    background: radial-gradient(circle at 70% 50%, rgba(20, 20, 20, 0.2) 0%, rgba(0, 0, 0, 1) 100%);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -2;
}

.hero-section:after {
    background-image: url("../img/hero-mockup.png");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    position: absolute;
    width: 35%;
    height: 65%;
    right: 8%;
    top: 18%;
    z-index: 1;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 5;
}

.hero-content h1 {
    color: var(--white);
    font-size: 85px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.05em;
    background: linear-gradient(180deg, #FFFFFF 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    line-height: 1.1;
    display: inline-block;
}

@keyframes titlePulse {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 25px rgba(0, 255, 136, 0.6));
    }
}

.hero-content h1 {
    animation: titlePulse 4s ease-in-out infinite;
}

.hero-content p {
    font-size: 20px;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 40px;
}

.ocean {
    background: var(--bg-dark);
    height: 5%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave {
    background: url("../img/wave.svg") repeat-x;
    position: absolute;
    top: -198px;
    width: 6400px;
    height: 198px;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
    filter: invert(1) brightness(0.1);
}

.wave:nth-of-type(2) {
    top: -175px;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 7s ease -1.25s infinite;
    opacity: 0.5;
}

@keyframes wave {
    0% {
        margin-left: 0;
    }

    100% {
        margin-left: -1600px;
    }
}

@keyframes swell {

    0%,
    100% {
        transform: translate3d(0, -25px, 0);
    }

    50% {
        transform: translate3d(0, 5px, 0);
    }
}

/* ==========================================================================
   Feature Section
   ========================================================================== */
.feature-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.feature-items {
    margin-top: -15px;
    margin-bottom: -15px;
}

.feature-box {
    padding: 60px 30px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-box:hover i {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary-glow);
}

.feature-box:hover h3 {
    color: var(--primary);
}

.feature-box:hover p {
    color: var(--white);
}

.feature-box i {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    font-size: 32px;
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 16px;
    margin: 0 auto 25px;
    display: block;
    transition: var(--transition);
}

.feature-box p {
    margin-bottom: 0;
    font-size: 16px;
}

.feature-box h3 {
    margin-bottom: 15px;
    font-size: 20px;
    text-transform: none;
    letter-spacing: normal;
}

/*Feature Wave*/
.feature-wave {
    background-image: url("../img/feature-wave.png");
    background-repeat: no-repeat;
    background-position: bottom center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
}

/* ==========================================================================
   Screenshot Section
   ========================================================================== */
.screenshot-section {
    background: var(--bg-surface);
}

.screenshot-item img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.screenshot-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.owl-nav div {
    background: var(--bg-surface);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 18px;
    color: var(--white);
    line-height: 50px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    left: -40px;
    top: calc(50% - 30px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.owl-nav div:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.owl-nav div.owl-next {
    left: auto;
    right: -40px;
}

/* ==========================================================================
   Download Section
   ========================================================================== */
.download-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: var(--gradient-dark);
}

.download-mockup {
    background-image: url("../img/download-mockup.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    content: "";
    position: absolute;
    width: 40%;
    height: 80%;
    right: 5%;
    top: 10%;
    z-index: -1;
    opacity: 0.5;
}

.download-content h2 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 20px;
}

.download-content p {
    color: var(--text-muted);
    font-size: 20px;
    margin-bottom: 40px;
}

.download-content .download-btn:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 10px 20px var(--primary-glow));
}

/* ==========================================================================
   Subscribe Section
   ========================================================================== */
.subscribe-section {
    padding: 120px 0 60px;
    position: relative;
    z-index: 1;
    background: var(--bg-dark);
}

.footer-container {
    position: relative;
}

.widget-wave {
    background-image: url("../img/widget-wave.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.widget-brand .logo {
    margin-bottom: 30px;
}

.widget-brand p {
    color: #fff;
}

.subscribe-content {
    display: block;
    margin-bottom: 40px;
}

.subscribe-content p {
    color: #ddd;
}

.subscribe-wrap {
    display: block;
    padding-top: 20px;
    text-align: right;
}

.subscribe-wrap h3 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.1em;
    font-family: 'Sora', sans-serif;
}

/*Footer Style*/
.footer {
    display: block;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Inter', sans-serif;
}

.footer p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.footer a {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--white);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* ==========================================================================
   Scroll To Top
   ========================================================================== */
#scroll-to-top {
    background-color: var(--bg-surface);
    display: none;
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 14px;
    border-radius: 50%;
    line-height: 45px;
    color: var(--primary);
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 999;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

#scroll-to-top:hover {
    background-color: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}