/* ----------------------------------

Template Name: Softar - Software Landing Page
Author: validtheme
Description:
Version: 2.0

Main Font    : Manrope
Main Color   : #5138ee

-------------------------------------

[Typography]

Body copy:    15px 'Roboto', sans-serif
Header:     36px 'Manrope', sans-serif
Input, textarea:  15px 'Roboto', sans-serif
Sidebar heading:  20px 'Manrope', sans-serif

>>> TABLE OF CONTENTS:
=======================
        
    01. Template default css
        - Animations
        - General
        - Section Title
        - Video Button
        - Typography
        - Tables
        - Forms
        - Buttons
        - Pagination
        - Colors
        - Accordion
        - Tabs
    02. Preloader
    03. Topbar
    04 Navbar
        - Navbar Default
        - Navbar Transparent
        - Navbar Sticky
        - Navbar Box
    05. Banner
        - Slide Effect
        - Fade Effect
    06. Features
    07. About Us
        - Full Width Version
        - Default Version
    08. Services
        - Version One
        - Version Two
        - Services Single
    09. Why Choose Us
    10. Company Analysis/Graph
    11. Companies/Clients/Partner
    12. Team
    13. Testimonials
    14. Projects
    15. Gallery
    16. Our Expertise
    17. Work Process
    18. FAQ
    19. Blog
        - Standard
        - Left Sidebar
        - Right Sidebar
        - Single
    20. Error 404
    21. Footer
    22. PHP Contact Form
    23. Others

*/

/*
** General Styles for HTML tags
*/

/* Custom styles for Telegram button */
.btn-telegram {
    background: #0088cc;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,136,204,0.3);
    transition: all 0.3s ease;
}

.btn-telegram:hover {
    background: #006699;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,136,204,0.4);
    color: #fff;
}

.btn-telegram i {
    margin-right: 10px;
}

/* Animation for button hover */
.btn-telegram {
    position: relative;
    overflow: hidden;
}

.btn-telegram:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-telegram:hover:after {
    width: 300px;
    height: 300px;
}

/* FAQ Accordion Styles */
.faq-style-one .card {
    border: 1px solid #e7e7e7;
    margin-bottom: 15px;
    border-radius: 5px;
    background: #ffffff;
}

.faq-style-one .card .card-header {
    border: none;
    background: transparent;
    padding: 0;
}

.faq-style-one .card .card-header h4 {
    margin: 0;
    padding: 0;
}

.faq-style-one .card .card-header h4 button {
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 30px;
    position: relative;
    text-align: left;
    text-decoration: none;
    width: 100%;
    color: #232323;
}

.faq-style-one .card .card-header h4 button::after {
    font-family: "Font Awesome 5 Pro";
    content: "\f078";
    font-weight: 900;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: #232323;
    font-size: 14px;
}

.faq-style-one .card .card-header h4 button.collapsed::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-style-one .card .card-body {
    padding: 20px 30px;
    border-top: 1px solid #e7e7e7;
}

.collapse.show {
    display: block;
}
