*{
    margin: 0px;
    padding: 0%;
}


.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: 0.3s ease-in-out;
}

.whatsapp-float i {
    font-size: 28px;
}

.wa-text {
    font-size: 16px;
    font-weight: 600;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.07);
}


/* button styling */
.book-now-btn {
    background: linear-gradient(to bottom, black, #0a1a33); 
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 8px; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.4); 
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.book-now-btn:hover {
    background: linear-gradient(to bottom, #4a4a4a, #8b5e34);
    box-shadow: 0 6px 8px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}

.book-now-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 5px rgba(0,0,0,0.4);
}


#top-navbar {
    width: 100%;
    height: 10vh;
    position: fixed;
    top: 0;
    left: 0;
    padding-right: 10%;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
    z-index: 999;
}

#top-navbar.scrolled {
    background-color: white; 
    box-shadow: 0 2px 5px rgb(162, 161, 161);
}
.container-fluid{
    margin-bottom: 5%;
}


.logo {
    margin-left: 100px;
    height:30px;
}

.nav-link-custom {
    color: navy !important;
    font-weight: 500;
    margin: 0 10px;
}

.nav-link-custom:hover {
    color: brown !important;
}


.dropdown-custom {
    background-color: navy;
}

.dropdown-custom .dropdown-item {
    color: black;
}

.dropdown-custom .dropdown-item:hover {
    background-color: rgb(215, 215, 215);
    color: black;
}


.login-btn {
    background-color: transparent;
    color: rgb(11, 11, 11);
    border: 2px solid rgb(12, 12, 12);
    border-radius: 25px;
    padding: 8px 18px;
    transition: 0.3s;
    text-decoration: none;
}

.login-btn:hover {
    background-color: white;
    color: navy;
}
.nav-btn {
    background-color: white;
    border-radius: 5px;
}



/* pricing-section */

       :root {
            --blue: #0059ff;
            --brown: #8b5e34;
            --border: #dcdcdc;
            --highlight: #8b5e347e;
            --highlight-text: #8b5e34;
        }

        /* Section */
        .pricing-section {
            padding: 60px 0;
            background: #f7f7f7;
            margin-top: 3%;
        }

        /* Plan Card */
        .pricing-card {
            background: #fff;
            border: 1px solid #8b5e34;
            border-radius: 15px;
            padding: 25px 20px;
            text-align: start;
            transition: 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card.bestseller{
            border: 3px solid gold;
        }

    .pricing-card.bestseller .ribbon {
    position: absolute;
    top: 15px;
    right: -45px;
    background: gold;
    color: #fff;
    padding: 6px 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 10;
}
 .pricing-card.popular{
    border: 3px solid brown;
 }

    .pricing-card.popular .ribbon {
    position: absolute;
    top: 15px;
    right: -45px;
    background: brown;
    color: #fff;
    padding: 6px 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

        .pricing-card:hover {
            transform: translateY(-6px);
        }

        /* Most Popular Badge */
        .popular-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #8b5e34;
            color: #fff;
            padding: 4px 12px;
            border-radius: 8px;
            font-size: 12px;
        }

        /* Prices */
        .old-price {
            text-decoration: line-through;
            color: black;
        }

        .new-price {
            color: #8b5e34;
            ;
            font-size: 38px;
            font-weight: bold;
        }

        /* Buttons */
        .get-btn {
            width: 100%;
            border: 1px solid black ;
            color: white;
            background: #954503;
            font-weight: 600;
            padding: 8px;
            margin-bottom: 8px;
            border-radius: 6px;
        }

        .trial-btn {
            width: 100%;
            background: var(--blue);
            color: #fff;
            border: none;
            padding: 10px;
            border-radius: 6px;
            font-weight: 600;
        }

        /* Feature Category Title */
        .feature-category {
            text-align: center;
            font-weight: bold;
            font-size: 17px;
            margin-top: 20px;
            margin-bottom: 8px;
            color: #222;
        }

        /* Feature List */
        .feature-list li {
            list-style: none;
            padding: 6px 5px;
            font-size: 15px;
            cursor: pointer;
            justify-content: start;
            gap: 6px;
            transition: 0.25s ease;
        }

        /* Unavailable Features */
        .unavail {
            opacity: 0.4;
        }

        /* Hover highlight */
        li.hover-highlight {
            background: var(--highlight);
            color: var(--highlight-text);
            font-weight: 600;
        }

        /* Show More */
        .show-more {
            cursor: pointer;
            color: white;
            border: 1px solid black;
            width: 90%;
            height: 10%;
            border-radius: 5px ;
            background: brown;
            font-weight: 500;
            margin-top: 12px;
            display: inline-block;
        }

        .hidden-feature {
           display: none;

        }

















        





        





