/* Custom Styles for Ges-sco */
.language-switcher {
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 1001;
}

.language-switcher .btn-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2px;
}

.language-switcher .btn {
    border: none;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Contact Form Styles */
.contact-form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.contact-form-wrapper h2 {
    color: #333;
    margin-bottom: 15px;
}

.contact-form-wrapper p.lead {
    color: #666;
    margin-bottom: 30px;
}

.form-control {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.contact-form-wrapper label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.btn-submit-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    color: white;
    position: relative;
    z-index: 2;
}

.contact-info-box h3 {
    color: white;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: start;
    margin-bottom: 25px;
}

.contact-info-item i {
    font-size: 24px;
    margin-right: 15px;
    color: #ffd700;
}

.contact-info-item div h5 {
    color: white;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-item div p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 768px) {
    .language-switcher {
        top: 15px;
        right: 15px;
    }

    .language-switcher .btn {
        padding: 4px 12px;
        font-size: 11px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-info-box {
        margin-top: 30px;
        padding: 30px 20px;
    }
}

/* Arimo Font Classes */
.arimo-regular {
    font-family: "Arimo", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.arimo-semibold {
    font-family: "Arimo", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.arimo-bold {
    font-family: "Arimo", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/* Form validation styles */
.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control.is-valid {
    border-color: #28a745;
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

/* Testimonials Carousel Styles */
.erp_testimonial_info .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.erp_testimonial_info .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid #667eea !important;
}

.erp_testimonial_info .owl-nav button:hover {
    background: #667eea !important;
    transform: scale(1.1);
}

.erp_testimonial_info .owl-nav button span {
    font-size: 1.5rem;
    color: #667eea;
}

.erp_testimonial_info .owl-nav button:hover span {
    color: white;
}

.erp_testimonial_info .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.erp_testimonial_info .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.erp_testimonial_info .owl-dot.active {
    background: #667eea;
    width: 30px;
    border-radius: 6px;
}

/* Animation for testimonial items */
.erp_testimonial_item {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.erp_testimonial_item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.erp_testimonial_item:hover::before {
    left: 100%;
}

.erp_testimonial_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Stats animation */
.stat-item {
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
}

/* FAQ Enhanced Styles */
.faq-card {
    overflow: hidden;
}

.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
    border-color: #667eea !important;
}

.faq-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.faq-card:hover h5 {
    color: #667eea !important;
}

.faq-card .collapse.show~.card-body .toggle-icon i {
    transform: rotate(180deg);
}

.faq-card[aria-expanded="true"] .toggle-icon i {
    transform: rotate(180deg);
}

[data-bs-toggle="collapse"][aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

/* Animation for collapse */
.collapse {
    transition: all 0.35s ease;
}

/* CTA Button Hover Effect */
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
}

/* Footer Styles */
.footer_area {
    position: relative;
    overflow: hidden;
}

.footer_area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-links a {
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a:hover {
    transform: translateX(5px);
    color: #ffd700 !important;
}

.hover-underline {
    position: relative;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px) scale(1.1);
}

.btn-circle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white !important;
    transform: translateY(-3px);
}

.trust-badge {
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    opacity: 1 !important;
}

/* Scroll Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer_area .col-lg-3,
.footer_area .col-lg-2 {
    animation: fadeInUp 0.6s ease forwards;
}

.footer_area .col-lg-3:nth-child(1) {
    animation-delay: 0.1s;
}

.footer_area .col-lg-3:nth-child(2) {
    animation-delay: 0.2s;
}

.footer_area .col-lg-2:nth-child(3) {
    animation-delay: 0.3s;
}

.footer_area .col-lg-2:nth-child(4) {
    animation-delay: 0.4s;
}

.footer_area .col-lg-2:nth-child(5) {
    animation-delay: 0.5s;
}

/* FAQ Animation Effects */
.faq_area .card {
    transition: all 0.3s ease;
    background: white;
}

.faq_area .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

.faq_area .card-body {
    transition: all 0.3s ease;
}

.faq_area .card-body:hover h5 {
    color: #007bff !important;
}

.faq_area .collapse {
    transition: all 0.3s ease;
}

.faq_area .card i {
    transition: all 0.3s ease;
}

.faq_area .card:hover i {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .erp_testimonial_area h2 {
        font-size: 2rem !important;
    }

    .erp_testimonial_item {
        padding: 25px !important;
    }

    .avatar-circle {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.3rem !important;
    }

    .stat-item h3 {
        font-size: 2rem !important;
    }

    .faq_area h2 {
        font-size: 2rem !important;
    }

    .faq_area .card-body {
        padding: 15px !important;
    }

    .faq_area .card-body h5 {
        font-size: 1rem !important;
    }

    .faq_area .collapse .card-body {
        padding-left: 45px !important;
        font-size: 0.95rem !important;
    }

    .footer_area {
        padding: 50px 0 0 !important;
    }

    .footer_area .row>div {
        padding: 20px 30px !important;
    }

    .footer_area h3 {
        font-size: 1.1rem !important;
    }

    .trust-badge {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .faq_card .collapse .card-body {
        padding-left: 20px !important;
    }
}