

/* CSS for hover effect and shadow */
.btn-outline-secondary {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* CSS for arrow animation */
.fa-arrow-right {
    animation: arrowAnimation 1s infinite alternate;
}

@keyframes arrowAnimation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(5px);
    }
}

#headerNav {
    background-color: #3252BF;
}

.mainPart {
    color: #FEFBF6 !important;
}

@media screen and (max-width:992px) {

    .main-image {
        width: 300px;
    }
}

.navbar-nav {
    align-items: center
}

/* pricing section css starts  */
.pricing {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 3em;
}

.pricing-item {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    align-items: stretch;
    text-align: center;
    -webkit-flex: 0 1 330px;
    flex: 0 1 330px;
}

.pricing-action {
    color: inherit;
    border: none;
    background: none;
}

.pricing-action:focus {
    outline: none;
}

.pricing-feature-list {
    text-align: left;
}

.pricing-palden .pricing-item {
    font-family: "Open Sans", sans-serif;
    cursor: default;
    color: #84697c;
    background: #fff;
    box-shadow: 0 0 10px rgba(46, 59, 125, 0.23);
    border-radius: 20px 20px 10px 10px;
    margin: 1em;
}

@media screen and (min-width: 66.25em) {
    .pricing-palden .pricing-item {
        margin: 1em -0.5em;
    }

    .pricing-palden .pricing__item--featured {
        margin: 0;
        z-index: 10;
        box-shadow: 0 0 20px rgba(46, 59, 125, 0.23);
    }
}

.pricing-palden .pricing-deco {
    border-radius: 10px 10px 0 0;
    background: #378CE7;
    padding: 4em 0 9em;
    position: relative;
}

.pricing-palden .pricing-deco-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
}

.pricing-palden .pricing-title {
    font-size: 0.75em;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #fff;
}

.pricing-palden .deco-layer {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

.pricing-palden .pricing-item:hover .deco-layer--1 {
    -webkit-transform: translate3d(15px, 0, 0);
    transform: translate3d(15px, 0, 0);
}

.pricing-palden .pricing-item:hover .deco-layer--2 {
    -webkit-transform: translate3d(-15px, 0, 0);
    transform: translate3d(-15px, 0, 0);
}

.pricing-palden .icon {
    font-size: 2.5em;
}

.pricing-palden .pricing-price {
    font-size: 5em;
    font-weight: bold;
    padding: 0;
    color: #fff;
    margin: 0 0 0.25em 0;
    line-height: 0.75;
}

.pricing-palden .pricing-currency {
    font-size: 0.35em;
    vertical-align: top;
}

.pricing-palden .pricing-period {
    font-size: 0.35em;
    /* padding: 0 0 0 0.5em; */
    font-style: italic;
}

.pricing-palden .pricing__sentence {
    font-weight: bold;
    margin: 0 0 1em 0;
    padding: 0 0 0.5em;
}

.pricing-palden .pricing-feature-list {
    margin: 0;
    padding: 0.25em 0 0.25em;
    list-style: none;
    text-align: center;
}

.pricing-palden .pricing-feature {
    padding: 1em 0;
}

.pricing-palden .pricing-action {
    font-weight: bold;
    margin: auto 3em 2em 3em;
    padding: 1em 2em;
    color: #fff;
    border-radius: 30px;
    background: #3252BF;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

/* Base Style for Navbar Links */
.navbar-nav .nav-link {
    color: #FEFBF6;  /* Light cream color */
    font-size: 16px;
    transition: all 0.3s ease;  /* Smoother transition effect */
    padding: 10px 15px;  /* Padding for better click area and appearance */
    border-radius: 5px;  /* Rounded corners for a modern look */
}

/* Hover and Focus Styles for Navbar Links */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus, 
.navbar-nav .nav-link:active {
    color: #fff;  /* Bright white text on hover/focus */
    font-size: 18px;
    background-color: rgba(0, 123, 255, 0.75);  /* Semi-transparent background */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);  /* Subtle text glow effect */
    border-radius: 5px;  /* Ensure rounded corners */
}

/* Additional styles for hover effects */
.navbar-nav .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;  /* Full width underline on hover */
}


.pricing-palden .pricing-action:hover,
.pricing-palden .pricing-action:focus {
    background-color: #378CE7;
}

.pricing-palden .pricing-item--featured .pricing-deco {
    padding: 5em 0 8.885em 0;
}

/* pricing section css ends  */