/* Header Styling */
/* Basic Header Styling for All Screens */
header {
    background-color: #FFFFFF;
    padding: 0;
    margin: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

body {
    padding-top: 60px;
}


.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


.logo {
    width: 100px;
    margin-bottom: 20px;
    align-self: flex-start;
}


.navbar {
    display: flex;
    flex-grow: 1;
}


.nav-links {
    list-style: none;
    display: flex;
    font-size: 16px;
    gap: 15px;
}

.nav-links li a {
    text-decoration: none;
    font-weight: bold;
    color: #000000;
    transition: color 0.3s ease;
}


.nav-links li a:hover {
    color: #00B3E6;
}
/* Login css  */
/* Add some global padding and margin reset */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f7fc;
    margin: 0;
    padding: 0;
}

/* Style the container of the login form */
.login-container {
    width: 100%;
    max-width: 400px; /* Limit the width for larger screens */
    margin: 100px auto; /* Center the form vertically and horizontally */
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

/* Style the input fields */
.login-container input[type="email"],
.login-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* Style the submit button */
.login-container button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

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

/* Style the "Register here" link */
.register-link {
    color: #007bff;
    text-decoration: none;
}

.register-link:hover {
    text-decoration: underline;
}

p {
    margin-top: 15px;
}

.login-btn {
    display: inline-block; /* Makes the button inline while keeping block properties */
    background: linear-gradient(90deg, #008CBA, #8B5FBF, #0A2342);
    color: white; /* Text color */
    text-decoration: none; /* Remove underline */
    border-radius: 2px; /* Rounded corners */
    font-weight: bold; /* Bold text */
    font-size: 14px; /* Font size */
    padding: 8px 14px; /* Spacing inside the button */
    text-align: center; /* Center the text */
    border: none; /* Remove default border */
    cursor: pointer; /* Pointer cursor on hover */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
}

/* Add hover and focus styles */
.login-btn:hover, .login-btn:focus {
    background: linear-gradient(90deg, #0A2342, #8B5FBF, #008CBA);
    transform: translateY(-2px); /* Lift effect */
    outline: none; /* Remove focus outline */
}
/* registration style */
/* Global reset for padding and margin */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f7fc;
    margin: 0;
    padding: 0;
}

/* Style for the registration container */
.register-container {
    width: 100%;
    max-width: 400px; /* Limit the form width */
    margin: 100px auto; /* Center the form vertically and horizontally */
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

/* Styling for the form input fields */
.register-container input[type="text"],
.register-container input[type="email"],
.register-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* Styling for the submit button */
.register-container button {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.register-container button:hover {
    background-color: #218838;
}
/* Add this to your CSS file */
.alert-success {
    background-color: #28a745;
    color: white;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}

/* Style the login link */
.login-link {
    color: #007bff;
    text-decoration: none;
}

.login-link:hover {
    text-decoration: underline;
}

p {
    margin-top: 15px;
}


.btn-consultation {
    display: inline-block; /* Makes the button inline while keeping block properties */
    background: linear-gradient(90deg, #008CBA, #8B5FBF, #0A2342);
    color: white; /* Text color */
    text-decoration: none; /* Remove underline */
    border-radius: 2px; /* Rounded corners */
    font-weight: bold; /* Bold text */
    font-size: 14px; /* Font size */
    padding: 8px 14px; /* Spacing inside the button */
    text-align: center; /* Center the text */
    border: none; /* Remove default border */
    cursor: pointer; /* Pointer cursor on hover */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
}
.consultation-page{
    margin-top: 80px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 2;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: #000000;
    margin: 3px 0;
    transition: all 0.3s ease;
}


/* Responsive Styles */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }


    .container.active {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 250px;
        z-index: 1;
        overflow: auto;
    }

    .logo {
        width: 90px;
        margin: 0;
        align-self: flex-start;
    }


    .hamburger {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 3;
    }

    /* When hamburger is open */
    .hamburger.open .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open .line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }


    .navbar {
        display: none;
        width: 100%;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 10px;
        text-align: left;
        color: #000000;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .nav-links li a:hover {
        color: #00B3E6;
    }

/*
    .btn-consultation {
        display: none;
        margin-top: 10px;
        width: 100%;
        text-align: left;
    } */
    .consultation-page{
        margin-top: 50px;


    }


    .nav-links.active + .btn-consultation {
        display: block;
        margin-top: 10px;
        width: 100%;
        text-align: left;
    }
}
/* consultation button */
/* General Styles */
#consultation {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 20px;

    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #0A2342; /* Your primary color */
    margin-bottom: 20px;
}

p {
    text-align: center;
    margin-bottom: 30px;
}

/* Form Container */
.appointment-form-container {
    background-color: #ffffff; /* White background for the form */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333; /* Darker color for labels */
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd; /* Light border */
    border-radius: 4px;
    font-size: 16px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
textarea:focus {
    border-color: #0A2342; /* Change border color on focus */
    outline: none; /* Remove outline */
}

textarea {
    resize: vertical; /* Allow vertical resizing only */
}

/* Submit Button */
button[type="submit"] {
    padding: 10px 15px;
    background: linear-gradient(to right, #008CBA, #8B5FBF, #0A2342); /* Primary color */
    color: #ffffff; /* White text */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #00B3E6; /* Lighter color on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .appointment-form-container {
        padding: 15px; /* Adjust padding for smaller screens */
    }

    h1 {
        font-size: 1.8rem; /* Adjust heading size */
    }

    button[type="submit"] {
        font-size: 15px; /* Smaller button text */
    }
}


/* Footer Styles */
.footer {
    background-color: #0A2342;
    color: #FFFFFF;
    text-align: center;
    padding: 20px 0;
    height: auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.quick-links, .social-media, .contact-info, .newsletter {
    flex: 1;
    padding: 10px;
    min-width: 200px;
}

.quick-links h3, .social-media h3, .contact-info h3, .newsletter h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links ul li {
    margin: 5px 0;
}

.quick-links a, .social-media a, .newsletter button {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-links a:hover, .social-media a:hover {
    color: #00B3E6;
}

.social-media a {
    margin-right: 10px;
}

.social-media img {
    width: 30px;
    height: auto;
}




/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .quick-links, .social-media, .contact-info, .newsletter {
        flex: unset;
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }


    .social-media a {
        display: inline-block;
        margin: 5px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 10px;
    }

    .quick-links, .social-media, .contact-info, .newsletter {
        width: 100%;
    }

    .newsletter input[type="email"] {
        width: 100%;
    }

    .newsletter button {
        width: 100%;
        margin-top: 10px;
    }

    .social-media a {
        margin: 10px;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        flex-direction: column;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .btn-consultation {
        width: 100%;
        margin-top: 10px;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 120px;
        align-self: flex-start;
    }

    header {
        flex-direction: column;
        align-items: center;
    }


}
/* Hero Section Styling */
.hero-section {
    background: no-repeat center center/cover;
    color: white;
    padding: 120px 20px;
    text-align: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 70vh; /* Ensure the section is the correct height */
    position: relative;
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center vertically */
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%; /* 30% of the left side */
    height: 100%;

    z-index: 1; /* Ensure it's below the content but above the video */
}

.hero-content {
    position: absolute; /* Position the content absolutely */
    top: 50%;
    left: 0; /* Align to the left */
    width: 40%; /* Occupy 40% of the width */
    transform: translateY(-50%); /* Center vertically */
    z-index: 2; /* Ensure content is above the overlay */
    padding: 20px; /* Optional padding for the content */
    text-align: left; /* Align text to the left */
}

.hero-content h1 {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    padding: 15px 30px;
    background-color: #8B5FBF;
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #00B3E6;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .cta-button {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
   .hero-section {
        height: auto; /* Allow height to adjust naturally */
        padding: 60px 10px;
    }

    .dark-overlay {
        width: 100%; /* Full width for overlay */
    }

    .hero-content {
        width: 100%; /* Use full width for content */
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }


    .container.active {
        height: 100vh;
        overflow: hidden;
        z-index: 3
    }
}
/* services css */

.services-header {
    background: no-repeat center center/cover;
    padding: 120px 20px;
    text-align: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 90vh; /* Full viewport height */
    display: flex; /* Center content vertically */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;

}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the whole section without distortion */
    z-index: 1;
}

.overlay-content {
    position: relative;
    z-index: 2; /* Keeps text above the video */
    color: white; /* Ensures readability */
}

.services-header h1 {
    font-size: 30px;
    margin-bottom: 10px;
    color: white;
}

.services-header p {
    font-size: 25px;
    color: white;
    font-weight: bolder;

}


.services-header h1:hover {

    transition: color 0.3s ease-in-out;
}

.services-header p:hover {
    transition: color 0.3s ease-in-out;
}


@media (max-width: 768px) {
    #services-header{
        padding: 40px;
        margin-bottom: 30px;
    }

    .services-header h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .services-header p {
        font-size: 1.2rem;
        line-height: 1.4;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .services-header {
        padding: 20px;
        margin-bottom: 20px;
    }

    .services-header h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .services-header p {
        font-size: 1rem;
        max-width: 95%;
        line-height: 1.3;
    }
}


.services-overview,
.why-choose-us,
.client-testimonials {
    margin: 40px 0;
}

.service-item {
    margin-bottom: 20px;
}

.service-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
}



.why-choose-us ul {
    list-style-type: none;
    padding: 0;
}

.client-testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel blockquote {
    padding-left: 15px;
    font-style: italic;
}


.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0;
}

.service-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin: 10px;
    flex: 1 1 calc(25% - 20px);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
}

