/* Landing Pages Shared Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffc8dd, #bde0fe); /* lpink to lblue */
    color: #2b1a36; /* purple-100 */
    padding: 80px 0;
}
.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}
.hero p {
    font-size: 1.25rem;
    margin: 20px 0;
}
.hero .btn-primary {
    background-color: #ff116c; /* lpink-300 */
    border-color: #ff116c;
    padding: 15px 30px;
    font-size: 1.2rem;
}
.hero .btn-primary:hover {
    background-color: #b60046; /* lpink-200 */
    border-color: #b60046;
}
.hero .btn-outline-light {
    padding: 15px 30px;
    font-size: 1.2rem;
    color: #ff116c; /* lpink-300 */
    border-color: #ff116c;
}
.hero .btn-outline-light:hover {
    background-color: #ff116c; /* lpink-300 */
    color: white;
}
.hero img {
    max-width: 100%;
    border-radius: 10px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

/* description Section */
.description {
    padding: 60px 0;
    background-color: #ffffff;
}
.description h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #824ea1; /* purple-300 */
}
.description .card {
    border: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.description .card-body {
    padding: 40px;
}
.description .card-title {
    color: #824ea1; /* purple-300 */
    margin-bottom: 20px;
}
.description .card-text {
    color: #57346b; /* purple-200 */
    line-height: 1.6;
    margin-bottom: 20px;
}
.description ul li {
    margin-bottom: 10px;
    color: #57346b; /* purple-200 */
}
.description ul li i {
    margin-right: 10px;
}
.description .btn-primary {
    background-color: #ff116c; /* lpink-300 */
    border-color: #ff116c;
    padding: 10px 20px;
    margin-top: 20px;
}
.description .btn-primary:hover {
    background-color: #b60046; /* lpink-200 */
    border-color: #b60046;
}

.description .btn-outline-light {
    padding: 10px 20px;
    /* font-size: 1.2rem; */
    color: #ff116c; /* lpink-300 */
    border-color: #ff116c;
    margin-top: 20px;

}
.description .btn-outline-light:hover {
    background-color: #ff116c; /* lpink-300 */
    color: white;
}

.description .bold {
    font-weight: bold;
    color: #57346b; /* purple-200 */
}

/* Features Section */
.features {
    padding: 30px 0;
    background-color: #f5f0f8; /* purple-900 */
}
.features h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #824ea1; /* purple-300 */
}
.features .feature-box {
    background-color: #ffffff;
    border: 1px solid #ebe1f0; /* purple-800 */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%; /* Ensures uniform height */
}
.features .feature-box i {
    font-size: 3rem;
    color: #ff116c; /* lpink-300 */
    margin-bottom: 15px;
}

/* Carousel Controls */
.features .carousel-control-prev,
.features .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: white;
    border: 1px solid #d3d3d3;
    border-radius: 8px;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

.features .carousel-control-prev {
    left: -50px;
}

.features .carousel-control-next {
    right: -50px;
}

.features .carousel-control-prev-icon,
.features .carousel-control-next-icon {
    background-image: none;
    position: relative;
}

.features .carousel-control-prev-icon::before,
.features .carousel-control-next-icon::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid black;
    border-right: 2px solid black;
    position: absolute;
    top: 50%;
    left: 50%;
}

.features .carousel-control-prev-icon::before {
    transform: translate(-30%, -50%) rotate(-135deg);
}

.features .carousel-control-next-icon::before {
    transform: translate(-70%, -50%) rotate(45deg);
}

.features .carousel-control-prev:hover,
.features .carousel-control-next:hover {
    background-color: #f8f8f8;
}

/* Responsive adjustments for carousel controls */
@media (max-width: 768px) {
    .features .carousel-control-prev {
        left: 10px;
    }
    
    .features .carousel-control-next {
        right: 10px;
    }
}

/* Pricing Section */
.pricing {
    padding: 30px 0;
    background-color: #f5f0f8; /* purple-900 */
}
.pricing h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #824ea1; /* purple-300 */
}
.pricing .card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.pricing .btn-primary {
    background-color: #ff116c; /* lpink-300 */
    border-color: #ff116c;
}
.pricing .btn-primary:hover {
    background-color: #b60046; /* lpink-200 */
    border-color: #b60046;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
}
.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #824ea1; /* purple-300 */
}
.testimonials .testimonial img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

/* Footer Section */
.footer {
    background-color: #57346b; /* purple-200 */
    color: white;
    padding: 20px 0;
}
.footer a {
    color: #ffc8dd; /* lpink */
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}

/* Fixed Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030; /* Ensure it stays above other elements */
    background-color: #ebe1f0 !important; /* purple-800 */
}
.navbar .navbar-brand {
    color: #57346b; /* purple-200 */
    font-weight: 600;
}
.navbar .navbar-brand:hover {
    color: #824ea1; /* purple-300 */
}
.navbar .nav-link {
    color: #57346b; /* purple-200 */
}
.navbar .nav-link:hover {
    color: #824ea1; /* purple-300 */
}
.navbar .navbar-toggler {
    border-color: #824ea1; /* purple-300 */
}
.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(87, 52, 107, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Add padding to body to prevent content overlap */
body {
    padding-top: 56px; /* Adjust based on navbar height */
}

/* FAQ Section Styles */
.faq-section {
    padding: 60px 0;
    background-color: #f5f0f8; /* purple-900 */
}
.faq-section h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #824ea1; /* purple-300 */
}
.faq-section .accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-section .accordion-button {
    background-color: #ffffff;
    color: #2b1a36; /* purple-100 */
    font-weight: 500;
}
.faq-section .accordion-button:not(.collapsed) {
    background-color: #ebe1f0; /* purple-800 */
    color: #824ea1; /* purple-300 */
}
.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 17, 108, 0.25); /* lpink-300 with opacity */
}