*{
    margin: 0px;
    padding: 0%;
    box-sizing: border-box;
}
body {
    padding-top: 80px;
}

.custom-navbar {
    background: linear-gradient(135deg,
            #02152f,
            #03234d,
            #02152f);
    backdrop-filter: blur(15px);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Menu */

.navbar-nav {
    gap: 18px;
}

.nav-link {
    color: #fff !important;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    transition: .3s;
}

.nav-link:hover {
    color: #10b981 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    border-radius: 20px;
    background: #10b981;
    transition: .35s;
}

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

.nav-link.active {
    color: #10b981 !important;
}

/* Logo */

.navbar-brand img {
    transition: .4s;
}

.navbar-brand:hover img {
    transform: scale(1.06);
}

/* Login */

.btn-login {
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 14px;
    font-weight: 600;
    transition: .35s;
}

.btn-login:hover {
    color: white;
    border-color: #10b981;
    box-shadow:
        0 0 15px rgba(16, 185, 129, .4);
}

/* Register */

.btn-register {
    padding: 12px 30px;
    text-decoration: none;
    color: white;
    font-weight: 600;

    border-radius: 14px;

    background: linear-gradient(135deg,
            #10b981,
            #22c55e);

    transition: .35s;
}

.btn-register:hover {
    color: white;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(16, 185, 129, .35);
}
.custom-navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;

    background: linear-gradient(90deg,
            transparent,
            #10b981,
            transparent);
}



/* Hero section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;

}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
}

.hero-title span {
    color: #10b981;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.hero-features {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.hero-dashboard img {
    width: 100%;
    border-radius: 24px;
}
/* hero section end */
.features-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-tag {
    color: #10b981;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-header h2 {
    margin-top: 15px;
    font-size: 48px;
    font-weight: 800;
    color: #02152f;
}

.section-header h2 span {
    color: #10b981;
}

.section-header p {
    max-width: 700px;
    margin: auto;
    color: #64748b;
    margin-top: 15px;
    font-size: 18px;
}

.feature-card {
    background: white;
    border-radius: 22px;
    padding: 35px 25px;

    height: 100%;

    border: 1px solid #e5e7eb;

    transition: .4s ease;

    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(90deg,
            #10b981,
            #22c55e);

    transform: scaleX(0);
    transition: .4s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);

    box-shadow:
        0 20px 40px rgba(2, 21, 47, .12);
}

.icon-box {
    width: 80px;
    height: 80px;

    border-radius: 50%;

    background: rgba(16, 185, 129, .10);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    transition: .4s;
}

.icon-box i {
    font-size: 32px;
    color: #10b981;
}

.feature-card:hover .icon-box {
    background: #10b981;
    transform: scale(1.08);
}

.feature-card:hover .icon-box i {
    color: white;
}

.feature-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #02152f;
    margin-bottom: 15px;
}

.feature-card p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}
/* dashboard preview section */
.dashboard-preview-section {
    padding: 120px 0;
    background:
        radial-gradient(circle at top left,
            rgba(16, 185, 129, .08),
            transparent 40%),
        #f8fafc;
}

.preview-tag {
    color: #10b981;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.preview-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    color: #02152f;
    margin: 20px 0;
}

.preview-title span {
    color: #10b981;
}

.preview-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 35px;
}

.preview-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 28px;

    background: linear-gradient(135deg,
            #10b981,
            #22c55e);

    color: white;
    text-decoration: none;

    border-radius: 12px;
    font-weight: 600;

    transition: .3s;
}

.preview-btn:hover {
    color: white;
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(16, 185, 129, .3);
}

.preview-stats {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.stat-item h3 {
    color: #02152f;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item p {
    color: #64748b;
    margin: 0;
}

.dashboard-preview {
    position: relative;
}

.dashboard-preview img {
    width: 100%;
    border-radius: 25px;

    box-shadow:
        0 30px 60px rgba(2, 21, 47, .15);

    transition: .5s;
}

.dashboard-preview img:hover {
    transform:
        translateY(-10px) scale(1.02);
}

.floating-card {

    position: absolute;

    top: 30px;
    right: -20px;

    background: white;

    padding: 15px 20px;

    border-radius: 16px;

    display: flex;
    align-items: center;
    gap: 15px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .08);

    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 26px;
    color: #10b981;
}

