/* Custom styles for About section */
.logo{
    max-width: 245px;
}
.about-image {
    position: relative;
    padding: 20px;
}

.about-image img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: translateY(-5px);
}

.about-content {
    padding: 30px;
}

.about-content h2 {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.about-content h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: #4ac4f3;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.counter-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-5px);
}

.counter-item .timer {
    font-size: 36px;
    font-weight: 700;
    color: #4ac4f3;
    margin-bottom: 10px;
}

.counter-item .medium {
    font-size: 16px;
    color: #666;
}

.about-features {
    margin-top: 30px;
}

.about-features ul {
    list-style: none;
    padding: 0;
}

.about-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.about-features ul li i {
    color: #4ac4f3;
    margin-right: 15px;
    font-size: 20px;
}

.about-features ul li span {
    font-size: 16px;
    color: #666;
}

/* Animation effects */
.wow {
    visibility: hidden;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInLeft {
    animation: fadeInLeft 1s ease forwards;
}

.fadeInRight {
    animation: fadeInRight 1s ease forwards;
}

/* Process Section Styles */
.process-area {
    position: relative;
    padding: 100px 0;
}

.process-area .site-heading {
    margin-bottom: 60px;
}

.process-area .site-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.process-area .site-heading .devider {
    width: 60px;
    height: 3px;
    background: #4ac4f3;
    margin: 0 auto;
}

.process-items .single-item {
    margin-bottom: 30px;
}

.process-items .item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.process-items .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-items .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 196, 243, 0.1) 0%, rgba(74, 196, 243, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.process-items .item:hover::before {
    opacity: 1;
}

.process-items .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-items .item:hover .icon {
    background: #4ac4f3;
    transform: rotateY(360deg);
}

.process-items .icon i {
    font-size: 32px;
    color: #4ac4f3;
    transition: all 0.3s ease;
}

.process-items .item:hover .icon i {
    color: #fff;
}

.process-items .icon span {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #4ac4f3;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
}

.process-items h4 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.process-items .item:hover h4 {
    color: #4ac4f3;
}

.process-items p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

/* Animation for process items */
.process-items .single-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.process-items .single-item:nth-child(2) {
    animation-delay: 0.2s;
}

.process-items .single-item:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Process Details Styles */
.process-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.process-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-details ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.process-details ul li:last-child {
    margin-bottom: 0;
}

.process-details ul li i {
    color: #4ac4f3;
    margin-right: 10px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.process-items .item:hover .process-details ul li {
    color: #333;
}

.process-items .item:hover .process-details ul li i {
    transform: scale(1.2);
}

.process-items .item:hover .process-details {
    border-top-color: rgba(74, 196, 243, 0.2);
}

/* Стили для блока "Наши Услуги" */
.features-area {
    position: relative;
    padding: 100px 0;
    background: #fff;
}

.features-area .site-heading {
    margin-bottom: 60px;
}

.features-area .site-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.features-area .site-heading .devider {
    width: 60px;
    height: 3px;
    background: #4ac4f3;
    margin: 0 auto;
}

.features-area .site-heading p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-top: 20px;
}

.features-box .single-item {
    margin-bottom: 30px;
}

.features-box .item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}

.features-box .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.features-box .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 196, 243, 0.1) 0%, rgba(74, 196, 243, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.features-box .item:hover::before {
    opacity: 0;
}

.features-box .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.features-box .icon i {
    font-size: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.features-box .item:hover .icon i {
    color: #ffffff;
}

.features-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.features-box .item:hover h4 {
    color: #333;
}

.features-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

/* Анимация для элементов */
.features-box .single-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.features-box .single-item:nth-child(2) {
    animation-delay: 0.2s;
}

.features-box .single-item:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-page .features-box .icon i::after {
    display: none;
}

.about-page .features-box .icon i {
    font-size: 32px;
    color: #ffffff;
}

/* FAQ Area */
.faq-area {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.faq-area .site-heading {
    margin-bottom: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.faq-area .site-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* .faq-area .site-heading h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: #4ac4f3;
} */

.faq-area .site-heading .devider {
    width: 60px;
    height: 3px;
    background: #4ac4f3;
    margin: 0 auto;
}

.faq-area .faq-content {
    padding-right: 30px;
    position: relative;
}

.faq-area .card {
    border: none;
    margin-bottom: 20px;
    background: #ffffff;
    border-radius: 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.faq-area .card-header {
    background: #ffffff;
    border: none;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-area .card-header:hover {
    background: #f8f9fa;
}

.faq-area .card-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    position: relative;
    padding-right: 30px;
    transition: all 0.3s ease;
}

.faq-area .card-header h4:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #4ac4f3;
    transition: all 0.3s ease;
}

.faq-area .card-header h4[aria-expanded="true"] {
    color: #4ac4f3;
}

.faq-area .card-header h4[aria-expanded="true"]:after {
    content: '\f106';
    color: #4ac4f3;
    transform: translateY(-50%) rotate(180deg);
}

.faq-area .card-body {
    padding: 25px;
    background: #ffffff;
    border-top: 1px solid #eee;
}

.faq-area .card-body p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.faq-area .card-body ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.faq-area .card-body ul li {
    margin-bottom: 10px;
    color: #666;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.faq-area .card-body ul li:hover {
    color: #4ac4f3;
    transform: translateX(5px);
}

.faq-area .card-body ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #4ac4f3;
    position: absolute;
    left: 0;
    top: 2px;
}

.faq-area .faq-thumb {
    text-align: center;
    position: relative;
}

.faq-area .faq-thumb img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .faq-area .faq-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .faq-area .faq-thumb {
        margin-top: 50px;
    }
    
    .faq-area .site-heading h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .faq-area {
        padding: 60px 0;
    }
    
    .faq-area .card-header {
        padding: 20px;
    }
    
    .faq-area .card-body {
        padding: 20px;
    }
    
    .faq-area .card-header h4 {
        font-size: 16px;
    }
    
    .faq-area .card-body p {
        font-size: 14px;
    }
}

/* CTA Area */
.cta-area {
    padding: 100px 0;
    background: linear-gradient(135deg, #4ac4f3 0%, #2a7de9 100%);
    position: relative;
    overflow: hidden;
}

.cta-area:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(assets/img/shape/1.png) no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.cta-area h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-area p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-area .btn-light {
    background: #fff;
    color: #4ac4f3;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-area .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: #fff;
    color: #4ac4f3;
}

.cta-area .btn-light i {
    margin-right: 10px;
}

/* Contact Area Styles */
.contact-area {
    background: #ffffff;
    padding: 100px 0;
}

.contact-info {
    padding: 30px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.contact-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-list ul li .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 50%;
    margin-right: 15px;
    color: #4ac4f3;
}

.contact-list ul li .content {
    flex: 1;
}

.contact-list ul li .content strong {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.contact-list ul li .content a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-list ul li .content a:hover {
    color: #4ac4f3;
}

.social-links {
    margin-top: 30px;
}

.social-links h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.social-links .telegram {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #0088cc;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links .telegram i {
    margin-right: 10px;
    font-size: 20px;
}

.social-links .telegram:hover {
    background: #0077b3;
    transform: translateY(-2px);
}

.map-container {
    height: 500px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA Area Styles */
.cta-area {
    background: linear-gradient(135deg, #4ac4f3 0%, #2a7de9 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-area h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-area p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-area .btn-light {
    background: #fff;
    color: #4ac4f3;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-area .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .contact-info {
        margin-bottom: 50px;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .contact-area {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: 30px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .cta-area {
        padding: 60px 0;
    }
    
    .cta-area h2 {
        font-size: 30px;
    }
} 