.navbar {
    background: linear-gradient(180deg, rgba(26, 28, 34, 0.53) 0%, rgba(26, 28, 34, 0) 100%);
    transition: all 0.3s ease;
}

.navbar.sticky {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px);
    z-index: 999;
}

body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
}
.hero {
    color: white;
    padding: 20px;
}
.hero h1 {
    font-size: 3rem;
    animation: fadeInDown 2s;
}
.hero p {
    font-size: 1.2rem;
    margin-top: 20px;
    animation: fadeInUp 2s;
}
.hero .btn {
    margin-top: 10px;
    animation: zoomIn 2s;
}
.hero .floating {
    animation: float 4s infinite;
}
.fs-14 {
    font-size: 14px;
}
.btn-primary {
    background-color: #b69132;
    border-color: #b69132;
    color: black;
}
.btn-outline-primary {
    color: #b69132;
    border-color: #b69132;
}
.highlight-text {
    font-weight: bold;
    background: linear-gradient(90deg, #b69132, #f6d47e, #b69132);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.navbar-nav .nav-link {
    color: #b69132;
    font-size: 14px;
    font-weight: 600;
}
.navbar-nav .nav-link:hover {
    color: #ffffff;
}
#features .card {
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all .5s ease-in-out;
}

#features .card:hover {
    transform: translateY(-10px);
}

#features .card iconify-icon {
    color: #f6d47e;
}

.ebook-img {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

#e-book .card {
    padding: 30px;
    background-color: #000;
    background-image: url('../images/bitouin.jpg');
    background-position: bottom right;
    box-shadow: 0px 4px 6px rgba(255, 255, 255, 0.1), /* Light outer shadow */
              0px 1px 3px rgba(0, 0, 0, 0.5);
    border: 1px solid #5b5b5b;          
    background-repeat: no-repeat;
    background-size: 25%;
}

.plan-cards {
    margin-top: 40px;
}

.card.plan {
    background-color: #121212;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0px 4px 6px rgba(255, 255, 255, 0.1), /* Light outer shadow */
              0px 1px 3px rgba(0, 0, 0, 0.5);
    border: 1px solid #5b5b5b;          
    transition: all 1s ease-in-out;
}

.card.plan:hover {
    border-color: #fff;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-icons a{
    color: #ffffff;
    text-decoration: none;
}

.social-icons a:hover {
    color: #b69132;
}

.card.plan .price {
    font-size: 60px;
}

#e-book .card .content {
    max-width: 75%;
}

.card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.card h2 {
    font-size: 1.8rem;
    margin: 10px 0;
}

.card p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(-10px) translateY(-5px);
    }
    50% {
        transform: translateY(-10px) translateY(5px);
    }
}