.card-header {
    padding: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.service-icon {
    max-width: 70px;
    height: auto;
    display: block;
    margin-right: 10px;
}

.card-content {
    display: none;
    padding: 20px;
}

.content-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px; }

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

.why-choose-us, .client-testimonials {
    margin-top: 40px;
}

.testimonial-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

blockquote {
    border-left: 5px solid #007bff;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}
/* modal button */
.btn-modal {
    padding: 10px 20px;
    background-color: #8B5FBF;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    right: 0%;
    transition: background-color 0.3s ease;
}

.btn-modal:hover {
    background-color: #00B3E6;
}
/* Style for the "Why Choose Us" Section */
.why-choose-us {
    background: linear-gradient(135deg, #f0f8ff, #e6f7ff);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 50px auto;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1.2px;
}

.why-choose-us ul {
    list-style: none;
    padding: 0;
}

.why-choose-us li {
    font-size: 1.2rem;
    padding: 10px 0;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
}

.why-choose-us li::before {
    content: "✔";
    color: #0056b3;
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    left: -30px;
    top: 0;
    transition: color 0.3s;
}

.why-choose-us li:hover {
    color: #0056b3;
}

.why-choose-us li:hover::before {
    color: #ff5722;
}

/* Industries Header */
.industries-section {
    background: no-repeat center center/cover;
    color: white;
    padding: 120px 20px;
    text-align: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 80vh; /* Full viewport height */
    display: flex; /* Center content vertically */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.industries-section .content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.industries-section .content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    letter-spacing: 1.2px;
    color: #ffffff; /* White color to contrast with the overlay */
}

.industries-section .content p {
    font-size: 30px;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0.5px;
    color: #ffffff;
}


/* Industries Overview */
.industries-overview {
    padding: 40px 20px;
    text-align: center;
}

.industries-overview h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #003366;
}

/* Industry Cards */
.industry-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.industry-card {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.industry-icon {
    width: 40px;
    height: 40px;
}

.industry-card h3 {
    font-size: 1.6rem;
    color: #0056b3;
}

.industry-card p {
    font-size: 1rem;
    color: #333;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}




.case-studies-cta {
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    background: linear-gradient(to right, #008CBA, #8B5FBF, #0A2342);
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #004d99;
}
/* Case Studies Page */

.case-studies-header {
    background: url('background-case-study.jpeg') no-repeat center center/cover;
    color: white;
    padding: 120px 20px;
    text-align: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 80vh; /* Full viewport height */
    display: flex; /* Center content vertically */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.case-studies-header h1 {
    font-size: 45px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1.2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.case-studies-header p {
    font-size: 30;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}


.case-studies-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}


.case-study {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study h2 {
    font-size: 1.6rem;
    color: #0056b3;
    margin-bottom: 15px;
    font-weight: bold;
}

.case-study ul {
    list-style-type: none;
    padding: 0;
}

.case-study li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

.case-study a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: linear-gradient(to right, #008CBA, #8B5FBF, #0A2342);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.case-study a:hover {
    background-color: #8B5FBF;
}


/* Responsive Design for Small Screens */
@media (max-width: 768px) {
    .case-studies-container {
        flex-direction: column;
        align-items: center;
    }

    .case-study {
        width: 90%;
    }

    .case-studies-header h1 {
        font-size: 2rem;
    }

    .case-studies-header p {
        font-size: 1.2rem;
    }
}

/* About Us Page Styles */

.about-header {
    background:  no-repeat center center/cover;
    color: white;
    padding: 120px 20px;
    text-align: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 80vh; /* Full viewport height */
    display: flex; /* Center content vertically */
    flex-direction: column;

    position: relative;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire section */
    z-index: 1;
}

.overlay-content {
    position: relative;
    z-index: 2;
    color: white;
}

.about-header h1 {
    font-size: 40px;
    align-items: start;
    color: black;
    margin-bottom: 10px;
}

.about-header p {
    font-size: 30px;
    align-items: start;
}

/* Mission Section */
.mission-section {
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 40px;
}

.mission-section h2 {
    font-size: 2rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.mission-section p {
    font-size: 1.2rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* Why Choose Section */
.why-choose-section {
    padding: 40px;
    text-align: center;
    background-color: #fff;
    margin-bottom: 40px;
}

.why-choose-section h2 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 20px;
}

.why-choose-section ul {
    list-style-type: none;
    padding: 0;
    font-size: 1.2rem;
    color: #333;
}

.why-choose-section ul li {
    margin: 10px 0;
    color: #333;
}

/* Team Section */
.team-section {
    padding: 40px;
    background-color: #f4f4f4;
    text-align: center;
}

.team-section h2 {
    font-size: 2rem;
    color: #0056b3;
    margin-bottom: 40px;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.team-member {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.team-photo {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.4rem;
    color: #0056b3;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 1rem;
    color: #333;
}


.values-section {
    padding: 40px;
    background-color: #fff;
    text-align: center;
}

.values-section h2 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 20px;
}

.values-section ul {
    list-style-type: none;
    padding: 0;
    font-size: 1.2rem;
    color: #333;
}

.values-section ul li {
    margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2rem;
    }

    .mission-section h2,
    .why-choose-section h2,
    .team-section h2,
    .values-section h2 {
        font-size: 1.8rem;
    }

    .team-container {
        flex-direction: column;
        align-items: center;
    }
}
/* Contact Us Page Styles */
/* Contact Section */
.contact {
    background:  no-repeat center center/cover;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.6);
    color: black;
    padding: 120px 20px;
    text-align: center;
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;

}



.contact h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact p {
    font-size: 1.2rem;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact {
        padding: 60px 20px;
    }
    .contact h1 { font-size: 1.8rem; }
    .contact p { font-size: 1rem; }
}

@media (max-width: 480px) {
    .contact {
        padding: 10px;
    }
    .contact h1 { font-size: 1.5rem; }
    .contact p { font-size: 0.9rem; }
}

/* Hover Effect */
.contact:hover {
    animation: none;
}

/* Modal Styling */
.modal-content {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background-color: #007bff;
    color: white;
}

.modal-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.modal-body {
    font-size: 0.9rem;
    line-height: 1.5;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
}

.close {
    color: white;
    font-size: 1.2rem;
}

/* Contact Form Section */
.contact-form-section {
    text-align: center;
    padding: 20px;
    margin-top: 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-form-section h2 {
    font-size: 1.8rem;
    color: #0056b3;
    margin-bottom: 15px;
}

.contact-form {
    max-width: 90%;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.form-group input,
.form-group textarea {
    padding: 8px;
    font-size: 0.9rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 100%;
}

.btn-submit {
    padding: 10px 20px;
    font-size: 1rem;
    background: linear-gradient(to right, #008CBA, #8B5FBF, #0A2342);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0056b3;
}
/* Styles for the Schedule Call Section */
.schedule-call-section {
    background-color: #f0f8ff; /* Light and calming background color */
    text-align: center; /* Center-align the content */
    padding: 50px 20px; /* Generous padding for a spacious look */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    margin: 20px auto; /* Center the section with margin */
    max-width: 800px; /* Limit the maximum width for better readability */
}

/* Styles for the Heading */
.schedule-call-section h2 {
    font-size: 2em; /* Large heading font size */
    color: #333; /* Dark gray text color for good contrast */
    margin-bottom: 20px; /* Space below the heading */
}

/* Styles for the Button */
.btn-schedule {
    display: inline-block; /* Inline block for padding and margin */
    background: linear-gradient(to right, #008CBA, #8B5FBF, #0A2342);
    color: #fff; /* White text color */
    padding: 12px 25px; /* Padding for a clickable area */
    font-size: 16px; /* Button text size */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

/* Hover Effect for the Button */
.btn-schedule:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* Add shadow on hover */
}

/* Responsive Design */
@media (max-width: 600px) {
    .schedule-call-section {
        padding: 30px 15px; /* Reduce padding on smaller screens */
    }

    .schedule-call-section h2 {
        font-size: 1.5em; /* Adjust heading size for smaller screens */
    }

    .btn-schedule {
        font-size: 14px; /* Adjust button size */
        padding: 10px 20px; /* Adjust padding */
    }
}

/* Contact Info Section */
.contact-info-section {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    margin-bottom: 30px;
}

.contact-info-section h2 {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 15px;
}

.contact-info-section p {
    font-size: 1rem;
    color: #333;
}

/* Map Section */
.map-section {
    text-align: center;
    padding: 20px;
}

.map-section h2 {
    font-size: 1.8rem;
    color: #0056b3;
    margin-bottom: 15px;
}

.map-container {
    max-width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-form-section h2,
    .contact-info-section h2,
    .map-section h2 {
        font-size: 1.6rem;
    }
    .btn-submit {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .contact-form-section h2,
    .contact-info-section h2,
    .map-section h2 {
        font-size: 1.4rem;
    }
    .btn-submit {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}

/* Scroll to Top Button */
#scrollToTop {
    background-color: #0A2342;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#scrollToTop:hover {
    background-color: #00B3E6;
}

/* generative ai */

.generative-header {
    background: url('background.jpeg') no-repeat center center/cover;
    color: white;
    padding: 120px 20px;
    text-align: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 80vh; /* Full viewport height */
    display: flex; /* Center content vertically */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.generative-header video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the background */
    z-index: -1; /* Keeps the video behind the text */
}

.generative-header .bg-black {
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
}

.generative-header h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.generative-header p {
    font-size: 1rem;
}

/* Responsive adjustments for small screens */
@media (max-width: 768px) {
    .generative-header {
        height: 50vh; /* Slightly shorter on small screens */
    }

    .generative-header h1 {
        font-size: 1.5rem; /* Smaller font size for mobile */
    }

    .generative-header p {
        font-size: 0.9rem;
    }
}



/* Basic Styling  for both generative page and home page generetive AI cards*/
.cards-section {
    position: relative;
    padding: 50px;
    color: #00B3E6;
    overflow-x: hidden;
}
.scroling-subtitle{
    color: #00B3E6;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    color: #333;
    transition: color 0.3s ease; /* Smooth color transition */
}

.arrow:hover {
    color: #00B3E6; /* Replace with your desired hover color */
}


.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

.cards-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
    transition: all 0.3s ease;
}

.card {
    position: relative;
    flex: 0 0 500px;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Video Background Styling */
.card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Content overlay */
.card-content {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
    background:  no-repeat center center/cover;
    text-align: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex; /* Center content vertically */
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
/* Default card styles */
.card-link {
    text-decoration: none;
    color: inherit;
    position: relative;
    flex: 0 0 500px;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: inline-block;
    width: 100%;
}

.card:hover {
    transform: scale(1.03); /* Slightly scales the card on hover */
}

@media only screen and (max-width: 600px) {
    .card-link {
        flex: 0 0 100%;
        height: auto;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    }


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


@media (max-width: 768px) {
    .cards-section {
        padding: 20px;
    }

    .cards-container {
        gap: 10px;
    }

    .card {
        flex: 0 0 80%;
        height: 200px;
    }

    .arrow {
        font-size: 20px;
    }

    .card-content {
        font-size: 18px;
    }
}

/* Case Studies Section Styling for home page*/
.home-case-studies-section {
    padding: 50px;
    text-align: center;
    background-color: #f8f8f8;
}

.home-case-studies-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.home-case-studies-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.home-case-study-card {
    position: relative;
    width: 300px;
    height: 200px;
    background: linear-gradient(to right, #008CBA, #8B5FBF, #0A2342);
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.home-case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.home-case-study-content {
    z-index: 2;
    padding: 20px;
}

.home-case-study-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.homecase-study-content p {
    font-size: 16px;
}

/* Responsive Styling for Smaller Screens */
@media (max-width: 768px) {
    .home-case-studies-container {
        flex-direction: column;
        gap: 15px;
    }

    .home-case-study-card {
        width: 90%;
    }
}
/* Generative Ai page below the main cards (solutions-card) */

/* Card container (wrap the card) */
/* Default Styles (for larger screens) */
.solutions-card-container {
    display: flex;
    justify-content: space-between; /* Aligns cards side-by-side */
    gap: 20px; /* Space between the card and the read-more section */
}

.solutions-card {
    width: 48%; /* Adjust width for side-by-side layout */
    background: linear-gradient(to right, #008CBA, #8B5FBF, #0A2342);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Shadow for depth */
    padding: 20px;
}

.read-more-section {
    width: 48%; /* Adjust width for side-by-side layout */
}

.read-more-content {
    margin-bottom: 20px;
    color: black;
}

.short-text {
    font-size: 18px;
    font-weight: bold;
}

.long-text {
    font-size: 14px;
    color: black;
}

.toggle-btn {
    background: linear-gradient(to right, #008CBA, #8B5FBF, #0A2342);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-btn:hover {
    background-color: #0056b3;
}

/* Media Query for Small Screens */
@media (max-width: 768px) {
    .solutions-card-container {
        flex-direction: column; /* Stack the cards vertically */
        align-items: center; /* Center content */
    }

    .solutions-card,
    .read-more-section {
        width: 100%; /* Take full width on small screens */
        margin-bottom: 20px; /* Space between the card and read-more section */
    }
}



/* General styles for the content above the card */

.upload-content {
    margin-top: 50px;
    padding-bottom: 30px;
    clear: both;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; /* Space between chat and upload container */
}

/* Styles for the combined content container */
.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
}

/* Chat section styling */
.chat-section {
    display: flex;
    justify-content: center;
    width: 100%;
}

.chat-box {
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.messages {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.message {
    margin: 10px 0;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
}

.user-message {
    background-color: #e0e0e0;
    align-self: flex-start;
}

.client-message {
    background-color: #007bff;
    color: #fff;
    align-self: flex-end;
}

.chat-input {
    display: flex;
    border-top: 1px solid #ddd;
    padding: 10px;
}

.chat-input input {
    flex: 1;
    padding: 8px;
    border: 1px solid #543434;
    border-radius: 5px;
    margin-right: 10px;
}

.chat-input button {
    background: linear-gradient(to right, #008CBA, #8B5FBF, #0A2342);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.chat-input button:hover {
    background-color: #0056b3;
}
/* Styles for the login overlay */
/* Styles for the login overlay */
.login-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Make sure the overlay is on top of other content */
}

.login-message {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}
.message-login-btn{
    background: linear-gradient(to right, #008CBA, #8B5FBF, #0A2342);
    color:white;
}
.message-register-btn{
     background: linear-gradient(to right, #008CBA, #8B5FBF, #0A2342);
     color: white;
}
/* Styles for the close button */
.close-button {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    position: absolute;
    top: -15px; /* Move the button above the content */
    right: -15px; /* Move the button to the outer right */
    font-size: 14px;
    transition: background 0.3s;
    z-index: 10; /* Ensure the button is above the content */
}

.close-button:hover {
    background-color: #c82333;
}
/* the chat blade  */
/* public/css/chat.css */

/* Main container for the entire chat */
#chat-app {
    display: flex;
    height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 90px;
    margin-bottom: 60px;
}

.user-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px;
    cursor: pointer;
}

.user-avatar {
    width: 30px;
    height: 30px;
    background-color: #4CAF50;  /* You can change this color */
    color: white;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px; /* Spacing between the avatar and name */
}

.user-name {
    font-size: 16px;
    font-weight: 500;
}

#chat-avatar {
    display: none; /* Hide the avatar */
}

/* Sidebar for user list */
.chat-sidebar {
    width: 25%;
     background: linear-gradient(to right, #008CBA, #8B5FBF, #0A2342);
    border-right: 1px solid #ddd;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.chat-sidebar h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.chat-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chat-sidebar ul li {
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    cursor: pointer;
    background-color: #f0f0f0;
    transition: background-color 0.3s ease;
}

.chat-sidebar ul li:hover {
    background-color: #e0e0e0;
}

.chat-sidebar ul li.active {
    background: linear-gradient(to right, #008CBA, #8B5FBF, #0A2342);
    color: white;
}

/* Main chat window */
.chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 15px;
    justify-content: space-between;
}

/* Chat header (user name) */
.chat-header {
    display: none;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.chat-header h3 {
    font-size: 18px;
    color: #00B3E6;
}
@media (min-width: 769px) {
    .back-button {
        display: none;
    }
}
/* Container for chat messages */
.messages-container {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #fafafa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.messages-container div {
    padding: 10px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    max-width: 70%;
    word-wrap: break-word;
}

.chat-message {
    display: inline-flex; /* Inline to shrink to fit content */
    align-items: center;
    margin: 5px 0; /* Spacing between messages */
    padding: 10px;
    border-radius: 15px;
    max-width: 80%; /* Limit to a percentage of the container's width */
    word-wrap: break-word; /* Ensure long messages wrap */
    width: fit-content; /* Shrink to fit content dynamically */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow for better appearance */
}

.message-left {
    background-color: #e1e1e1;
    color: #333;
    align-self: flex-start;
    border-radius: 20px 20px 0 20px;
}

.message-right {
    background-color: #007bff;
    color: #fff;
    align-self: flex-end;
    border-radius: 20px 20px 20px 0;
}

/* Optional: Add padding to the container to ensure messages don't touch the edges */
.messages-container {
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 0px; /* Space between messages */
}


.message-content {
    display: inline-block;
    max-width: 100%;
    word-break: break-word; /* Ensure messages don't overflow */
}

.timestamp {
    font-size: 12px;
    color: black;
    margin-left: 3px; /* Spacing between message and timestamp */
    white-space: nowrap; /* Prevent wrapping */
}


/* Chat input area */
.chat-form {
    display: flex;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

#chat-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 16px;
    resize: none;
    height: 50px;
    margin-right: 10px;
    box-sizing: border-box;
}


#chat-input:focus {
    outline: none;
    border-color: #4CAF50;
}

#chat-form button {
    background: linear-gradient(to right, #008CBA, #8B5FBF, #0A2342);
    color: white;
    border: none;
    padding: 12px 20px;

    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

#chat-form button:hover {
    background-color: #45a049;
}


.textarea-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px; /* Add spacing between elements */
}

#chat-input {
    flex-grow: 1; /* Ensure the input takes all available space */
    height: 50px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    resize: none; /* Prevent resizing */
}

.send-btn {
    background: transparent;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Fixed size */
    height: 40px; /* Fixed size */
}

.send-btn i {
    pointer-events: none; /* Prevent icon clicks */
}

.file-upload-container {
    display: flex;
    align-items: center;
}

.hidden-file-input {
    display: none; /* Hide the default file input */
}

.file-upload-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;

    color: black;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.file-upload-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    /* General layout */
.chat-sidebar {
    width: 100%;
    height: 100vh;
    background-color: #f4f4f4;
    overflow-y: auto;
    transition: transform 0.3s ease-in-out;
}

.chat-main {
    width: 100%;
    height: 100vh;
    display: none; /* Hide by default */
    background-color: #fff;
    overflow-y: auto;
}

/* Active state */
.chat-main.active {
    display: block;
}

/* Inactive state for sidebar */
.chat-sidebar.inactive {
    display: none; /* Hide the sidebar */
}

/* Back button styling */


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





}

.file-preview {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.file-preview img.image-preview {
    max-width: 100px;
    max-height: 100px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.file-download {
    color: #007bff;
    text-decoration: none;
}

.file-download:hover {
    text-decoration: underline;
}

.message-files {
    margin-top: 10px;
}

