 :root {
     --primary-blue: #64b5f6;
     --accent-red: #eb3136;
     --dark-blue: #1a237e;
     --light-gray: #f8f9fa;
     --dark-gray: #343a40;
 }

body {
    font-family: 'EudoxusSans-Regular', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
}

 .navbar {
     padding: 12px 0;
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .navbar.scrolled {
     box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
     padding: 8px 0;
 }

 .navbar-brand {
     display: flex;
     align-items: center;
 }

 .logo-img {
     height: 40px;
     margin-right: 12px;
     transition: all 0.3s ease;
 }

 .brand-text {
     font-weight: 700;
     font-size: 1.4rem;
     color: var(--dark-blue);
     letter-spacing: -0.5px;
 }

 .brand-text span {
     color: var(--accent-red);
 }

 .nav-link {
     font-weight: 500;
     color: var(--dark-gray) !important;
     padding: 8px 16px !important;
     margin: 0 4px;
     position: relative;
     transition: all 0.2s ease;
 }

 .nav-link:hover,
 .nav-link:focus {
     color: var(--primary-blue) !important;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 16px;
     width: 0;
     height: 2px;
     background: var(--primary-blue);
     transition: width 0.3s ease;
 }

 .nav-link:hover::after {
     width: calc(100% - 32px);
 }

 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-weight: 600;
     text-align: center;
     text-decoration: none;
     white-space: nowrap;
     vertical-align: middle;
     user-select: none;
     border: 2px solid transparent;
     border-radius: 6px;
     padding: 0.75rem 1.75rem;
     font-size: 1rem;
     font-family: inherit;
     line-height: 1.5;
     transition: all 0.3s ease;
     cursor: pointer;
     position: relative;
     overflow: hidden;
 }


 /* Solid Button Variants */
 .btn-primary {
     background-color: var(--primary-blue);
     border-color: var(--primary-blue);
     color: white;
 }

 .btn-accent {
     background-color: var(--accent-red);
     border-color: var(--accent-red);
     color: white;
 }

 .btn-dark {
     background-color: var(--dark-blue);
     border-color: var(--dark-blue);
     color: white;
 }

 /* Outline Button Variants */
 .btn-outline-primary {
     background-color: transparent;
     border-color: var(--primary-blue);
     color: var(--primary-blue);
 }

 .btn-outline-accent {
     background-color: transparent;
     border-color: var(--accent-red);
     color: var(--accent-red);
 }

 .btn-outline-dark {
     background-color: transparent;
     border-color: var(--dark-blue);
     color: var(--dark-blue);
 }

 .btn-outline-light {
     background-color: transparent;
     border-color: white;
     color: white;
 }

 /* Button Hover States */
 .btn-primary:hover {
     background-color: #42a5f5;
     border-color: #42a5f5;
     color: white;
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(100, 181, 246, 0.25);
 }

 .btn-accent:hover {
     background-color: #d32f2f;
     border-color: #d32f2f;
     color: white;
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(235, 49, 54, 0.25);
 }

 .btn-dark:hover {
     background-color: #0d1a4b;
     border-color: #0d1a4b;
     color: white;
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(26, 35, 126, 0.25);
 }

 .btn-outline-primary:hover {
     background-color: var(--primary-blue);
     border-color: var(--primary-blue);
     color: white;
     transform: translateY(-2px);
 }

 .btn-outline-accent:hover {
     background-color: var(--accent-red);
     color: white;
     transform: translateY(-2px);
 }

 .btn-outline-dark:hover {
     background-color: var(--dark-blue);
     color: white;
     transform: translateY(-2px);
 }

 .btn-outline-light:hover {
     background-color: white;
     color: var(--dark-blue);
     transform: translateY(-2px);
 }

 /* Button Focus States */
 .btn:focus {
     outline: 0;
     box-shadow: 0 0 0 0.25rem rgba(100, 181, 246, 0.5);
 }

 /* Button Active States */
 .btn:active {
     transform: translateY(0);
     transition: none;
 }

 /* Disabled Button State */
 .btn:disabled,
 .btn.disabled {
     opacity: 0.65;
     pointer-events: none;
     transform: none !important;
 }

 /* Button with Icon */
 .btn-icon {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
 }

 .btn-icon .bi {
     font-size: 1.1em;
 }

 /* Floating Action Button */
 .btn-float {
     position: fixed;
     bottom: 2rem;
     right: 2rem;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
     z-index: 1000;
 }

 /* Button Group */
 .btn-group {
     display: inline-flex;
     gap: 0.75rem;
 }

 input,
 textarea,
 select {
     font-family: 'EudoxusSans-Regular', -apple-system, BlinkMacSystemFont, sans-serif;
     box-shadow: none !important;
 }
