body {
    /*background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);*/
    background: #e9ecef;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

p {
    font-size: 1.1rem;
}

.content {
    flex: 1;
}

@media (max-width: 767px){
    .colTitlePageContent{
        width: 100% !important
    }
}

.titlePageContent{
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    color: white;
}

.title-wrapper {
    margin-top: 0.5rem;
    margin-left: 1rem;
    margin-bottom: 0.5rem;
}

.mt-2r {
    margin-top: 2rem;
}

.main-title-mentions {
    color: #181852;
    margin-top: 2%;
}

.main-title-mentions::after {
  content: "";
  display: block;
  width: 30%;
  height: 4px;
  background: linear-gradient(135deg, #181852 0%, #067790 100%);;
  border-radius: 2px;
  margin-left: 30%;
}

.w-25r {
    width: 25rem !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes arrowMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        transform: translateY(-30px);
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Header */
.header-icon {
    animation: scaleIn 0.8s ease-out;
    background: linear-gradient(135deg, #4facfe 0%, #764ba2 100%);
    width: 80px;
    height: 80px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.img-blason {
    height:60px;
    padding-left:22px;
    padding-top:8px;
    margin-right: 22px;
}

.main-title {
    animation: slideDown 0.6s ease-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.subtitle {
    animation: fadeIn 0.6s ease-out 0.4s both;
    font-size: 1.5rem;
    font-weight: 300;
}

.decorative-line {
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin: 2rem auto;
    border-radius: 2px;
    animation: fadeIn 0.8s ease-out 0.6s both;
    width: 0;
    animation: lineGrow 0.8s ease-out 0.6s forwards;
}

@keyframes lineGrow {
    from { width: 0; }
    to { width: 100px; }
}

/* Cards */
.solution-card {
    animation: fadeInUp 0.6s ease-out both;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
}

.solution-card:nth-child(1) {
    animation-delay: 0.3s;
}

.solution-card:nth-child(2) {
    animation-delay: 0.5s;
}

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gradient-border-blue {
    height: 5px;
    background: linear-gradient(135deg, #181852 0%, #00f2fe 100%);
}

.gradient-border-purple {
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-icon-blue {
    background: linear-gradient(135deg, #181852 0%, #00f2fe 100%);
    width: 60px;
    height: 60px;
}

.card-icon-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 60px;
    height: 60px;
}

.icon-wrapper {
    animation: scaleIn 0.5s ease-out 0.6s both;
    min-height: 135px;
    align-items: center;
}

.img-logo-solution-abys {
    object-fit: cover;
    width: 45%;
}

.img-logo-solution-slys {
    object-fit: cover;
    width: 30%;
}

.subtitle-gradient-blue {
    background: linear-gradient(135deg, #181852 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle-gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gradient {
    border-width: 2px;
    transition: all 0.3s ease;
}

.solution-card:hover .btn-gradient-blue {
    background: linear-gradient(135deg, #181852 0%, #00f2fe 100%);
    border-color: white !important;
    color: white !important;
}

.solution-card:hover .btn-gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: white !important;
    color: white !important;
}

.arrow-icon {
    animation: arrowMove 1.5s ease-in-out infinite;
}

/* Features */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.feature-item {
    animation: slideInLeft 0.6s ease-out both;
    display: flex;
    align-items: start;
    margin-bottom: 0.5rem;
}

.col-lg-5:nth-child(1) .feature-item:nth-child(1) { animation-delay: 0.9s; }
.col-lg-5:nth-child(1) .feature-item:nth-child(2) { animation-delay: 1.05s; }
.col-lg-5:nth-child(1) .feature-item:nth-child(3) { animation-delay: 1.2s; }
.col-lg-5:nth-child(1) .feature-item:nth-child(4) { animation-delay: 1.35s; }
.col-lg-5:nth-child(1) .feature-item:nth-child(5) { animation-delay: 1.45s; }

.col-lg-5:nth-child(2) .feature-item:nth-child(1) { animation-delay: 1.1s; }
.col-lg-5:nth-child(2) .feature-item:nth-child(2) { animation-delay: 1.25s; }
.col-lg-5:nth-child(2) .feature-item:nth-child(3) { animation-delay: 1.4s; }
.col-lg-5:nth-child(2) .feature-item:nth-child(4) { animation-delay: 1.55s; }
.col-lg-5:nth-child(2) .feature-item:nth-child(5) { animation-delay: 1.65s; }

.check-icon-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.check-icon-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

/* FOOTER */

.footer-section {
    position: relative;
    background: linear-gradient(135deg, #181852 0%, #067790 100%);
    border-top: 0.1rem solid #067790;
    margin-top: 5rem;
}

.footer-cta {
    border-bottom: 1px solid #067790;
}

.linkedin_logo{
    font-size: 20px !important;
    color: #fff !important;
}

.single-cta i {
    color: #067790;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 2px;
}

.cta-text span, .cta-text a {
    font-size: 15px;
}

.cta-text a {
    color: #fff;
}

.cta-text a:hover{
    color: #067790;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}


.copyright-area{
    background: #181852;
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #fff ;
}

.footer-arcys {
    max-width: 60%;
}

.footer-content div a {
    display: flex;
    justify-content: center;
}

/*LANGUE*/

.language-picker-container{
    position: fixed;
    right: 20px;
    bottom: 20%;
    display: flex;
    align-items: center;
    z-index: 10000;
}

.btn-language{
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: #181852;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}


.language-options{
    display: none;
    margin-right: 10px;
    gap: 10px;
}

.language-options.active{
    display: flex;
    animation: slideIn 0.3s ease-out;
}

.lang-choice{
    text-decoration: none;
    background: white;
    color: #333;
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    border: none;
    transition: all 0.2s
}

.lang-choice:hover{
    background: #f6f6f6;
    color: #067790;
}

@keyframes slideIn {
    from {opacity: 0; transform: translateX(20px); }
    to {opacity: 1; transform: translateX(0); }
}