        /* Reset Basic Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        /* Body Styling */
        body {
            background-color: #121212;
            color: #fff;
            font-family:titr ;
            line-height: 1.6;
            font-size: 18px;
            padding: 0;
            margin: 0;
            
        }
        

        /* Header Styling */
        header {
            background: linear-gradient(45deg, #08c8cf, #00413d);
            color: #fff;
            text-align: center;
            padding: 80px 0;
            margin-bottom: 50px;
            border-bottom: 5px solid #333;
            animation: fadeIn 2s ease-out;
        }

        header h1 {
            font-family: 'Pacifico', Maneli ;
            font-size: 4rem;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        header p {
            font-size: 1.5rem;
            opacity: 0.8;
            font-family: titr ;
        }

        /* Navigation Bar */
        nav {
            background-color: #212121;
            padding: 10px;
            text-align: center;
            margin-bottom: 30px;
        }

        nav ul {
            list-style-type: none;
            padding: 0;
            display: flex;
            justify-content: center;
            font-family: maneli;
        }

        nav ul li {
            margin: 0 20px;
        }

        nav ul li a {
            text-decoration: none;
            color: #f0f0f0;
            font-size: 1.2rem;
            font-weight: 500;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        nav ul li a:hover {
            color:#1fa7ab;
            transform: translateY(-3px);
        }

        /* Container for Main Sections */
        .container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
            font-family: titr;
        }

        /* Styling for Each Section */
        .section {
            background-color: #1e1e1e;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .section:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        }

        .section h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #f1f1f1;
            font-weight: 600;

        }

        .section p {
            font-size: 1.1rem;
            color: #ddd;
            line-height: 1.8;
        }

        /* Animations for Section Details */
        @keyframes slideIn {
            0% {
                transform: translateY(50px);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Detailed Box */
        .details-box {
            display: none;
            margin-top: 10px;
            padding: 15px;
            background-color: #1e1e1e;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            animation: slideIn 0.5s ease-out;
        }

        /* Footer Section */
        footer {
            background-color: #222;
            text-align: center;
            padding: 30px;
            margin-top: 50px;
            font-family: maneli;
        }

        footer p {
            color: #ccc;
            font-size: 1rem;
        }

        footer a {
            color: #00ffe5;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }
                /* استایل دکمه پشتیبانی */
                .chat-btn {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    position: fixed;
                    bottom: 20px;
                    right: 20px;
                    background: linear-gradient(45deg, #08c8cf, #00413d);
                    color: #fff;
                    font-size: 18px;
                    font-weight: bold;
                    padding: 15px 25px;
                    border-radius: 50px;
                    text-align: center;
                    text-decoration: none;
                    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
                    transition: all 0.3s ease;
                    z-index: 1000;
                    gap: 10px; /* فاصله آیکون از متن */
                }
        
                .chat-btn i {
                    font-size: 20px;
                }
        
                .chat-btn:hover {
                    transform: scale(1.1);
                    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
                    background: linear-gradient(45deg, #00413d, #08c8cf);
                }
        
                /* استایل جعبه چت */
                .chat-box {
                    position: fixed;
                    bottom: 90px;
                    right: 20px;
                    width: 90%;
                    max-width: 400px;
                    background: #002b36;
                    border-radius: 15px;
                    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
                    overflow: hidden;
                    display: none;
                    flex-direction: column;
                    z-index: 1000;
                    color: #00ccff;
                }
        
                .chat-header {
                    background: linear-gradient(45deg, #00fff2, #00413d);
                    color: #fff;
                    padding: 20px;
                    font-size: 20px;
                    text-align: center;
                    font-weight: bold;
                }
        
                .chat-messages {
                    height: 300px;
                    overflow-y: auto;
                    padding: 15px;
                    background: #073642;
                    color: #fff;
                    font-family: Arial, sans-serif;
                }
        
                .chat-input {
                    display: flex;
                    border-top: 1px solid #ddd;
                    padding: 5px;
                }
        
                .chat-input input {
                    flex: 1;
                    padding: 15px;
                    border: none;
                    outline: none;
                    font-size: 16px;
                    border-radius: 5px;
                }
        
                .chat-input button {
                    background: #00fff7;
                    color: #000000;
                    border: none;
                    padding: 15px 20px;
                    cursor: pointer;
                    border-radius: 5px;
                    transition: background 0.3s ease;
                }
        
                .chat-input button:hover {
                    background: #00918a;
                }
        
                .message {
                    margin: 5px 0;
                    padding: 10px;
                    border-radius: 5px;
                }
        
                .message.user {
                    background: #00fbff;
                    color: #000000;
                    text-align: right;
                }
        
                .message.bot {
                    background: #586e75;
                    color: #fff;
                    text-align: left;
                }
        
                .preset-btn {
                    background: #02333e;
                    color: #fff;
                    border: none;
                    padding: 10px 20px;
                    margin: 5px;
                    border-radius: 5px;
                    cursor: pointer;
                    font-size: 14px;
                    transition: background 0.3s ease;
                }
        
                .preset-btn:hover {
                    background: #1cefeb;
                }
                #comment-section {
    max-width: 600px;
    margin: 20px auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f9f9f9;
}

#comments-container {
    margin-bottom: 20px;
}

.comment {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
}

.comment p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

#add-comment textarea {
    width: 100%;
    height: 80px;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: none;
}

#add-comment button {
    padding: 10px 20px;
    background-color: #00ccff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#add-comment button:hover {
    background-color: #00b3a7;
}
