/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background-color: #fdf6e3;
    color: #333;
}

/* Header Styling */
header {
    background-color: #f57c00;
    color: white;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    width: 60px;
}
.logo h1 {
    margin-left: 10px;
    font-size: 24px;
    font-family: Arial, Helvetica, sans-serif;

}
nav ul {
    display: flex;
    list-style: none;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    text-decoration: none;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 17px;
    transition: 0.3s;

}
nav ul li a:hover {
    color: #333;
    background-color: #f1daac;
    padding: 5px 10px;
    border-radius: 5px;
}
/* Slider Styling */
.slider {
    position: relative;
    max-width: 100%;
    height: 400px;
    overflow: hidden;
}

.slide-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fade {
    animation: fadeEffect 5s infinite;
}

@keyframes fadeEffect {
    0% { opacity: 0; }
    25% { opacity: 1; }
    50% { opacity: 1; }
    75% { opacity: 0; }
    100% { opacity: 0; }
}

/* Comments Section */
.comments-section {
    padding: 40px 10%;
    background-color: #fdf6e3;
    text-align: center;
}
.comments-section h2 {
    font-size: 32px;
    color: #f57c00;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.comments-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.comment-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.comment-card:hover {
    transform: translateY(-10px);
}
.comment-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}
.comment-details p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    text-align: center;
}
.comment-details h4 {
    font-size: 18px;
    color: #f57c00;
    margin-bottom: 5px;
}
.comment-details span {
    font-size: 14px;
    color: #777;
}
/* Chatbot Styles */
#chatbot-box {
    display: none;
    flex-direction: column;
    width: 300px;
    height: 400px;
    border: 2px solid #FF9933;
    border-radius: 10px;
    overflow: hidden;
    position: fixed; /* Fixed position for bottom-right alignment */
    bottom: 80px;    /* Distance from the bottom of the viewport */
    right: 20px;     /* Distance from the right of the viewport */
    background: #FFDD99;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;   /* Ensure it stays above other elements */
}

#chatbot-header {
    background: #FF9933;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#chatbot-header img {
    width: 36px;
    height: 36px;
}

#chatbot-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    font-family: Arial, sans-serif;
    font-size: 14px;
    background: #FFF5E1;
    position: relative;
}

.message {
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 5px;
}

.you {
    text-align: right;
    background-color: #FFE4B5;
}

.bot {
    text-align: left;
    background-color: #FFD580;
}

#chatbot-footer {
    display: flex;
    padding: 10px;
    background: #FFE4B5;
}

#chatbot-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

#chatbot-toggle-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-align: center;
}

#chatbot-toggle {
    background: #FF6600;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#need-help-label {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #FF6600;
    margin-bottom: 5px;
}

#watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    z-index: 0;
    width: 200px;
    height: 200px;
}




/* Donate Button */
.donate-btn {
    background: #fff;
    color: #f57c00;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}
.donate-btn:hover {
    background-color: #ffb300;
    color: white;
}

/* Works Section */
.works-section {
    padding: 40px 10%;
    background-color: #fdf6e3;
    text-align: center;
}
.works-section h2 {
    font-size: 32px;
    color: #f57c00;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.works-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.work-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: left;
    transition: transform 0.3s ease-in-out;
}
.work-card:hover {
    transform: translateY(-16px);
}
.work-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.work-details {
    padding: 20px;
}
.work-details h3 {
    color: #f57c00;
    font-size: 20px;
    margin-bottom: 10px;
}
.work-details p {
    color: #555;
    font-size: 14px;
    margin-bottom: 15px;
}
.read-more {
    text-decoration: none;
    color: #f57c00;
    font-weight: bold;
    transition: color 0.3s;
}
.read-more:hover {
    color: #ff9800;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 10%;
    text-align: left;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-section {
    flex: 1;
    min-width: 200px;
}
.footer-section h4 {
    color: #ff9800;
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
}
.footer-section p,
.footer-section ul {
    font-size: 14px;
    color: #ccc;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 8px;
}
.footer-section ul li a {
    text-decoration: none;
    color: #ff9800;
    transition: color 0.3s;
}
.footer-section ul li a:hover {
    color: #fff;
}
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #ccc;
}

.logo {
    background-color: #f5f0e7;
    border-radius: 1rem;
    color: #f57c00;
    width: 22rem;
    padding: 3px;
    
}