input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--primary-blue);
    border-width: 2px;
}
.btn-primary:hover {
    background-color: #42a5f5;
    border-color: #42a5f5;
}

.btn-accent {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
    color: white;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-accent:hover {
    background-color: #d32f2f;
    border-color: #d32f2f;
    color: white;
}

 .hero-section {
     padding: 180px 0 100px;
     background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
     position: relative;
     overflow: hidden;
 }

 .hero-section::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     width: 100%;
     height: 200%;
     background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
     z-index: -1;
 }

 .hero-content {
     max-width: 600px;
 }

 .trust-badges .badge {
     display: inline-block;
     background: white;
     border: 1px solid #e5e7eb;
     border-radius: 50px;
     padding: 6px 14px;
     font-size: 0.8rem;
     font-weight: 500;
     margin-right: 10px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
     color: var(--dark-gray);
 }

 .hero-title {
     font-size: 3.2rem;
     font-weight: 700;
     line-height: 1.2;
     color: var(--dark-blue);
     margin: 20px 0;
 }

 .text-gradient {
     background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
 }

 .hero-subtitle {
     font-size: 1.2rem;
     color: var(--medium-gray);
     line-height: 1.6;
     margin-bottom: 30px;
     max-width: 500px;
 }

 .hero-cta .btn {
     padding: 12px 24px;
     font-size: 1rem;
     font-weight: 500;
     border-radius: 8px;
 }

 .hero-cta .btn-primary {
     background: var(--primary-blue);
     border: none;
     box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
 }

 .hero-cta .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
 }

 .client-label {
     font-size: 0.9rem;
     color: var(--medium-gray);
     margin-bottom: 15px;
 }

 .client-logos {
     display: flex;
     align-items: center;
     gap: 25px;
     flex-wrap: wrap;
 }

 .client-logos img {
     height: 30px;
     opacity: 0.7;
     transition: opacity 0.3s ease;
 }

 .client-logos img:hover {
     opacity: 1;
 }

 .hero-visual {
     position: relative;
     padding-left: 50px;
 }

 .hero-visual img {
     border-radius: 12px;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
     border: 1px solid rgba(0, 0, 0, 0.05);
     max-width: 100%;
     height: auto;
 }

 .hero-card {
     position: absolute;
     background: white;
     border-radius: 8px;
     padding: 12px 16px;
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
     display: flex;
     align-items: center;
     max-width: 180px;
 }

 .hero-card i {
     font-size: 1.2rem;
     color: var(--primary-blue);
     margin-right: 10px;
 }

 .hero-card p {
     font-size: 0.9rem;
     font-weight: 500;
     margin: 0;
     color: var(--dark-gray);
 }

 .hero-card.card-1 {
     top: -20px;
     left: 0;
     animation: float 6s ease-in-out infinite;
 }

 .hero-card.card-2 {
     bottom: -20px;
     right: 0;
     animation: float 6s ease-in-out infinite 1s;
 }

 @keyframes float {
     0% { transform: translateY(0); }
     50% { transform: translateY(-10px); }
     100% { transform: translateY(0); }
 }

 .floating-animation {
     animation: float 8s ease-in-out infinite;
 }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: var(--accent-red);
}

