/* Custom styles for AidenTeach website */

/* Color Variables */
:root {
    --light-gray: #e5e0dd;
    --medium-gray: #a7a6ad;
    --blue: #7dd0e2;
    --dark-gray: #5e7180;
    --navbar-color: #5a6d7d;
    --black: #342b32;
    --aiden-green: #198754;
}

/* ============================================
   MODERN HEADER STYLES
   ============================================ */

/* Header Container */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--navbar-color) 0%, #4a5d6d 100%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

/* Navbar Base Styles */
.navbar {
    padding: 1rem 0 !important;
    min-height: 80px;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styles */
.navbar-brand {
    padding: 0;
    margin-right: 2rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.site-logo {
    height: 55px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.navbar-brand:hover .site-logo {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Navigation Menu Container */
.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    align-items: center;
    gap: 0.5rem;
}

/* Navigation Links */
.navbar-nav .nav-item {
    margin: 0;
}

.navbar-nav .nav-link {
    font-size: 1.05rem;
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.9) !important;
    position: relative;
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar-nav .nav-link.active {
    color: #ffffff !important;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Underline Animation */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(255, 255, 255, 0.5);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* Dropdown Styles */
.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.75rem;
    margin-top: 0.75rem;
    background-color: #ffffff;
}

.navbar-nav .dropdown-item {
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.navbar-nav .dropdown-item:hover {
    background-color: rgba(90, 109, 125, 0.15);
    transform: translateX(6px);
    color: var(--navbar-color);
}

.navbar-nav .dropdown-item:active {
    background-color: rgba(90, 109, 125, 0.25);
}

/* Dropdown Toggle Icon */
.navbar-nav .dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Navbar Toggler (Mobile) */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

/* Custom navbar colors */
.navbar.bg-success {
    background-color: var(--aiden-green) !important;
}

.navbar.bg-primary {
    background: linear-gradient(135deg, var(--navbar-color) 0%, #4a5d6d 100%) !important;
}

/* Mobile Navigation Styles */
@media (max-width: 991px) {
    .navbar {
        min-height: 70px;
        padding: 0.75rem 0 !important;
    }

    .site-logo {
        height: 45px;
    }

    .navbar-collapse {
        background: linear-gradient(135deg, rgba(90, 109, 125, 0.98) 0%, rgba(74, 93, 109, 0.98) 100%);
        padding: 1.5rem;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        margin-top: 1rem;
        backdrop-filter: blur(10px);
    }

    .navbar-nav {
        gap: 0.5rem;
    }

    .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar-nav .nav-link {
        text-align: center;
        padding: 1rem 1.5rem !important;
        border-radius: 10px;
        font-size: 1.1rem;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-brand {
        margin-right: 1rem;
    }
}

/* Tablet Adjustments */
@media (max-width: 1200px) and (min-width: 992px) {
    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 0.65rem 1rem !important;
    }

    .navbar-nav {
        gap: 0.25rem;
    }
}

/* General styles */
html {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Main content should take available space */
main {
    flex: 1 0 auto;
}

/* Footer stays at bottom */
footer {
    flex-shrink: 0;
}

/* Footer-bottom stays at bottom */
.footer-bottom {
    flex-shrink: 0;
    margin-top: auto;
}

/* Hero section */
.hero {
    background-color: var(--light-gray);
    padding: 4rem 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

/* Feature Cards - What to Expect Section */
.feature-card {
    transition: all 0.3s ease;
    overflow: hidden;
    background-color: white;
    border: 1px solid rgba(229, 224, 221, 0.5);
    border-radius: 15px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(94, 113, 128, 0.15) !important;
    border-color: var(--blue);
}

.feature-icon {
    transition: all 0.3s ease;
    background-color: rgba(125, 208, 226, 0.1);
    height: 80px;
    width: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background-color: rgba(125, 208, 226, 0.2);
}

.feature-header {
    position: relative;
    padding: 1.5rem;
    text-align: center;
    background-color: white;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.feature-header::before {
    content: '';
    position: absolute;
    height: 6px;
    width: 50px;
    background-color: var(--blue);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-header::before {
    width: 100px;
}

.feature-benefits {
    opacity: 0.9;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-benefits {
    opacity: 1;
}

.feature-benefits .d-flex {
    transition: all 0.2s ease;
}

.feature-benefits .d-flex:hover {
    transform: translateX(5px);
}

/* Section Title Animation */
@keyframes underlineGrow {
    0% {
        width: 0;
        left: 50%;
    }

    100% {
        width: 50%;
        left: 25%;
    }
}

.position-relative .position-absolute {
    animation: underlineGrow 1.5s ease-out forwards;
    background-color: var(--blue) !important;
}

/* Pricing Hero */
.pricing-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--dark-gray) 100%);
    color: white;
    padding: 5rem 0 4rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.pricing-hero:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.pricing-hero:after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.pricing-hero .display-4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

.hero-decoration {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-decoration .dot {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
}

.hero-decoration .line {
    width: 60px;
    height: 2px;
    background-color: white;
    margin: 0 10px;
    display: inline-block;
}

/* Founder Section */
.founder-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.founder-section h2 {
    color: var(--black);
    font-weight: 700;
}

.founder-section h3 {
    color: var(--blue);
    font-weight: 600;
}

.founder-image-container {
    position: relative;
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-image {
    border-radius: 8px;
}

.founder-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.credential-badge {
    background-color: var(--blue);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* DLPS Achievements Section */
.dlps-achievements {
    background: linear-gradient(135deg, var(--blue) 0%, var(--dark-gray) 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dlps-achievements h2 {
    font-weight: 700;
    margin-bottom: 2rem;
}

.dlps-achievements h3 {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.achievement-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.achievement-card ul {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.achievement-card ul li {
    margin-bottom: 0.5rem;
}

/* Testimonial Section */
.testimonial-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border: 3px solid var(--blue);
    padding: 3px;
}

.testimonial-name {
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    margin-top: 1rem;
}

.testimonial-position {
    font-size: 0.9rem;
    color: var(--blue);
    font-weight: 600;
}

.testimonial-card .card-text {
    font-style: italic;
    position: relative;
    padding: 0 10px;
}

.testimonial-card .card-text:before,
.testimonial-card .card-text:after {
    content: '"';
    font-size: 2rem;
    color: var(--blue);
    opacity: 0.3;
    position: absolute;
}

.testimonial-card .card-text:before {
    top: -10px;
    left: -5px;
}

.testimonial-card .card-text:after {
    bottom: -20px;
    right: -5px;
}

/* Card styles */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-header {
    font-weight: bold;
}

/* Pricing container */
.pricing-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.pricing-header {
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-weight: 700;
    color: #333;
}

/* Pricing cards */
.pricing-card-title {
    font-size: 2.5rem;
    font-weight: 500;
}

/* Package cards */
.package-card {
    border-radius: 15px;
    border: none;
    height: 100%;
    text-align: center;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.package-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    transform: rotate(45deg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-badge.popular {
    background: #ff9800;
}

.package-card.standard {
    background-color: var(--light-gray);
}

.package-card.premium {
    background-color: var(--blue);
    color: var(--black);
    transform: scale(1.05);
    z-index: 2;
}

.package-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-card.pro {
    background-color: var(--dark-gray);
    color: white;
}

.package-card img {
    max-width: 120px;
    margin: 0 auto 1.5rem;
    display: block;
}

.package-card h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-card p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.package-card ul {
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.package-card ul li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

.pricing-section {
    margin: 2rem 0;
}

.pricing-section .price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
}

.pricing-section .period {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0;
    letter-spacing: 1px;
}

.learn-more-btn {
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #000;
    color: #fff;
}

.btn-outline-dark {
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

/* Features section */
.pricing-features {
    margin: 4rem 0;
}

.features-container {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
    border-radius: 15px;
}

.features-container h3 {
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(125, 208, 226, 0.3);
}

.features-container h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--dark-gray) 100%);
    color: white;
    border-radius: 15px;
    padding: 4rem 2rem !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cta-section h2 {
    font-weight: 700;
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--blue);
    border: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: white;
    color: var(--dark-gray);
}

/* FAQ section */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
    background-color: #f8f9fa;
}

.accordion-button:not(.collapsed) {
    background-color: var(--blue);
    color: #fff;
}

.accordion-body {
    padding: 1.5rem;
    background-color: #fff;
}

/* Footer styles */
footer {
    margin-top: 3rem;
    background-color: var(--black) !important;
    padding: 3rem 0;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Custom colors */
.btn-primary {
    background-color: var(--blue);
    border-color: var(--blue);
}

.btn-primary:hover {
    background-color: var(--dark-gray);
    border-color: var(--dark-gray);
}

.btn-outline-primary {
    color: var(--blue);
    border-color: var(--blue);
}

.btn-outline-primary:hover {
    background-color: var(--blue);
    border-color: var(--blue);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .pricing-container {
        padding: 2rem 1rem;
    }

    .package-card {
        padding: 2rem 1.5rem;
    }

    .pricing-section .price {
        font-size: 2.5rem;
    }

    .pricing-section .period {
        font-size: 1.2rem;
    }

    .package-card.premium {
        transform: scale(1);
    }

    .package-card.premium:hover {
        transform: translateY(-10px);
    }

    .pricing-hero {
        padding: 4rem 0 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem;
    }

    .pricing-card-title {
        font-size: 2rem;
    }

    .pricing-section .price {
        font-size: 2.25rem;
    }

    .pricing-section .period {
        font-size: 1.1rem;
    }

    .package-card h3 {
        font-size: 1.5rem;
    }

    .package-card ul li {
        font-size: 1rem;
    }

    .pricing-hero .display-4 {
        font-size: 2.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .credential-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .achievement-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .testimonial-avatar img {
        width: 60px;
        height: 60px;
    }

    .testimonial-card .card-text {
        font-size: 0.95rem;
    }

    .testimonial-name {
        font-size: 1.1rem;
    }

    .testimonial-position {
        font-size: 0.85rem;
    }
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, var(--blue), var(--dark-gray));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12.5px;
    background-color: white;
    border: 4px solid var(--blue);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12.5px;
}

.timeline-date {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--blue);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    margin-top: 0;
    color: #333;
    font-weight: 600;
}

.timeline-content p {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        left: 0 !important;
        text-align: left !important;
    }

    .timeline-dot {
        left: 18px !important;
        right: auto !important;
    }

    .timeline-date {
        display: block;
        margin-bottom: 15px;
        text-align: center;
    }

    .timeline-content {
        padding: 15px;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .timeline-content p {
        font-size: 0.95rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.back-button {
    display: inline-block;
    padding: 8px 16px;
    color: #007bff;
    text-decoration: none;
    border: 1px solid #007bff;
    border-radius: 4px;
    margin-bottom: 20px;
}

.back-button:hover {
    background-color: #007bff;
    color: white;
}

.chat-interface {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    margin-top: 20px;
}

.bot-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bot-avatar {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.suggested-prompts {
    margin-top: 20px;
}

.prompt {
    padding: 10px;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.prompt:hover {
    background-color: #e9ecef;
}

.chat-section {
    display: flex;
    flex-direction: column;
    height: 600px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chat-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    background-color: #f8f9fa;
}

.chat-input {
    display: flex;
    padding: 20px;
    background-color: #fff;
    border-top: 1px solid #dee2e6;
}

.chat-input textarea {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-right: 10px;
    resize: none;
}

.send-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.send-button:hover {
    background-color: #0056b3;
}

.bot-message,
.user-message {
    margin-bottom: 20px;
    max-width: 80%;
}

.user-message {
    margin-left: auto;
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border-radius: 15px 15px 0 15px;
}

.bot-message {
    display: flex;
    align-items: start;
}

.message-avatar {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.message-content {
    background-color: white;
    padding: 10px 15px;
    border-radius: 15px 15px 15px 0;
    border: 1px solid #dee2e6;
}

/* Responsive design */
@media (max-width: 768px) {
    .chat-interface {
        grid-template-columns: 1fr;
    }

    .bot-info {
        order: 2;
    }

    .chat-section {
        order: 1;
        height: 500px;
    }
}

/* Aiden Bots section alignment fix */
.bots-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tab styling for bot categories */
.bot-tabs {
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 2rem;
}

.bot-tabs .nav-link {
    color: #333;
    border: none;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    position: relative;
}

.bot-tabs .nav-link.active {
    color: var(--blue);
    background-color: transparent;
    font-weight: 600;
}

.bot-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--blue);
    bottom: -1px;
    left: 0;
}

/* Robot card styling */
.robot-card {
    text-align: center;
    transition: all 0.3s ease;
}

.robot-card:hover {
    transform: translateY(-10px);
}

.robot-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.robot-card .btn {
    margin-top: 1rem;
    width: 100%;
}

/* Dashboard wrapper complete rebuild */
.dashboard-wrapper {
    width: 100%;
    padding: 0;
    margin: 0;
}

.dashboard-wrapper .container-fluid {
    padding: 0;
    margin: 0;
    width: 100%;
}

.dashboard-wrapper .row {
    margin: 0;
    width: 100%;
}

.dashboard-wrapper .col-lg-3,
.dashboard-wrapper .col-lg-9 {
    padding: 15px;
}

/* Force content in main area to align with sidebar */
.aiden-bots-section,
.resources-section {
    padding: 0;
    margin: 0;
}

/* Reset card styling to ensure consistency */
.dashboard-wrapper .card {
    margin-bottom: 20px;
    width: 100%;
    border-radius: 0.25rem;
    overflow: hidden;
    border: none;
}

.dashboard-wrapper .card-header {
    background-color: var(--blue);
    color: white;
    border-radius: 0;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
}

/* Ensure all section headers have same styling */
.dashboard-wrapper .card-header h5 {
    margin: 0;
    font-weight: 500;
}

/* Aiden Bots blue header bar - special styling */
#aidenBotsHeader,
#resourcesHeader {
    background-color: var(--blue);
    color: white;
    padding: 15px;
    margin-bottom: 0;
    border-radius: 6px 6px 0 0;
    font-weight: bold;
    display: block;
    width: 100%;
    text-align: left;
    font-size: 18px;
}

/* Reset card to connect properly with header */
.dashboard-wrapper .aiden-bots-section .card,
.dashboard-wrapper .resources-section .card {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: 1px solid #dee2e6;
}

/* Restore needed styling for robot cards */
.robot-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.robot-card:hover {
    transform: translateY(-5px);
}

.robot-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.robot-card .btn {
    margin-top: 1rem;
    width: 100%;
}

/* Clean styling for tabs */
#botTabs {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
}

#botTabs .nav-item {
    margin-right: 5px;
}

#botTabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#botTabs .nav-link.active {
    color: #0d6efd;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

/* Keep resources cards styled cleanly */
.resources-section .card {
    transition: transform 0.3s ease;
}

.resources-section .card:hover {
    transform: translateY(-5px);
}

/* Clear margin fixes */
@media (min-width: 992px) {
    .dashboard-wrapper .col-lg-9 {
        margin: 0;
        padding: 15px;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .dashboard-wrapper .container-fluid {
        padding: 0 5px;
    }

    .dashboard-wrapper .col-lg-3,
    .dashboard-wrapper .col-lg-9 {
        padding: 10px 5px;
    }
}

/* Restore the card body padding to match screenshot */
.dashboard-wrapper .card-body {
    padding: 15px;
}

/* Full-width Aiden Bots and Resources sections */
.aiden-bots-container,
.resources-container {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.dashboard-wrapper .container-fluid {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    width: 100%;
}

.dashboard-wrapper .row {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.aiden-bots-header,
.resources-header {
    background-color: var(--blue);
    color: white;
    padding: 18px 25px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.aiden-bots-header:after,
.resources-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25px;
    width: 40px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
}

.aiden-bots-content,
.resources-content {
    padding: 30px;
    background-color: #fff;
    border: none;
}

/* Bot tabs styling */
#botTabs {
    border-bottom: 1px solid #eaeaea;
    padding-left: 0;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#botTabs .nav-item {
    margin: 0;
}

#botTabs .nav-link {
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

#botTabs .nav-link:hover {
    background-color: #f5f5f5;
    color: #333;
}

#botTabs .nav-link.active {
    color: white;
    background-color: var(--blue);
    box-shadow: 0 4px 15px rgba(125, 208, 226, 0.3);
}

/* Robot card styling */
.robot-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    text-align: center;
    height: 100%;
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.robot-card img {
    height: 120px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.robot-card:hover img {
    transform: scale(1.05);
}

.robot-card .btn {
    width: 100%;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.robot-card .btn-outline-primary {
    border-width: 2px;
}

.robot-card .btn-outline-primary:hover {
    background-color: var(--blue);
    box-shadow: 0 5px 15px rgba(125, 208, 226, 0.3);
}

/* Resource cards */
.resources-content .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.resources-content .card-body {
    padding: 25px;
}

.resources-content .card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.resources-content .card-text {
    color: #666;
    line-height: 1.6;
}

.resources-content .card-footer {
    background-color: transparent;
    border-top: 1px solid #eaeaea;
    padding: 15px 25px;
}

.resources-content .btn {
    border-radius: 8px;
    padding: 8px 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.resources-content .btn:hover {
    box-shadow: 0 5px 15px rgba(125, 208, 226, 0.3);
}