.floating-card strong {
    display: block;
    color: #02152f;
}

.floating-card span {
    font-size: 13px;
    color: #64748b;
}

@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}
/* CTA section */
.cta-section {
    padding: 100px 0;
    background: #f8fafc;
}

.cta-card {

    background:
        linear-gradient(135deg,
            #02152f,
            #052b58);

    border-radius: 24px;

    padding: 40px 50px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: relative;
    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(2, 21, 47, .15);
}

.cta-card::before {
    content: '';

    position: absolute;

    width: 300px;
    height: 300px;

    background:
        radial-gradient(rgba(16, 185, 129, .25),
            transparent);

    top: -120px;
    left: -80px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 2;
}

.cta-icon {

    width: 80px;
    height: 80px;

    border-radius: 20px;

    background:
        rgba(16, 185, 129, .15);

    display: flex;
    justify-content: center;
    align-items: center;

    backdrop-filter: blur(10px);
}

.cta-icon i {
    color: #10b981;
    font-size: 34px;
}

.cta-left h2 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-left p {
    color: #cbd5e1;
    margin: 0;
    font-size: 17px;
}

.cta-btn {

    background:
        linear-gradient(135deg,
            #10b981,
            #22c55e);

    color: white;
    text-decoration: none;

    padding: 16px 34px;

    border-radius: 14px;

    font-weight: 600;

    display: flex;
    align-items: center;
    gap: 10px;

    transition: .4s;
}

.cta-btn:hover {

    color: white;

    transform:
        translateY(-5px);

    box-shadow:
        0 15px 35px rgba(16, 185, 129, .35);
}

.cta-btn i {
    transition: .3s;
}

.cta-btn:hover i {
    transform: translateX(5px);
}
@media(max-width:768px) {

    .cta-card {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 35px 25px;
    }

    .cta-left {
        flex-direction: column;
    }

    .cta-left h2 {
        font-size: 28px;
    }
}
/* footer */
.footer-section {

    background:
        linear-gradient(135deg,
            #02152f,
            #052b58);

    padding: 70px 0 20px;

    color: white;
}

.footer-logo img {
    max-width: 220px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #cbd5e1;
    line-height: 1.8;
}

.footer-section h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {

    color: #cbd5e1;

    text-decoration: none;

    transition: .3s;
}

.footer-links a:hover {

    color: #10b981;

    padding-left: 5px;
}

.footer-contact {

    list-style: none;
    padding: 0;
}

.footer-contact li {

    margin-bottom: 15px;

    color: #cbd5e1;
}

.footer-contact i {

    color: #10b981;

    margin-right: 10px;
}

.social-icons {

    display: flex;

    gap: 12px;

    margin-top: 20px;
}

.social-icons a {

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    transition: .3s;
}

.social-icons a:hover {

    background: #10b981;

    transform: translateY(-4px);
}

.newsletter-text {
    color: #cbd5e1;
}

.newsletter-box {

    display: flex;

    overflow: hidden;

    border-radius: 12px;

    background: rgba(255, 255, 255, .08);
}

.newsletter-box input {

    flex: 1;

    border: none;

    outline: none;

    padding: 14px;

    background: transparent;

    color: white;
}

.newsletter-box input::placeholder {
    color: #cbd5e1;
}

.newsletter-box button {

    border: none;

    width: 60px;

    background: #10b981;

    color: white;
}

.footer-divider {

    margin: 40px 0 20px;

    border-color: rgba(255, 255, 255, .1);
}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #cbd5e1;

    font-size: 14px;
}
@media(max-width:768px) {

    .footer-bottom {

        flex-direction: column;

        text-align: center;

        gap: 10px;
    }
}