.about-section, .services-section, .why-us-section, .portfolio-section, .testimonials-section, .contact-section {
    padding: 100px 0;
}

.about-section {
    background-color: white;
}

.services-section {
    background-color: var(--light-gray);
}

.why-us-section {
    background-color: white;
}

.portfolio-section {
    background-color: var(--light-gray);
}

 .testimonials-section {
     background-color: white;
     padding: 100px 0;
     position: relative;
 }

 .testimonial-card {
     background-color: var(--light-gray);
     border-radius: 12px;
     padding: 40px;
     max-width: 800px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
     border: none;
 }

 .testimonial-content {
     position: relative;
 }

 .testimonial-text {
     font-style: italic;
     color: var(--dark-gray);
     line-height: 1.8;
     position: relative;
 }

 .client-img {
     width: 70px;
     height: 70px;
     object-fit: cover;
     border: 3px solid var(--primary-blue);
 }

 .client-name {
     color: var(--dark-blue);
     font-weight: 600;
 }

 .client-title {
     font-size: 0.9rem;
 }

 .carousel-indicators button {
     width: 10px !important;
     height: 10px !important;
     border-radius: 50%;
     border: none;
     opacity: 0.5;
     transition: all 0.3s ease;
 }

 .carousel-indicators button.active {
     opacity: 1;
     transform: scale(1.2);
 }

 /* Remove default carousel controls */
 .carousel-control-prev,
 .carousel-control-next {
     display: none;
 }

 .contact-section {
     padding: 100px 0;
     background: linear-gradient(135deg, rgba(100, 181, 246, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
 }

 .section-title {
     font-size: 2.2rem;
     font-weight: 700;
     color: var(--dark-blue);
     margin-bottom: 1.5rem;
 }

 .contact-content .lead {
     font-size: 1.1rem;
     color: var(--dark-gray);
 }

 .contact-icon {
     width: 48px;
     height: 48px;
     background-color: rgba(100, 181, 246, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .contact-item h5 {
     font-size: 1.1rem;
     font-weight: 600;
     color: var(--dark-blue);
 }

 .social-icon {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background-color: rgba(100, 181, 246, 0.1);
     color: var(--primary-blue);
     border-radius: 50%;
     transition: all 0.3s ease;
 }

 .social-icon:hover {
     background-color: var(--primary-blue);
     color: white;
     transform: translateY(-3px);
 }

 .contact-form {
     border: 1px solid rgba(0, 0, 0, 0.05);
 }

 .contact-form h3 {
     font-size: 1.5rem;
     font-weight: 600;
     color: var(--dark-blue);
 }

 .form-control, .form-select {
     padding: 12px 15px;
     border: 1px solid #e0e0e0;
     border-radius: 6px;
     transition: all 0.3s ease;
 }

 .form-control:focus, .form-select:focus {
     border-color: var(--primary-blue);
     box-shadow: 0 0 0 0.25rem rgba(100, 181, 246, 0.25);
 }

 .btn-primary {
     background-color: var(--primary-blue);
     border-color: var(--primary-blue);
     font-weight: 600;
     letter-spacing: 0.5px;
     transition: all 0.3s ease;
 }

 .btn-primary:hover {
     background-color: #42a5f5;
     border-color: #42a5f5;
     transform: translateY(-2px);
 }

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;

}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.feature-box {
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.counter-label {
    font-size: 1rem;
    color: var(--dark-gray);
}

.portfolio-item {
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 126, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
    color: white;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.client-name {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.client-title {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.form-control {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(100, 181, 246, 0.25);
}

.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-red);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(235, 49, 54, 0.3);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    background-color: #d32f2f;
    color: white;
}

footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 60px 0 20px;
}

 .footer {
     background-color: var(--dark-blue);
     color: white;
     padding: 60px 0 20px;
     position: relative;
 }

 .footer-brand h3 {
     font-size: 1.8rem;
     font-weight: 700;
 }

 .footer-text {
     color: rgba(255, 255, 255, 0.7);
     line-height: 1.6;
 }

 .footer-heading {
     color: white;
     font-weight: 600;
     font-size: 1.1rem;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-heading::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 40px;
     height: 2px;
     background-color: var(--accent-red);
 }

 .footer-links {
     list-style: none;
     padding: 0;
 }

 .footer-links li {
     margin-bottom: 12px;
 }

 .footer-links a {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     transition: all 0.3s ease;
     display: inline-block;
 }

 .footer-links a:hover {
     color: white;
     transform: translateX(5px);
 }

 .newsletter-form .input-group {
     margin-bottom: 8px;
 }

 .newsletter-form .form-control {
     background-color: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
     color: white;
     padding: 10px 15px;
     border-radius: 4px 0 0 4px;
 }

 .newsletter-form .form-control::placeholder {
     color: rgba(255, 255, 255, 0.6);
 }

 .newsletter-form .btn {
     border-radius: 0 4px 4px 0;
     padding: 0 15px;
 }

 .newsletter-form .form-text {
     color: rgba(255, 255, 255, 0.5);
     font-size: 0.8rem;
     display: block;
 }

 .copyright {
     color: rgba(255, 255, 255, 0.5);
     font-size: 0.9rem;
 }


.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-red);
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.7);
}

 .privacy-header {
     background: linear-gradient(135deg, rgba(100, 181, 246, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
     padding: 100px 0 60px;
 }

 .privacy-title {
     font-size: 2.5rem;
     font-weight: 700;
     color: var(--dark-blue);
     margin-bottom: 20px;
 }

 .privacy-content {
     padding: 60px 0;
 }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Responsive adjustments */
 @media (max-width: 1199px) {
     .hero-title {
         font-size: 2.8rem;
     }
 }

 @media (max-width: 992px) {
     .navbar-nav {
         padding: 20px 0;
     }

     .nav-link {
         padding: 10px 0 !important;
     }

     .hero-section {
         padding: 150px 0 80px;
         text-align: center;
     }

     .hero-content {
         margin: 0 auto;
         text-align: center;
     }

     .hero-subtitle {
         margin-left: auto;
         margin-right: auto;
     }

     .hero-cta {
         justify-content: center;
     }

     .hero-visual {
         padding-left: 0;
         margin-top: 50px;
     }

     .client-logos {
         justify-content: center;
     }

     .footer {
         padding: 50px 0 20px;
     }

     .footer-brand h3 {
         font-size: 1.6rem;
     }
 }

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-section, .services-section, .why-us-section, .portfolio-section, .testimonials-section, .contact-section {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 1rem !important;
    }

    .client-img {
        width: 60px;
        height: 60px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 2rem !important;
    }

    .footer {
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a:hover {
        transform: none;
        padding-left: 5px;
    }

    .certifications {
        justify-content: center;
    }

    .newsletter-form .input-group {
        justify-content: center;
    }
}


@media (max-width: 575px) {
        .brand-text {
            font-size: 1.2rem;
        }

        .logo-img {
            height: 32px;
        }

        .hero-title {
            font-size: 1.8rem;
        }

        .trust-badges .badge {
            font-size: 0.7rem;
            padding: 4px 10px;
        }
    }



 /* Chat window*/
 .chat-widget {
     position: fixed;
     bottom: 30px;
     right: 30px;
     z-index: 9999;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 /* Chat Bubble */
 .chat-bubble {
     width: 60px;
     height: 60px;
     background: var(--primary-blue);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     box-shadow: 0 4px 20px rgba(100, 181, 246, 0.3);
     transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     position: relative;
 }

 .chat-bubble:hover {
     transform: scale(1.1);
     background: #42a5f5;
     box-shadow: 0 6px 25px rgba(100, 181, 246, 0.4);
 }

 .chat-bubble-inner {
     position: relative;
     color: white;
     font-size: 1.5rem;
 }

 .notification-badge {
     position: absolute;
     top: -5px;
     right: -5px;
     background: var(--accent-red);
     color: white;
     border-radius: 50%;
     width: 20px;
     height: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.7rem;
     font-weight: bold;
     animation: pulse 2s infinite;
 }

 @keyframes pulse {
     0% { transform: scale(1); }
     50% { transform: scale(1.1); }
     100% { transform: scale(1); }
 }

 /* Chat Container */
 .chat-container {
     width: 350px;
     background: white;
     border-radius: 12px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
     overflow: hidden;
     transform: translateY(20px);
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     position: absolute;
     bottom: 80px;
     right: 0;
 }

 .chat-widget.active .chat-container {
     transform: translateY(0);
     opacity: 1;
     visibility: visible;
 }

 /* Chat Header */
 .chat-header {
     background: var(--dark-blue);
     color: white;
     padding: 15px 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .chat-header h5 {
     font-weight: 600;
     margin: 0;
     font-size: 1.1rem;
 }

 .chat-header p {
     margin: 3px 0 0;
     font-size: 0.8rem;
     opacity: 0.8;
 }

 .close-chat {
     background: none;
     border: none;
     color: white;
     font-size: 1.2rem;
     cursor: pointer;
     opacity: 0.7;
     transition: opacity 0.2s;
 }

 .close-chat:hover {
     opacity: 1;
 }

 /* Chat Messages */
 .chat-messages {
     height: 300px;
     padding: 15px;
     overflow-y: auto;
     background: var(--light-gray);
 }

 .message-bot, .message-user {
     margin-bottom: 15px;
     display: flex;
 }

 .message-bot {
     justify-content: flex-start;
 }

 .message-user {
     justify-content: flex-end;
 }

 .message-content {
     max-width: 80%;
     padding: 10px 15px;
     border-radius: 18px;
     position: relative;
 }

 .message-bot .message-content {
     background: white;
     border-bottom-left-radius: 4px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
 }

 .message-user .message-content {
     background: var(--primary-blue);
     color: white;
     border-bottom-right-radius: 4px;
 }

 .message-time {
     display: block;
     font-size: 0.7rem;
     opacity: 0.7;
     margin-top: 5px;
     text-align: right;
 }

 /* Quick Replies */
 .quick-replies {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     padding: 10px 15px;
     border-bottom: 1px solid #eee;
 }

 .quick-reply {
     background: white;
     border: 1px solid var(--primary-blue);
     color: var(--primary-blue);
     border-radius: 20px;
     padding: 6px 12px;
     font-size: 0.8rem;
     cursor: pointer;
     transition: all 0.2s;
 }

 .quick-reply:hover {
     background: var(--primary-blue);
     color: white;
 }

 /* Chat Input */
 .chat-input-container {
     display: flex;
     padding: 15px;
     background: white;
 }

 .chat-input {
     flex: 1;
     border: 1px solid #ddd;
     border-radius: 24px;
     padding: 10px 15px;
     outline: none;
     transition: border 0.2s;
 }

 .chat-input:focus {
     border-color: var(--primary-blue);
 }

 .send-button {
     width: 40px;
     height: 40px;
     background: var(--primary-blue);
     color: white;
     border: none;
     border-radius: 50%;
     margin-left: 10px;
     cursor: pointer;
     transition: background 0.2s;
 }

 .send-button:hover {
     background: #42a5f5;
 }

 /* Responsive Design */
 @media (max-width: 576px) {
     .chat-widget {
         bottom: 20px;
         right: 20px;
     }

     .chat-container {
         width: 300px;
         bottom: 70px;
     }

     .chat-messages {
         height: 250px;
     }
 }

 /* Animation for new messages */
 @keyframes fadeIn {
     from { opacity: 0; transform: translateY(10px); }
     to { opacity: 1; transform: translateY(0); }
 }

 .new-message {
     animation: fadeIn 0.3s ease-out;
 }