body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-section {
    background-image: linear-gradient(135deg, rgba(110, 72, 170, 0.8), rgb(84 57 249));
    color: white;
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-shape {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #f8f9fa;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.banner-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.btn-light {
    background-color: white;
    color: #6e48aa;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: #f8f9fa;
    color: #9d50bb;
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.banner-image {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 2rem auto;
    position: relative;
    z-index: 2;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.banner-image:hover {
    transform: scale(1.05);
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 2rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: #6e48aa;
    transition: all 0.3s ease;
}

.card:hover .feature-icon {
    transform: scale(1.2);
}

.addon-card {
    position: relative;
    overflow: hidden;
}

.addon-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(110, 72, 170, 0.8), rgba(157, 80, 187, 0.8));
    transition: all 0.3s ease;
    z-index: 1;
}

.addon-card:hover::before {
    top: 0;
}

.addon-card .card-body {
    position: relative;
    z-index: 2;
}

.addon-card:hover .feature-icon,
.addon-card:hover .card-title {
    color: white;
}


.brand-section {
    background: linear-gradient(135deg, #60c7f7 0%, #8d5bc7 100%);
    min-height: 600px;
    color: white;
}
.floating-element {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}
.chat-bubble {
    display: flex;
    align-items: center;
    gap: 10px;
}
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    overflow: hidden;
}
.chat-content {
    height: 10px;
    width: 100px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}
.brand-icon {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 45px;
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.speech-bubbles {
    position: relative;
    width: 120px;
    height: 120px;
}
.bubble {
    position: absolute;
    border-radius: 20px;
    opacity: 0.9;
}
.bubble-1 {
    width: 60px;
    height: 60px;
    background: #FF6B6B;
    top: 0;
    left: 0;
    z-index: 4;
}
.bubble-2 {
    width: 55px;
    height: 55px;
    background: #FFD93D;
    top: 15px;
    left: 35px;
    z-index: 3;
}
.bubble-3 {
    width: 50px;
    height: 50px;
    background: #4ECDC4;
    top: 40px;
    left: 10px;
    z-index: 2;
}
.bubble-4 {
    width: 45px;
    height: 45px;
    background: #6C5CE7;
    top: 50px;
    left: 45px;
    z-index: 1;
}
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

.float-delay-1 { animation-delay: -2s; }
.float-delay-2 { animation-delay: -4s; }
.float-delay-3 { animation-delay: -6s; }

.floating-element:nth-child(1) { top: 20%; left: 15%; }
.floating-element:nth-child(2) { top: 60%; left: 10%; }
.floating-element:nth-child(3) { top: 30%; right: 15%; }
.floating-element:nth-child(4) { top: 70%; right: 10%; }

@media (max-width: 768px) {
    .floating-element {
        display: none;
    }
    .brand-icon {
        width: 150px;
        height: 150px;
    }
    .speech-bubbles {
        width: 90px;
        height: 90px;
    }
    .bubble-1 {
        width: 45px;
        height: 45px;
    }
    .bubble-2 {
        width: 40px;
        height: 40px;
        top: 10px;
        left: 25px;
    }
    .bubble-3 {
        width: 35px;
        height: 35px;
        top: 30px;
        left: 5px;
    }
    .bubble-4 {
        width: 30px;
        height: 30px;
        top: 35px;
        left: 35px;
    }
}
.floating-element::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}
.floating-icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #6e48aa;
}

.decorative-elements {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.app-icon {

    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 3;
    transition: transform 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

.app-icon:nth-child(1) {
    animation-delay: -1s;
}

.app-icon:nth-child(2) {
    animation-delay: -2s;
}

.app-icon:nth-child(3) {
    animation-delay: -3s;
}

.app-icon:nth-child(4) {
    animation-delay: -4s;
}

.connection-line {
    position: absolute;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
    animation: float 5s ease-in-out infinite alternate;
    opacity: 0.7;
    z-index: 2;
}

.connection-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite alternate;
    opacity: 0.8;
    z-index: 2;
}

.plus-symbol {
    position: absolute;
    font-weight: bold;
    opacity: 0.5;
    z-index: 1;
    animation: float 4s ease-in-out infinite alternate;
    z-index: 2;
}

.app-icon:hover {
    transform: scale(1.1);
}

/* Basic Plan Accordion Styles */
#basicPlanAccordion .accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 8px;
    border-radius: 8px;
    overflow: hidden;
}

#basicPlanAccordion .accordion-button {
    padding: 15px 20px;
    font-weight: 500;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
}

#basicPlanAccordion .accordion-button:not(.collapsed) {
    background-color: #6e48aa;
    color: #fff;
}

#basicPlanAccordion .accordion-button:focus {
    box-shadow: none;
    border-color: #6e48aa;
}

#basicPlanAccordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236e48aa'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#basicPlanAccordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#basicPlanAccordion .accordion-body {
    padding: 20px;
    background-color: #f8f9fa;
    line-height: 1.6;
}

#basicPlanAccordion h3.table-title {
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
}

#basicPlanAccordion h4 {
    color: #6e48aa;
    font-weight: 600;
}

/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-top: 60px;
    width: 100%;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #6e48aa, transparent);
}

.footer-col {
    margin-bottom: 30px;
}

.footer-col h5 {
    color: #6e48aa;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6e48aa;
}

.footer-contact {
    color: #666;
    line-height: 1.8;
}

.footer-contact i {
    color: #6e48aa;
    margin-right: 10px;
    font-size: 1.1em;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #666;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #6e48aa;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #dee2e6;
    color: #666;
}
