﻿body {
    font-family: 'Segoe UI', sans-serif;
}

.hero {
    background: linear-gradient(135deg, #73482980, #3b1000);
    color: white;
    padding: 100px 0;
}

    .hero h1 {
        font-size: 3rem;
        font-weight: 700;
    }

.feature-card {
    transition: .3s;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

.pricing-card {
    border-radius: 15px;
    transition: .3s;
}

    .pricing-card:hover {
        transform: scale(1.03);
    }

.section-title {
    font-weight: 700;
    margin-bottom: 40px;
}

footer {
    background: linear-gradient(135deg, #73482980, #3b1000);
    color: white;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

    .footer-links a:hover {
        color: white;
    }

.dashboard-image {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.3);
}

.premium-offer {
    margin-top: 40px;
    background: linear-gradient( 135deg, #ff6a00, #ee0979, #6a11cb, #2575fc );
    background-size: 300% 300%;
    animation: gradientMove 10s ease infinite;
    border-radius: 25px;
    padding: 50px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.25), 0 0 30px rgba(255,255,255,.15);
}

    .premium-offer::before {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
        top: -120px;
        right: -120px;
    }

    .premium-offer::after {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        background: rgba(255,255,255,.06);
        border-radius: 50%;
        bottom: -80px;
        left: -80px;
    }

.offer-left {
    flex: 2;
    z-index: 2;
}

.offer-right {
    flex: 1;
    z-index: 2;
}

.offer-tag {
    display: inline-block;
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.offer-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.offer-left p {
    font-size: 18px;
    margin-bottom: 25px;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.benefit {
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.2);
}

.gift-card {
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.2), 0 0 20px rgba(255,255,255,.15);
}

.gift-icon {
    font-size: 70px;
}

.gift-card h3 {
    margin-top: 15px;
    font-weight: 700;
}

.gift-card h1 {
    font-size: 4rem;
    font-weight: 800;
}

.unlock-text {
    display: inline-block;
    margin-top: 10px;
    background: #28a745;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: bold;
    letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(40,167,69,.6);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media(max-width:768px) {
    .premium-offer {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .offer-left h2 {
        font-size: 2rem;
    }
}
/*asset css*/
.deadstock-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient( 135deg, #0f172a, #1e3a8a, #2563eb, #38bdf8 );
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
    color: white;
}

    .deadstock-hero::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
        top: -150px;
        left: -120px;
    }

    .deadstock-hero::after {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(255,255,255,.04);
        bottom: -250px;
        right: -150px;
    }

.deadstock-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(15px);
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,.15);
}

.deadstock-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

    .deadstock-title span {
        color: #ffd700;
    }

.deadstock-description {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 35px;
    opacity: .95;
}

.asset-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.asset-feature {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    padding: 12px 18px;
    border-radius: 30px;
    transition: .3s;
}

    .asset-feature:hover {
        transform: translateY(-4px);
        background: rgba(255,255,255,.22);
    }

.asset-highlight {
    margin-top: 25px;
    background: rgba(255,255,255,.12);
    padding: 15px 20px;
    border-radius: 15px;
    backdrop-filter: blur(12px);
}

.asset-image-wrapper {
    position: relative;
}

.asset-image {
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    animation: floatImage 4s ease-in-out infinite;
}

.asset-card {
    position: absolute;
    background: white;
    padding: 12px 18px;
    border-radius: 15px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.card-blue {
    top: 30px;
    left: -40px;
    color: #2563eb;
    animation: floatCard 3s infinite;
}

.card-green {
    bottom: 50px;
    right: -30px;
    color: #198754;
    animation: floatCard 4s infinite;
}

.card-orange {
    top: 55%;
    left: -60px;
    color: #ff6600;
    animation: floatCard 5s infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatImage {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatCard {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media(max-width:768px) {
    .deadstock-title {
        font-size: 38px;
    }

    .asset-card {
        display: none;
    }
}
/* end of code*/
/* Library In-Out Register */
.visitor-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient( 135deg, #0f5132, #198754, #20c997, #0dcaf0 );
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
    color: #fff;
}
    /* Floating Background Circles */
    .visitor-hero::before {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        top: -120px;
        left: -100px;
    }

    .visitor-hero::after {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        bottom: -180px;
        right: -150px;
    }
/* Badge */
.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 30px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.2);
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}
/* Title */
.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

    .hero-title span {
        color: #FFD54F;
    }
/* Description */
.hero-description {
    font-size: 18px;
    line-height: 1.9;
    opacity: .95;
    margin-bottom: 35px;
}
/* Feature Grid */
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.feature-item {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 14px;
    transition: .3s;
}

    .feature-item:hover {
        transform: translateY(-4px);
        background: rgba(255,255,255,.22);
    }
/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

    .hero-buttons .btn {
        padding: 12px 28px;
        font-weight: 600;
        border-radius: 30px;
    }
/* Eco Counter */
.eco-counter {
    display: inline-block;
    padding: 15px 20px;
    border-radius: 15px;
    background: rgb(11 71 5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    font-weight: 500;
}
/* Image Wrapper */
.hero-image-wrapper {
    position: relative;
    text-align: center;
}
/* Main Image */
.hero-image {
    max-width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    animation: floatImage 4s ease-in-out infinite;
}
/* Floating Cards */
.floating-card {
    position: absolute;
    background: #fff;
    color: #333;
    padding: 12px 18px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.card-green {
    top: 30px;
    left: -30px;
    color: #198754;
    animation: floatCard 3s ease infinite;
}

.card-blue {
    bottom: 60px;
    right: -30px;
    color: #0d6efd;
    animation: floatCard 4s ease infinite;
}

.card-orange {
    top: 55%;
    left: -50px;
    color: #ff6600;
    animation: floatCard 5s ease infinite;
}
/* Pricing Section */
.pricing-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
    position: relative;
    height: 100%;
}

    .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,.12);
    }

    .pricing-card.featured {
        border: 3px solid #198754;
        transform: scale(1.03);
    }

.recommended {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #198754;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: #198754;
    margin: 20px 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card li {
    padding: 8px 0;
}
/* Animations */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatImage {
    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatCard {
    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}
/* Mobile */
@media (max-width:768px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .floating-card {
        display: none;
    }

    .feature-grid {
        justify-content: center;
    }

    .pricing-card.featured {
        transform: none;
    }
}
/* end of code */
/* nav bar */
.custom-navbar {
    background: linear-gradient(135deg, #73482980, #3b1000);
    padding: 12px 0;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    transition: .3s;
}

.logo-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1px solid rgba(255,255,255,.2);
}

.brand-main {
    color: white;
    font-size: 22px;
    font-weight: 700;
}

.brand-sub {
    color: #ffd700;
    font-size: 22px;
    font-weight: 700;
}

.nav-custom {
    color: rgba(255,255,255,.9) !important;
    font-weight: 500;
    margin: 0 8px;
    position: relative;
    transition: .3s;
}

    .nav-custom:hover {
        color: #fff !important;
        transform: translateY(-2px);
    }

    .nav-custom::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: #ffd700;
        transition: .3s;
    }

    .nav-custom:hover::after {
        width: 100%;
    }

.ssl-badge {
    background: rgba(255,255,255,.15);
    color: white;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.2);
}

.login-btn {
    background: white;
    color: #ff4500;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 700;
    border: none;
    transition: .3s;
}

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255,255,255,.25);
        color: #ff4500;
    }

.navbar-toggler {
    border: none;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }
/* end of code*/
/* about us */
.about-section {
    background: #f8fafc;
}

.about-badge {
    display: inline-block;
    background: #ff6600;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.founder-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.founder-photo {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #ff6600;
    box-shadow: 0 10px 30px rgba(255,102,0,.25);
}

.qualification-badge {
    display: inline-block;
    background: #fff3e0;
    color: #ff6600;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
}

.about-content h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

.about-feature {
    background: white;
    padding: 20px;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    transition: .3s;
}

    .about-feature:hover {
        transform: translateY(-5px);
    }

.achievement-box {
    background: linear-gradient( 135deg, #ff6600, #ff8c00 );
    color: white;
    padding: 25px;
    border-radius: 20px;
}
/* end of code*/
