﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI',sans-serif;
}

body {
    background: #f7f8fc;
}

header {
    background: white;
    padding: 18px 0;
}

.container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 55px;
}

nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

    nav ul li a {
        color: black;
        text-decoration: none;
        font-size: 16px;
    }

.demo-btn {
    padding: 12px 28px;
    border-radius: 8px;
    background: linear-gradient(90deg,#3860ff,#bf3fff);
    color: #fff;
    text-decoration: none;
}

.hero {
    background: url('assets/img/hero/slider21.png');
    background-size: cover;
    background-position: center;
    min-height: 700px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 8%;
}

.hero-left {
    width: 45%;
    color: #fff;
}

    .hero-left h1 {
        font-size: 72px;
        font-weight: 700;
        line-height: 1.1;
    }

    .hero-left span {
        color: #4f7dff;
    }

    .hero-left h3 {
        margin-top: 20px;
        font-size: 28px;
    }

    .hero-left p {
        margin: 20px 0;
        font-size: 18px;
        line-height: 1.8;
    }

.price-btn {
    background: #fff;
    padding: 16px 35px;
    display: inline-block;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #6f35ff;
    text-decoration: none;
}

.hero-right {
    position: relative;
    width: 50%;
    text-align: center;
}

.laptop {
    width: 80%;
    animation: float 3s ease infinite;
}

.icon-box {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

    .icon-box i {
        font-size: 34px;
        margin-bottom: 10px;
    }

.attendance {
    left: 40px;
    top: 80px;
}

.payroll {
    left: 40px;
    bottom: 80px;
}

.hrms {
    right: 40px;
    top: 80px;
}

.crm {
    right: 40px;
    bottom: 80px;
}

.features {
    padding: 50px 5%;
}

.title {
    text-align: center;
    margin-bottom: 50px;
}

    .title span {
        color: #6f35ff;
        font-weight: 700;
    }

    .title h2 {
        font-size: 45px;
        margin: 15px 0;
    }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
}

.blue {
    background: #3366ff;
}

.purple {
    background: #a633ff;
}

.green {
    background: #00c56e;
}

.orange {
    background: #ff7b22;
}

.card h3 {
    margin-bottom: 20px;
}

.card ul li {
    margin: 10px 0;
}

@keyframes float {
    50% {
        transform: translateY(-12px);
    }
}

@media(max-width:991px) {

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

        .hero-left h1 {
            font-size: 45px;
        }

    .feature-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .feature-grid {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }
}

.pricing-section {
    padding: 80px 5%;
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    text-align: left;
    position: relative;
}

    .pricing-card.active {
        border: 2px solid #7c3cff;
        transform: scale(1.05);
    }

.ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #7c3cff;
    color: #fff;
    padding: 8px 35px;
    transform: rotate(45deg);
}

.price {
    font-size: 50px;
    font-weight: bold;
    color: #3b5cff;
    margin: 20px 0;
}

    .price span {
        display: block;
        font-size: 14px;
    }

.pricing-card ul {
    list-style: none;
    margin: 20px 0;
}

.pricing-card li {
    padding: 10px 0;
}

.btn-plan {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(90deg,#3b5cff,#b83cff);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
}

.app-register {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.app-box,
.register-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.download-buttons {
    margin-top: 25px;
}

.android-btn,
.ios-btn {
    display: block;
    padding: 15px;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 8px;
    text-decoration: none;
}

.android-btn {
    background: #34c759;
    color: #fff;
}

.ios-btn {
    background: #000;
    color: #fff;
}

.mobile-image {
    width: 250px;
    display: block;
    margin: 20px auto 0;
}

.register-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.row {
    display: grid;
    // grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.register-box input {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.register-box button {
    padding: 16px;
    border: none;
    background: linear-gradient(90deg,#3b5cff,#b83cff);
    color: #fff;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
}

footer {
    background: #03103a;
    color: #fff;
    padding-top: 60px;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin: 10px 0;
}

.footer-btn {
    padding: 12px 25px;
    background: linear-gradient(90deg,#3b5cff,#b83cff);
    border-radius: 8px;
    display: inline-block !important;
}

.copyright {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,.15);
}

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    z-index: 999;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    ul li {
        list-style: none;
    }

.listcheck {
    color: #3b5cff
}

.mb-10 {
    margin-bottom: 10px
}

.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s;
}

    .slide.active {
        opacity: 1;
        z-index: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.slider-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
}

    .slider-content h1 {
        font-size: 70px;
        font-weight: 700;
    }

    .slider-content p {
        font-size: 24px;
        margin: 20px 0;
    }

.slider-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #fff;
    color: #3b5cff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.section-tag {
    text-align: center;
    margin-bottom: 15px;
}

    .section-tag span {
        position: relative;
        display: inline-block;
        color: #6f35ff;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

        .section-tag span:before,
        .section-tag span:after {
            content: "";
            position: absolute;
            top: 50%;
            width: 60px;
            height: 2px;
            background: #6f35ff;
        }

        .section-tag span:before {
            right: 110%;
        }

        .section-tag span:after {
            left: 110%;
        }

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 50px;
}

.download-app {
    /* background: linear-gradient( 135deg, #1f4bff, #7b2cff); */
    padding: 100px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

    .download-app::before {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
        top: -120px;
        right: -120px;
    }

    .download-app::after {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        background: rgba(255,255,255,.05);
        border-radius: 50%;
        bottom: -80px;
        left: -80px;
    }

.app-left {
    width: 45%;
    color: black;
    z-index: 2;
}

.sub-title {
    display: inline-block;
    padding: 10px 25px;
    background: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.app-left h2 {
    font-size: 52px;
    line-height: 1.2;
    margin: 25px 0;
}

.app-left p {
    font-size: 18px;
    line-height: 1.8;
    opacity: .95;
}

.download-btns {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.android-btn,
.ios-btn {
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.android-btn {
    background: #fff;
    color: #1f4bff;
}

.ios-btn {
    background: #000;
    color: #fff;
}

    .android-btn:hover,
    .ios-btn:hover {
        transform: translateY(-4px);
    }

.app-right {
    width: 50%;
    text-align: center;
    z-index: 2;
}

    .app-right img {
        width: 100%;
        max-width: 500px;
        border-radius: 4%;
        filter: drop-shadow( 0 25px 40px rgba(0,0,0,.3));
    }

@media(max-width:991px) {

    .download-app {
        flex-direction: column;
        text-align: center;
    }

    .app-left,
    .app-right {
        width: 100%;
    }

    .download-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .app-left h2 {
        font-size: 38px;
    }

    .app-right {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.formbox {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
}
