:root {
    --primary-color: #00a651;
    --secondary-color: #1e2d35;
    --accent-color: #ffc107;
    --text-color: #ffffff;
    --dark-bg: #0a1014;
    --card-bg: #1e2d35;
    --gradient-primary: linear-gradient(45deg, #00a651, #00c853);
    --gradient-dark: linear-gradient(45deg, #1e2d35, #2c3e50);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

*,
dl,
ol,
ul,
a,
button {
    text-decoration: none;
    margin: 0;
    padding: 0;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    -webkit-appearance: none
}

a {
    text-decoration: none
}

li {
    list-style: none
}

p {
    font-size: .9rem;
    font-weight: 300;
    line-height: 1.6rem
}

*::-moz-selection,
::-moz-selection,
::selection {
    background: #444;
    color: #fff;
    text-shadow: none
}

*::-webkit-input-placeholder,
*:-ms-input-placeholder,
*::-ms-input-placeholder,
*::placeholder {
    color: #ccc;
    font-size: 14px;
    opacity: 1
}

.clear {
    clear: both
}

.header {
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    z-index: 9;
    position: fixed;
    height: 70px;
    background: #222c37;
    padding: 0px 23px;
    box-sizing: border-box
}

.header .logo {
    color: #fff;
    font-size: 16px;
    font-family: titan one, cursive;
    text-align: center;
    height: 70px;
    line-height: 70px;
    position: absolute;
    padding-left: 90px;
    cursor: pointer;
    z-index: 99;
    display: block;
}

.header .logo img {
    width: 50px;
    height: auto;
    vertical-align: middle;
}

.header .navigation {
    position: relative;
    margin-left: 180px;
    margin-top: 15px;
}

.terms_ul{
    padding-left: 23px;
}

.terms_ul li{
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
    list-style-type: disclosure-closed;
    margin-bottom: 13px;
}

.header .navigation .menu_icon {
    width: 30px;
    height: 30px;
    content: '';
    background: url(../images/menu.svg) no-repeat center;
    background-size: 26px;
    position: absolute;
    right: 0;
    top: 15px;
    cursor: pointer
}

.header .menu_bg {
    background: rgba(0, 0, 0, .3);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 999
}

.header .navigation ul {
    text-align: right;
    display: block;
    width: 260px;
    height: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: -300px;
    z-index: 9999999;
    overflow-y: auto
}

.header .navigation ul li {
    display: block;
    line-height: 60px;
    text-align: left;
    padding: 0 16px
}

.header .navigation ul li a {
    color: #fff;
    display: inline-block;
    width: 100%;
    height: 100%;
    font-size: 0.95rem;
    text-transform: uppercase;
    font-weight: 500;
}

.header .navigation ul li:hover {
    background: #f7f7f7
}

@media(min-width:992px) {
    .header .navigation .menu_icon {
        display: none
    }
    .header .navigation ul {
        text-align: right;
        display: block;
        width: auto;
        height: 100%;
        background: 0 0;
        position: inherit;
        left: 0
    }
    .header .navigation ul li {
        display: inline-block;
        line-height: 60px
    }
    .header .navigation ul li a {
        color: #fff
    }
    .header .navigation ul li:hover {
        background: 0 0;
        opacity: .8
    }
}

.footer {
    background: #222c37 !important;
    width: 100%;
    height: 70px;
    position: relative;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 0px 23px;
    box-sizing: border-box;
}

.footer_main {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.footer_item a {
    color: #ffffff !important;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.95rem;
    text-transform: uppercase;
    font-weight: 500;
}

.footer_item a:hover {
    opacity: 0.8;
}

.footer_main .top,
.copy {
    display: none;
}

/* Social Links - Hidden for now as per image */
.social-links {
    display: none;
}

/* WhatsApp Float - Hidden for now as per image */
.whatsapp-float {
    display: none;
}

.container-main {
    padding-top: 110px;
    width: 100%
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner {
    position: relative;
    min-height: 600px;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner .text {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.banner h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.banner p {
    font-size: 1.5em;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s;
}

.download_btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 0.4s;
}

.download_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,166,81,0.4);
}

.section_1 {
    padding: 80px 0;
    background: var(--secondary-color);
}

.section_1 .left {
    float: left;
    width: 40%;
}

.section_1 .right {
    float: right;
    width: 55%;
}

.section_1 h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.section_1 p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.share_small {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social_share {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-dark);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social_share:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.section_2 {
    padding: 80px 0;
    position: relative;
}

.section_2 .icon {
    text-align: center;
    margin-bottom: 60px;
}

.section_2 .icon img {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.section_2 .number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 30px;
}

.section_2 .title {
    font-size: 1.8em;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.section_3 {
    padding: 80px 0;
    background: var(--secondary-color);
}

.section_3 .left,
.section_3 .right {
    width: 48%;
    margin-bottom: 40px;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.section_3 .left:hover,
.section_3 .right:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.section_4 {
    padding: 80px 0;
    background: var(--dark-bg);
}

.section_4 .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.section_4 img {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.section_4 img:hover {
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 2.5em;
    }
    
    .section_1 .left,
    .section_1 .right {
        float: none;
        width: 100%;
        margin-bottom: 40px;
    }
    
    .section_3 .left,
    .section_3 .right {
        width: 100%;
    }
    
    .section_4 img {
        width: 100%;
        height: auto;
    }
}

/* Additional Components */
.box {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.box h3 {
    color: var(--accent-color);
    font-size: 2em;
    margin-bottom: 20px;
}

/* Banner Small */
.banner_small {
    min-height: 300px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Social Media Links at Bottom */
.social-bottom {
    background: #1e2d35;
    padding: 10px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

.social-bottom-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.social-bottom-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    padding: 0 5px;
    opacity: 0.8;
}

.social-bottom-links a:hover {
    opacity: 1;
}

.social-bottom-text {
    color: #7e7c7c;
    font-size: 13px;
    margin: 5px 0;
}

.social-bottom-apps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.social-bottom-apps a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    padding: 0 5px;
    opacity: 0.8;
}

.social-bottom-apps a:hover {
    opacity: 1;
}

/* Hide icons in social links */
.social-bottom i {
    display: none;
}

/* Feature Images Section */
.feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    display: block;
}

.feature-section {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.feature-section h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-section p {
    color: #7e7c7c;
    font-size: 1rem;
    line-height: 1.6;
}