/* ===================================
   CTA Section Styles
   =================================== */
.cta-section {
    background: url(../images/compatibility-risks-bg.webp) no-repeat top center #2A51E6;
    background-size: cover;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.cta-title {
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif !important;
    font-size: 40px;
    font-weight: 400;
    line-height: 65px;
    margin-bottom: 30px;
}

.cta-title strong {
    font-size: 48px;
    font-weight: 600;
}

.btn-cta {
    background: #FFFFFF;
    color: #2A51E6;
    border: none;
    border-radius: 6px;
    padding: 14px 60px;
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: max-content;
    height: 54px;
    margin-top: 30px;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(42, 81, 230, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta:hover {
    background: #0d6efd;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color:#fff;
}

/* ===================================
   Why You Need Section Styles
   =================================== */
.why-need-section {
    background: #FFFFFF;
    padding:60px 0 40px 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0px;
    font-family: 'Poppins', sans-serif !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #000000;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.5s ease;
}

.benefits-list li.visible {
    opacity: 1;
    transform: translateX(0);
}

.benefits-list .bullet {
    width: 13px;
    height: 13px;
    background: #2A51E6;
    border-radius: 50%;
    margin-right: 15px;
    margin-top: 7px;
    flex-shrink: 0;
    position: relative;
}

.benefits-list .bullet::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #2A51E6;
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.image-placeholder {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%232A51E6" opacity="0.1"/></svg>');
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
}

.slide-in-left.visible {
    animation: slideInLeftAnim 0.8s ease-out forwards;
}

@keyframes slideInLeftAnim {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   What's Included Section Styles
   =================================== */
.whats-included-section {
    background: #F8F9FF;
    padding:60px 0;
}

.subtitle {
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
    margin-top: 20px;
}

.audit-card {
    background: #FFFFFF;
    border: 1px solid #89A2FF;
    border-radius: 10px;
    padding: 30px 20px;
    min-height: 105px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.audit-card.visible {
    animation: slideUpCard 0.6s ease-out forwards;
}

@keyframes slideUpCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.audit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(42, 81, 230, 0.15);
    border-color: #2A51E6;
}

.audit-icon {
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.audit-card:hover .audit-icon {
    transform: scale(1.1) rotate(5deg);
}

.audit-icon svg {
    width: 60px;
    height: 60px;
}

.audit-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px !important;
    font-weight: 500;
    line-height: 24px;
    color: #000000;
    margin: 0;
    text-align: left;
}
.and-more-text {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a3a52;
    /* background: #1a3a52; */
    display: inline-block;
    padding: 12px 40px;
    border-radius: 8px;
    margin: 0;
    letter-spacing: 0.5px;
}
/* ===================================
   Responsive Styles for New Sections
   =================================== */
@media (max-width: 992px) {
    .cta-title {
        font-size: 32px;
        line-height: 50px;
    }
    
    .cta-title strong {
        font-size: 38px;
    }
    
    .btn-cta {
        padding: 15px 50px;
        font-size: 18px;
    }
    
    .benefits-list li {
        font-size: 18px;
        line-height: 26px;
    }
    
    .image-placeholder {
        min-height: 350px;
        margin-top: 30px;
    }
    
    .audit-card {
        padding: 25px 15px;
    }
    
    .audit-title {
        font-size: 18px;
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-title {
        font-size: 28px;
        line-height: 40px;
    }
    
    .cta-title strong {
        font-size: 32px;
    }
    
    .btn-cta {
        padding: 12px 40px;
        font-size: 16px;
    }
    
    .why-need-section,
    .whats-included-section {
        padding: 60px 10px;
    }
    
    .benefits-list li {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }
    
    .benefits-list .bullet {
        width: 10px;
        height: 10px;
        margin-top: 6px;
    }
    
    .image-placeholder {
        min-height: 300px;
    }
    
    .audit-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .audit-title {
        font-size: 16px;
        line-height: 20px;
        text-align: center;
    }
    
    .subtitle {
        font-size: 18px;
        line-height: 22px;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 24px;
        line-height: 34px;
    }
    
    .cta-title strong {
        font-size: 28px;
    }
    
    .btn-cta {
        padding: 10px 30px;
        font-size: 14px;
    }
    
    .benefits-list li {
        font-size: 14px;
        line-height: 22px;
    }
    
    .audit-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .audit-title {
        font-size: 14px;
        line-height: 18px;
    }
}

/* ===================================
   Our Approach Section Styles
   =================================== */
.approach-section {
    background: #FFFFFF;
    padding: 60px 0;
}

.approach-subtitle {
    font-family: 'Poppins', sans-serif !important;
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
    color: #000000;
}

/* Main Approach Cards */
.approach-main-card {
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.approach-main-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.approach-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.approach-icon img {
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
}

.approach-main-card:hover .approach-icon img {
    transform: scale(1.1) rotate(5deg);
}

.approach-main-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 24px !important;
    font-weight: 700;
    line-height: 120%;
    color: #2A51E6;
    margin-bottom: 15px;
}

.approach-main-text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px !important;
    font-weight: 400;
    line-height: 150%;
    color: #000000;
    margin: 0;
}

/* Steps Timeline */
.approach-steps-container {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.steps-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    max-width: 1282px;
    width: 100%;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step-item[data-step="2"],
.step-item[data-step="4"] {
    flex-direction: column-reverse;
}

.step-circle {
    width: 118px;
    height: 118px;
    border: 1px solid #2A51E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    position: relative;
    z-index: 2;
    animation: pulseCircle 2s ease-in-out infinite;
}

@keyframes pulseCircle {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(42, 81, 230, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(42, 81, 230, 0);
    }
}

.step-label {
    font-family: 'Poppins', sans-serif !important;
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
    color: #2A51E6;
    margin: 42px 0;
    position: absolute;
    z-index: 2;
}

.step-connector {
    position: absolute;
    width: 80px;
    height: 1px;
    background: #2A51E6;
}

.step-connector-top {
    top: -40px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

.step-connector-bottom {
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #2A51E6;
    top: 50%;
    left: 50%;
    z-index: 1;
}

.step-item[data-step="2"]::after,
.step-item[data-step="4"]::after {
    top: 50%;
}

/* Bottom Approach Cards */
.approach-bottom-card {
    text-align: center;
    padding: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.approach-bottom-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.approach-bottom-card:hover .approach-icon img {
    transform: scale(1.1) rotate(-5deg);
}

.approach-bottom-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 24px !important;
    font-weight: 700;
    line-height: 120%;
    color: #2A51E6;
    margin-bottom: 15px;
}

.approach-bottom-text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    color: #000000;
    margin: 0;
}

/* ===================================
   CTA Section 2 Styles
   =================================== */
.cta-section-2 {
    background: url(../images/eol-audit-bg.webp) no-repeat top center  #2A51E6;
    background-size: cover;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section-2::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.cta-title-2 {
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif !important;
    font-size: 40px;
    font-weight: 400;
    line-height: 65px;
}

.cta-title-2 strong {
    font-size: 48px;
    font-weight: 700;
}

.btn-cta-2 {
    background: #FFFFFF;
    color: #2A51E6;
    border: none;
    border-radius: 6px;
    padding: 14px 60px;
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: max-content;
    height: 54px;
    margin-top: 30px;
}

.btn-cta-2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(42, 81, 230, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta-2:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta-2:hover {
    background: #0d6efd;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* ===================================
   Testimonials Section Styles
   =================================== */
.testimonials-section {
    background: #2A51E6;
    padding: 60px 0;
}

.testimonials-section h2
{
    font-size: 54px;
}

.testimonials-carousel {
    position: relative;
}

.testimonial-item {
    padding: 0 15px;
}

.testimonial-card {
    background: transparent;
    padding: 20px 0;
    text-align: center;
}

.testimonial-text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px !important;
    font-weight: 400;
    line-height: 170%;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.testimonial-author {
    font-family: 'Roboto', sans-serif;
    font-size: 32px !important;
    font-weight: 700;
    line-height: 113.2%;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.testimonial-role {
    font-family: 'Roboto', sans-serif;
    font-size: 22px !important;
    font-weight: 400;
    line-height: 113.2%;
    color: #FFFFFF;
    margin: 0;
}

/* Owl Carousel Custom Dots */
.testimonials-carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonials-carousel .owl-dot {
    width: 55px;
    height: 11px;
    background: #B2C2FF !important;
    border-radius: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.testimonials-carousel .owl-dot.active {
    background: #FFFFFF !important;
}

.testimonials-carousel .owl-dot:hover {
    background: #FFFFFF !important;
    transform: scale(1.1);
}

.testimonials-carousel .owl-dot span {
    display: none;
}

/* Owl Carousel Custom Navigation */
.testimonials-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.testimonials-carousel .owl-nav button {
    pointer-events: all;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    outline: none;
    border: none;
}

.testimonials-carousel .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.4) !important;
    transform: scale(1.1);
}

.testimonials-carousel .owl-nav button span {
    font-size: 30px;
    color: #FFFFFF;
    line-height: 1;
}

.testimonials-carousel .owl-nav .owl-prev {
    margin-left: -60px;
    display:none;
}

.testimonials-carousel .owl-nav .owl-next {
    margin-right: -60px;
     display:none;
}

.owl-theme .owl-dots .owl-dot span {
    display: none;
}

.client-logos
{
    padding:70px 0px;
}

/* ===================================
   Responsive Styles for New Sections
   =================================== */
@media (max-width: 992px) {
    .approach-subtitle {
        font-size: 28px;
    }
    
    .approach-main-title,
    .approach-bottom-title {
        font-size: 22px;
    }
    
    .approach-main-text,
    .approach-bottom-text {
        font-size: 18px;
    }
    
    .steps-timeline {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .step-item:not(:last-child)::after {
        display: none;
    }
    
    .cta-title-2 {
        font-size: 32px;
        line-height: 50px;
    }
    
    .cta-title-2 strong {
        font-size: 38px;
    }
    
    .btn-cta-2 {
        padding: 15px 50px;
        font-size: 18px;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
    
    .testimonial-author {
        font-size: 28px;
    }
    
    .testimonial-role {
        font-size: 20px;
    }
    
    .testimonials-carousel .owl-nav .owl-prev {
        margin-left: -40px;
    }
    
    .testimonials-carousel .owl-nav .owl-next {
        margin-right: -40px;
    }
    
    .client-logos-title {
        font-size: 28px;
    }
    
    .client-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px 15px;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .footer-contact-text {
        font-size: 14px;
        line-height: 180%;
    }
    
    .future-proof-title {
        font-size: 32px;
    }
    
    .btn-future-proof {
        font-size: 16px;
        padding: 14px 28px;
    }
}

@media (max-width: 768px) {
    .approach-section {
        padding: 60px 0;
    }
    
    .approach-subtitle {
        font-size: 24px;
    }
    
    .approach-main-title,
    .approach-bottom-title {
        font-size: 20px;
    }
    
    .approach-main-text,
    .approach-bottom-text {
        font-size: 16px;
    }
    
    .approach-icon img {
        width: 60px;
        height: 60px;
    }
    
    .step-circle {
        width: 80px;
        height: 80px;
    }
    
    .step-label {
        font-size: 20px;
    }
    
    .cta-section-2 {
        padding: 40px 10px;
    }
    
    .cta-title-2 {
        font-size: 28px;
        line-height: 40px;
    }
    
    .cta-title-2 strong {
        font-size: 32px;
    }
    
    .btn-cta-2 {
        padding: 12px 40px;
        font-size: 16px;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .testimonial-author {
        font-size: 24px;
    }
    
    .testimonial-role {
        font-size: 18px;
    }
    
    .testimonials-carousel .owl-dot {
        width: 40px;
        height: 8px;
    }
    
    .testimonials-carousel .owl-nav button {
        width: 40px;
        height: 40px;
    }
    
    .testimonials-carousel .owl-nav .owl-prev {
        margin-left: -20px;
    }
    
    .testimonials-carousel .owl-nav .owl-next {
        margin-right: -20px;
    }
}

@media (max-width: 576px) {
    .approach-subtitle {
        font-size: 20px;
    }
    
    .approach-main-title,
    .approach-bottom-title {
        font-size: 18px;
    }
    
    .approach-main-text,
    .approach-bottom-text {
        font-size: 14px;
    }
    
    .approach-icon img {
        width: 50px;
        height: 50px;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
    }
    
    .step-label {
        font-size: 16px;
    }
    
    .cta-title-2 {
        font-size: 24px;
        line-height: 34px;
    }
    
    .cta-title-2 strong {
        font-size: 28px;
    }
    
    .btn-cta-2 {
        padding: 10px 30px;
        font-size: 14px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonial-author {
        font-size: 20px;
    }
    
    .testimonial-role {
        font-size: 16px;
    }
    
    .testimonials-carousel .owl-dot {
        width: 30px;
        height: 6px;
    }
    
    .testimonials-carousel .owl-dots {
        gap: 10px;
    }
    
    .testimonials-carousel .owl-nav button {
        width: 35px;
        height: 35px;
    }
    
    .testimonials-carousel .owl-nav button span {
        font-size: 24px;
    }
    
    .testimonials-carousel .owl-nav .owl-prev {
        margin-left: -10px;
    }
    
    .testimonials-carousel .owl-nav .owl-next {
        margin-right: -10px;
    }
    
    .client-logos-title {
        font-size: 22px;
    }
    
    .client-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }
    
    .logo-drupal,
    .logo-partners {
        font-size: 24px;
    }
    
    .footer-logo svg {
        width: 45px;
        height: 45px;
    }
    
    .future-proof-section {
        padding: 50px 0;
    }
    
    .future-proof-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .future-proof-description {
        font-size: 14px;
    }
    
    .btn-future-proof {
        font-size: 16px;
        padding: 14px 24px;
    }
    
    .future-proof-form .form-label {
        font-size: 14px;
    }
    
    .future-proof-input {
        font-size: 14px;
    }
}

/* ===================================
   Future-Proof Your Business Section Styles
   =================================== */
.future-proof-section {
    background: url(../images/future-proof-bg.webp) no-repeat top center #00082F;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.future-proof-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.future-proof-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.future-proof-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 48px;
    font-weight: 400;
    line-height: 134.688%;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.future-proof-title strong {
    font-weight: 700;
    color: #FFFFFF;
}

.future-proof-description {
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #FFFFFF;
    margin: 0;
    max-width: 500px;
}

.future-proof-form-container {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.future-proof-form-container.animate {
    opacity: 1;
    transform: translateX(0);
}

.future-proof-form {
    background: transparent;
}

.future-proof-form .form-label {
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 12px;
    display: block;
}

.future-proof-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    border-radius: 0;
    padding: 12px 0;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.future-proof-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.future-proof-input:focus {
    background: transparent;
    border-bottom: 2px solid #4169E1;
    box-shadow: none;
    color: #FFFFFF;
    outline: none;
}

.future-proof-input.is-invalid {
    border-bottom-color: #dc3545;
}

.future-proof-input.is-valid {
    border-bottom-color: #28a745;
}

.future-proof-form .invalid-feedback {
    font-family: 'Poppins', sans-serif !important;
    font-size: 12px;
    color: #ff6b6b;
    margin-top: 8px;
}
.help-block.with-errors{
    font-family: 'Poppins', sans-serif !important;
    font-size: 12px;
    color: #ff6b6b !important;
    margin-top: -22px;
}

.btn-future-proof {
    background: #4169E1;
    border: none;
    border-radius: 4px;
    padding: 16px 32px;
    font-family: 'Poppins', sans-serif !important;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 32px;
}

.btn-future-proof:hover {
    background: #3558CC;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(65, 105, 225, 0.3);
    color: #FFFFFF;
}

.btn-future-proof:active {
    transform: translateY(0);
}

.btn-future-proof .btn-icon {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

/* Form Focus Effects */
.future-proof-input:focus + .form-label {
    color: #4169E1;
}

/* ===================================
   Footer Section Styles
   =================================== */
.footer-section {
    background: #EBEFFF;
    padding: 30px 0 30px;
}

.footer-logo-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.footer-logo-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo svg {
    width: 61px;
    height: 61px;
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-drupal {
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    font-weight: 900;
    color: #2A51E6;
    line-height: 104.3%;
}

.logo-partners {
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    font-weight: 300;
    color: #2A51E6;
    line-height: 104.3%;
}

.footer-description {
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: #000000;
    margin: 0;
    max-width: 770px;
}

.footer-contact-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.footer-contact-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.footer-contact-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 6px;
}

.footer-contact-text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 227.7%;
    color: #000000;
    margin: 0;
}

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-divider {
    width: 1px;
    height: 26px;
    background: #A6B5F0;
}

.client-logos-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 48px;
    font-weight: 400;
    line-height: 134.688%;
    text-align: center;
    color: #000000;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.client-logos-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.client-logos-title strong {
    font-weight: 700;
    color: #2A51E6;
}

.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px 30px;
    align-items: center;
    justify-items: center;
}

.client-logo-item {
    width: 100%;
    max-width: 159px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.client-logo-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 100%;
    /* object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7; */
    transition: all 0.3s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.approach-bottom-steps
{
    margin-top: 40px;
}

.approach-main-steps
{
    margin-bottom: 40px;
}

@media (max-width:991px) {

    
.approach-bottom-steps
{
    margin-top: 0px;
}

.approach-main-steps
{
    margin-bottom: 0px;
}

.testimonials-section h2
{
    font-size: 40px;
}

.approach-steps-container
{
    display: none;
}

.future-proof-section {
    padding: 60px 0;
}

.future-proof-title {
    font-size: 36px;
}

.future-proof-description {
    font-size: 14px;
}

.footer-section {
    padding: 60px 0 40px;
}

.logo-drupal,
.logo-partners {
    font-size: 28px;
}

.footer-logo svg {
    width: 50px;
    height: 50px;
}

.client-logos-title {
    font-size: 36px;
}

.client-logos-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
}

.footer-contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-divider {
    display: none;
}

}
