.banner-title-s{
        background-image: linear-gradient(to right, rgba(90, 118, 247, 1), rgba(156, 107, 255, 1));
        -webkit-background-clip: text;
        color: transparent;
}
.logo-info{
        color: black;
        font-weight: 600;
        margin-left: 7px;
}
.choose-item{
        border-radius: 16px;
        border: 1px solid rgba(221, 220, 239, 1);
        padding: 28px 38px;
        display: flex;
        align-items: center;
        min-height: 200px;
}
.item-top{
        margin-top: 25px;
}
.choose-right-info{
        margin-left: 16px;
}
.choose-title{
        color: black;
        font-weight: 600;
        margin-bottom: 19px;
        font-size: 18px;
}
.choose-info{
        color: rgba(102, 102, 102, 1);
}
.Works-item{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
}
.Works-step{
        color: rgba(98, 43, 219, 1);
        font-weight: 600;
        margin-top: 20px;
        margin-bottom: 5px;
        font-size: 18px;
}
.Works-title{
        color: black;
        font-weight: 600;
        margin-bottom: 5px;
        font-size: 18px;
}
.Works-info{
        text-align: center;
        color: rgba(102, 102, 102, 1);
}
.Compliance-item{
        display: flex;
        align-items: center;
        margin-bottom: 60px;
}
.Compliance-info{
        margin-left: 10px;
}
.Compliance-title{
        font-weight: 600;
        margin-bottom: 15px;
}

/*========================================
   FOOTER AREA - COOL & ANIMATED
========================================*/
.footer-area {
    position: relative;
    background: url('../img/bottom-bg.png') no-repeat center center;
    background-size: cover;
    padding: 80px 0 30px;
    overflow: hidden;
}

.footer-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 20, 60, 0.85) 0%,
        rgba(60, 30, 120, 0.8) 50%,
        rgba(98, 43, 219, 0.75) 100%
    );
    z-index: 1;
}

.footer-area > .container {
    position: relative;
    z-index: 2;
}

/* Particle animations */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.footer-particles .particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    animation: floatParticle 15s infinite ease-in-out;
}

.footer-particles .p1 { width: 6px; height: 6px; left: 10%; top: 20%; animation-delay: 0s; }
.footer-particles .p2 { width: 4px; height: 4px; left: 25%; top: 60%; animation-delay: 2s; }
.footer-particles .p3 { width: 8px; height: 8px; left: 50%; top: 15%; animation-delay: 4s; }
.footer-particles .p4 { width: 5px; height: 5px; left: 70%; top: 70%; animation-delay: 1s; }
.footer-particles .p5 { width: 7px; height: 7px; left: 85%; top: 30%; animation-delay: 3s; }
.footer-particles .p6 { width: 3px; height: 3px; left: 40%; top: 85%; animation-delay: 5s; }
.footer-particles .p7 { width: 6px; height: 6px; left: 60%; top: 45%; animation-delay: 6s; }
.footer-particles .p8 { width: 4px; height: 4px; left: 90%; top: 80%; animation-delay: 7s; }

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(15px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) translateX(-10px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-40px) translateX(20px) scale(1.1);
        opacity: 0.7;
    }
}

/* Glowing effect on footer border */
.footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(156, 107, 255, 0.8),
        rgba(90, 118, 247, 0.8),
        rgba(156, 107, 255, 0.8),
        transparent
    );
    z-index: 3;
    animation: glowLine 3s ease-in-out infinite;
}

@keyframes glowLine {
    0%, 100% {
        opacity: 0.5;
        filter: blur(1px);
    }
    50% {
        opacity: 1;
        filter: blur(0px);
    }
}

/* Footer Widget Base */
.footer-widget {
    margin-bottom: 40px;
}

/* Footer Brand */
.footer-brand {
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(156, 107, 255, 0.6));
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(156, 107, 255, 0.6));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(156, 107, 255, 0.9));
    }
}

.footer-logo-text {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-left: 10px;
    background: linear-gradient(135deg, #ffffff, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.footer-brand:hover .footer-desc {
    color: rgba(255, 255, 255, 1);
}

.footer-glow-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgba(156, 107, 255, 1), rgba(90, 118, 247, 1));
    border-radius: 3px;
    animation: glowLine 2s ease-in-out infinite;
}

/* Footer Title */
.footer-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, rgba(156, 107, 255, 1), rgba(90, 118, 247, 1));
    border-radius: 3px;
    transition: width 0.5s ease;
}

.footer-widget:hover .footer-title::after {
    width: 100%;
}

/* Quick Links */
.footer-link-list {
    list-style: none;
    padding: 0;
}

.footer-link-list li {
    margin-bottom: 15px;
    overflow: hidden;
}

.footer-link-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    position: relative;
    padding-left: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.footer-link-list li a::before {
    content: '→';
    position: absolute;
    left: -25px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
    color: rgba(156, 107, 255, 1);
}

.footer-link-list li a:hover {
    color: #ffffff;
    padding-left: 25px;
    text-shadow: 0 0 15px rgba(156, 107, 255, 0.8);
    transform: translateX(5px);
}

.footer-link-list li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(156, 107, 255, 0.5);
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(156, 107, 255, 0.3);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(156, 107, 255, 0.3), rgba(90, 118, 247, 0.3));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, rgba(156, 107, 255, 0.6), rgba(90, 118, 247, 0.6));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(156, 107, 255, 0.6);
}

.contact-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.contact-info {
    flex: 1;
}

.contact-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-label {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    position: relative;
}

.footer-bottom-line {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.footer-bottom-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(156, 107, 255, 0.8),
        transparent
    );
    animation: lineSweep 3s infinite;
}

@keyframes lineSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    transition: color 0.3s ease;
}

.footer-bottom:hover p {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-area {
        padding: 60px 0 20px;
    }

    .footer-logo-text {
        font-size: 20px;
    }

    .footer-title {
        font-size: 18px;
    }

    .contact-item {
        padding: 12px;
    }

    .contact-icon {
        width: 38px;
        height: 38px;
    }

    .contact-icon img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 576px) {
    .footer-area {
        padding: 50px 0 20px;
    }
}
.about-page-title{
    margin-bottom: 30px;
}
.about-page-p{
    color: rgba(51, 51, 51, 1);
    line-height: 30px;
}
.about-page-p-bottom{
    margin-bottom: 20px;
}
.ww-item{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(243, 238, 253, 1);
    border: 1px solid rgba(221, 220, 239, 1);
    border-radius: 16px;
    padding: 34px 16px;
}
.ww-item-1{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    border: 1px solid rgba(221, 220, 239, 1);
    border-radius: 16px;
    padding: 34px 16px;
}
.ww-title{
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 10px;
}
.ww-info{
    color: rgba(102, 102, 102, 1);
    font-size: 13px;
    text-align: center;
}
.ww-info-1{
    color: black;
    font-weight: 600;
    text-align: center;
}
.color-span{
    color: rgba(98, 43, 219, 1);
}
.about-page-title-2{
    margin-bottom: 20px;
}
.about-page-title-2-top{
    margin-top: 70px;
}

/*========================================
   FAQ ACCORDION - COOL & ANIMATED
========================================*/
.faq-accordion-area {
    position: relative;
    padding: 100px 0 80px;
  /*  background: linear-gradient(180deg, rgba(243, 238, 253, 1) 0%, rgba(230, 220, 250, 0.6) 100%);
  */  overflow: hidden;
}

/* Decorative background orbs */
.faq-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.faq-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s infinite ease-in-out;
}

.faq-orb.orb-1 {
    width: 400px;
    height: 400px;
 /*   background: radial-gradient(circle, rgba(156, 107, 255, 0.5), transparent);*/
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.faq-orb.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(90, 118, 247, 0.4), transparent);
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

.faq-orb.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 150, 255, 0.35), transparent);
    top: 40%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -40px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(40px, 30px) scale(1.05);
    }
}

.faq-accordion-area > .container {
    position: relative;
    z-index: 2;
}

/* Section Title */
.faq-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.faq-section-title h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-section-title p {
    color: rgba(102, 102, 102, 1);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Accordion Container */
.faq-accordion {
  /*  max-width: 900px;*/
    margin: 0 auto;
}

/* FAQ Item */
.faq-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(221, 220, 239, 1);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(98, 43, 219, 0.05);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(156, 107, 255, 0), rgba(156, 107, 255, 0.5), rgba(90, 118, 247, 0.5), rgba(156, 107, 255, 0));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(98, 43, 219, 0.15);
    border-color: rgba(156, 107, 255, 0.3);
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 245, 255, 1));
    border-color: rgba(156, 107, 255, 0.4);
    box-shadow: 0 15px 50px rgba(98, 43, 219, 0.2);
    transform: translateY(-5px);
}

.faq-item.active::before {
    transform: scaleX(1);
}

/* Question Row */
.faq-question {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.faq-question:hover {
    background: linear-gradient(90deg, rgba(243, 238, 253, 0.5), transparent);
}

/* Icon Wrapper */
.faq-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-icon-wrapper.q-icon {
    background: linear-gradient(135deg, rgba(156, 107, 255, 0.15), rgba(90, 118, 247, 0.15));
    border: 2px solid rgba(156, 107, 255, 0.2);
}

.faq-icon-wrapper.a-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(76, 175, 130, 0.15), rgba(66, 165, 150, 0.15));
    border: 2px solid rgba(76, 175, 130, 0.3);
}

.faq-icon-wrapper .faq-icon {
    width: 22px;
    height: 22px;
    transition: all 0.5s ease;
}

.faq-item.active .faq-icon-wrapper.q-icon {
    background: linear-gradient(135deg, rgba(156, 107, 255, 0.3), rgba(90, 118, 247, 0.3));
    border-color: rgba(156, 107, 255, 0.5);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(156, 107, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(156, 107, 255, 0);
    }
}

/* Question Text */
.faq-question-text {
    flex: 1;
    margin: 0 20px;
    font-size: 18px;
    font-weight: 600;
    color: #222222;
    transition: all 0.4s ease;
}

.faq-item.active .faq-question-text {
    color: rgba(98, 43, 219, 1);
    text-shadow: 0 0 20px rgba(156, 107, 255, 0.3);
}

/* Toggle Icon */
.faq-toggle-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(156, 107, 255, 0.1), rgba(90, 118, 247, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.faq-toggle-icon img {
    width: 14px;
    height: 14px;
    transition: all 0.4s ease;
    position: absolute;
}

.faq-toggle-icon .icon-minus {
    opacity: 0;
    transform: scale(0) rotate(-90deg);
}

.faq-toggle-icon .icon-plus {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.faq-item.active .faq-toggle-icon {
    background: linear-gradient(135deg, rgba(156, 107, 255, 0.6), rgba(90, 118, 247, 0.6));
    transform: rotate(180deg);
    box-shadow: 0 4px 15px rgba(156, 107, 255, 0.4);
}

.faq-item.active .faq-toggle-icon .icon-minus {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.faq-item.active .faq-toggle-icon .icon-plus {
    opacity: 0;
    transform: scale(0) rotate(90deg);
}

.faq-question:hover .faq-toggle-icon {
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(156, 107, 255, 0.3);
}

/* Answer Section */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.6s ease;
    background: linear-gradient(180deg, transparent, rgba(243, 238, 253, 0.4));
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    display: flex;
    align-items: flex-start;
    padding: 0 30px 25px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease;
}

.faq-item.active .faq-answer-inner {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.faq-answer-inner p {
    flex: 1;
    color: rgba(80, 80, 80, 1);
    line-height: 1.9;
    font-size: 15px;
    margin: 5px 0 0 15px;
}

/* Shine effect on active item */
.faq-item.active .faq-question::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shine 2s infinite;
    pointer-events: none;
}

@keyframes shine {
    0% {
        right: -100%;
    }
    100% {
        right: 100%;
    }
}

/* Stagger animation for items */
.faq-item:nth-child(1) { animation-delay: 0s; }
.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.3s; }
.faq-item:nth-child(5) { animation-delay: 0.4s; }
.faq-item:nth-child(6) { animation-delay: 0.5s; }
.faq-item:nth-child(7) { animation-delay: 0.6s; }
.faq-item:nth-child(8) { animation-delay: 0.7s; }
.faq-item:nth-child(9) { animation-delay: 0.8s; }
.faq-item:nth-child(10) { animation-delay: 0.9s; }

/* Custom scrollbar for FAQ */
.faq-accordion::-webkit-scrollbar {
    width: 6px;
}

.faq-accordion::-webkit-scrollbar-track {
    background: rgba(243, 238, 253, 0.5);
    border-radius: 3px;
}

.faq-accordion::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(156, 107, 255, 0.6), rgba(90, 118, 247, 0.6));
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-accordion-area {
        padding: 70px 0 50px;
    }

    .faq-section-title h2 {
        font-size: 32px;
    }

    .faq-question {
        padding: 20px 20px;
    }

    .faq-question-text {
        font-size: 16px;
        margin: 0 15px;
    }

    .faq-icon-wrapper {
        width: 35px;
        height: 35px;
    }

    .faq-icon-wrapper .faq-icon {
        width: 18px;
        height: 18px;
    }

    .faq-toggle-icon {
        width: 32px;
        height: 32px;
    }

    .faq-answer-inner {
        padding: 0 20px 20px;
    }
}

@media (max-width: 576px) {
    .faq-section-title h2 {
        font-size: 26px;
    }

    .faq-section-title p {
        font-size: 14px;
    }

    .faq-question-text {
        font-size: 15px;
    }

    .faq-answer-inner p {
        font-size: 14px;
    }
}
.contact-list{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    white-space: nowrap;
}
.contact-text{
    margin-left: 5px;
    color: black;
    white-space: nowrap;
    overflow: visible;
}
.need-title{
    color: black;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 15px;
}
.need-step-title{
    color: rgba(24, 35, 87, 1);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}
.need-step-info{
    color: rgba(102, 102, 102, 1);
    margin-bottom: 50px;
}
.need-step-flex{
    display: flex;
    align-items: center;
}
.need-step-img img{
    width: 90%;
}
.need-step-img{
    margin-top: -50px;
    margin-right: 30px;
}

/*========================================
   PRIVACY POLICY - COOL & ANIMATED
========================================*/

/* Banner Area */
.privacy-banner-area {
    position: relative;
    min-height: 520px;
    padding: 100px 0 0;
    background: linear-gradient(135deg, rgba(243, 238, 253, 1) 0%, rgba(220, 210, 250, 1) 50%, rgba(200, 190, 245, 1) 100%);
    overflow: hidden;
}

/* Background Orbs */
.privacy-bg-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.privacy-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: orbFloat 18s infinite ease-in-out;
}

.privacy-orb.o1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(156, 107, 255, 0.5), transparent);
    top: -100px;
    left: -80px;
    animation-delay: 0s;
}

.privacy-orb.o2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(90, 118, 247, 0.4), transparent);
    top: 50%;
    right: -60px;
    animation-delay: 4s;
}

.privacy-orb.o3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200, 150, 255, 0.4), transparent);
    bottom: 80px;
    left: 30%;
    animation-delay: 8s;
}

.privacy-orb.o4 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(130, 170, 255, 0.35), transparent);
    top: 20%;
    right: 25%;
    animation-delay: 12s;
}

/* Grid Overlay */
.privacy-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

/* Particles */
.privacy-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pparticle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    animation: particleFloat 12s infinite ease-in-out;
}

.pparticle.pp1 { width: 4px; height: 4px; left: 15%; top: 25%; animation-delay: 0s; }
.pparticle.pp2 { width: 3px; height: 3px; left: 30%; top: 60%; animation-delay: 1.5s; }
.pparticle.pp3 { width: 6px; height: 6px; left: 50%; top: 20%; animation-delay: 3s; }
.pparticle.pp4 { width: 3px; height: 3px; left: 65%; top: 75%; animation-delay: 4.5s; }
.pparticle.pp5 { width: 5px; height: 5px; left: 80%; top: 35%; animation-delay: 6s; }
.pparticle.pp6 { width: 3px; height: 3px; left: 25%; top: 85%; animation-delay: 7.5s; }
.pparticle.pp7 { width: 4px; height: 4px; left: 55%; top: 50%; animation-delay: 2s; }
.pparticle.pp8 { width: 3px; height: 3px; left: 90%; top: 60%; animation-delay: 5s; }
.pparticle.pp9 { width: 5px; height: 5px; left: 40%; top: 15%; animation-delay: 8s; }
.pparticle.pp10 { width: 3px; height: 3px; left: 75%; top: 80%; animation-delay: 9s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-25px) translateX(10px);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-8px);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-35px) translateX(15px);
        opacity: 0.9;
    }
}

/* Banner Content */
.privacy-banner-area > .container {
    position: relative;
    z-index: 2;
}

.privacy-banner-content {
    text-align: center;
    padding: 40px 0 100px;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    color: rgba(98, 43, 219, 1);
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(98, 43, 219, 0.15);
    animation: badgeGlow 3s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(156, 107, 255, 1), rgba(90, 118, 247, 1));
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(156, 107, 255, 0.6);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 6px rgba(156, 107, 255, 0);
    }
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(98, 43, 219, 0.15);
    }
    50% {
        box-shadow: 0 4px 30px rgba(98, 43, 219, 0.3);
    }
}

.privacy-banner-title {
    font-size: 60px;
    font-weight: 800;
    color: #222222;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.title-highlight {
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1), rgba(156, 107, 255, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.privacy-banner-subtitle {
    font-size: 18px;
    color: rgba(80, 80, 80, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Stats */
.privacy-banner-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: rgba(102, 102, 102, 1);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(156, 107, 255, 0.4), transparent);
}

/* Wave */
.privacy-banner-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.privacy-banner-wave svg {
    width: 100%;
    height: 120px;
}

/* Content Area */
.privacy-content-area {
    position: relative;
    padding: 80px 0 100px;
    background: rgba(255, 255, 255, 1);
    overflow: hidden;
}

/* Decorative Elements */
.privacy-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.deco-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: blobMorph 20s infinite ease-in-out;
}

.deco-blob.blob-1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(243, 238, 253, 1), transparent);
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.deco-blob.blob-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(220, 210, 250, 1), transparent);
    bottom: 20%;
    right: -80px;
    animation-delay: 5s;
}

@keyframes blobMorph {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 50%;
    }
    33% {
        transform: translate(30px, -20px) scale(1.1) rotate(120deg);
        border-radius: 40% 60% 55% 45%;
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9) rotate(240deg);
        border-radius: 60% 40% 45% 55%;
    }
}

.deco-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    animation: shapeSpin 30s linear infinite;
}

.deco-shape.shape-1 {
    top: 30%;
    right: 5%;
    animation-duration: 40s;
}

.deco-shape.shape-2 {
    bottom: 15%;
    left: 3%;
    animation-duration: 50s;
    animation-direction: reverse;
}

.deco-shape svg {
    width: 100%;
    height: 100%;
}

@keyframes shapeSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.privacy-content-area > .container {
    position: relative;
    z-index: 2;
}

/* Intro Card */
.privacy-intro-card {
    background: linear-gradient(135deg, rgba(243, 238, 253, 1), rgba(250, 248, 255, 1));
    border: 1px solid rgba(221, 220, 239, 1);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(98, 43, 219, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.privacy-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(156, 107, 255, 1), rgba(90, 118, 247, 1), rgba(156, 107, 255, 1));
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.privacy-intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(98, 43, 219, 0.15);
}

.intro-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    animation: iconFloat 3s ease-in-out infinite;
}

.intro-icon svg {
    width: 32px;
    height: 32px;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.intro-text {
    color: rgba(51, 51, 51, 1);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.intro-text p {
    margin: 0 0 12px;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* Privacy Sections */
.privacy-sections {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 60px;
    position: relative;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(243, 238, 253, 1);
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgba(156, 107, 255, 1), rgba(90, 118, 247, 1));
    animation: lineExpand 2s ease-in-out infinite alternate;
}

@keyframes lineExpand {
    from { width: 40px; }
    to { width: 120px; }
}

.section-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(98, 43, 219, 0.3);
    animation: numberPulse 3s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(98, 43, 219, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(98, 43, 219, 0.4);
    }
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #222222;
    margin: 0;
}

/* Section Content */
.section-content {
    padding-left: 10px;
}

.content-block {
    display: flex;
    gap: 20px;
    padding: 25px 30px;
    background: rgba(243, 238, 253, 0.4);
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(221, 220, 239, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(156, 107, 255, 1), rgba(90, 118, 247, 1));
    border-radius: 4px 0 0 4px;
    transition: width 0.4s ease;
}

.content-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.content-block:hover {
    background: rgba(243, 238, 253, 0.8);
    border-color: rgba(156, 107, 255, 0.3);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(98, 43, 219, 0.1);
}

.content-block:hover::before {
    width: 6px;
}

.content-block:hover::after {
    transform: translateX(100%);
}

.block-marker {
    font-size: 20px;
    font-weight: 700;
    color: rgba(98, 43, 219, 1);
    width: 32px;
    flex-shrink: 0;
    padding-top: 3px;
    transition: all 0.3s ease;
}

.content-block:hover .block-marker {
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(156, 107, 255, 0.5);
}

.block-body {
    flex: 1;
}

.block-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 8px;
    transition: color 0.3s ease;
}

.content-block:hover .block-body h3 {
    color: rgba(98, 43, 219, 1);
}

.block-body p {
    color: rgba(80, 80, 80, 0.9);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 10px;
}

.block-body p:last-child {
    margin-bottom: 0;
}

.block-body strong {
    color: rgba(98, 43, 219, 1);
    font-weight: 700;
}

.block-body code {
    display: inline-block;
    padding: 2px 10px;
    background: linear-gradient(135deg, rgba(243, 238, 253, 1), rgba(220, 210, 250, 1));
    border: 1px solid rgba(156, 107, 255, 0.2);
    border-radius: 6px;
    color: rgba(98, 43, 219, 1);
    font-size: 13px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    margin: 0 2px;
}

/* CTA Card */
.privacy-cta-card {
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1));
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    box-shadow: 0 20px 60px rgba(98, 43, 219, 0.3);
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: ctaGlow 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaGlow {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    color: white;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: white;
    color: rgba(98, 43, 219, 1);
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: rgba(90, 118, 247, 1);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-banner-area {
        min-height: auto;
        padding: 70px 0 0;
    }

    .privacy-banner-title {
        font-size: 40px;
    }

    .privacy-banner-subtitle {
        font-size: 16px;
    }

    .privacy-banner-stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 28px;
    }

    .privacy-content-area {
        padding: 60px 0 70px;
    }

    .privacy-intro-card {
        flex-direction: column;
        padding: 30px 25px;
    }

    .intro-icon {
        width: 50px;
        height: 50px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .content-block {
        padding: 20px;
    }

    .block-body h3 {
        font-size: 16px;
    }

    .cta-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .privacy-banner-title {
        font-size: 32px;
    }

    .privacy-banner-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .privacy-intro-card {
        padding: 25px 20px;
    }

    .section-header {
        gap: 15px;
    }

    .section-number {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .content-block {
        flex-direction: column;
        gap: 10px;
        padding: 18px;
    }

    .privacy-cta-card {
        padding: 40px 25px;
    }
}

/*========================================
   GLOBAL COOL ANIMATIONS
========================================*/

/* ========== BANNER AREA ANIMATIONS ========== */
.banner-area {
    position: relative;
}

.banner-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(243, 238, 253, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(243, 238, 253, 0.4) 100%
    );
    z-index: 1;
    animation: bannerOverlayPulse 6s ease-in-out infinite;
}

@keyframes bannerOverlayPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.banner-area::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(156, 107, 255, 0.25), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(90, 118, 247, 0.25), transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(200, 150, 255, 0.15), transparent 50%);
    z-index: 1;
    animation: bannerGlowShift 8s ease-in-out infinite;
}

@keyframes bannerGlowShift {
    0%, 100% {
        transform: scale(1) translate(0, 0);
    }
    33% {
        transform: scale(1.1) translate(-20px, 10px);
    }
    66% {
        transform: scale(1.05) translate(15px, -15px);
    }
}

/* Banner Particles */
.banner-area > .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,0.8) 50%, transparent 51%),
        radial-gradient(3px 3px at 25% 60%, rgba(255,255,255,0.7) 50%, transparent 51%),
        radial-gradient(2px 2px at 45% 30%, rgba(255,255,255,0.6) 50%, transparent 51%),
        radial-gradient(4px 4px at 65% 75%, rgba(255,255,255,0.8) 50%, transparent 51%),
        radial-gradient(2px 2px at 85% 25%, rgba(255,255,255,0.7) 50%, transparent 51%),
        radial-gradient(3px 3px at 90% 85%, rgba(255,255,255,0.6) 50%, transparent 51%);
    animation: bannerParticlesDrift 12s infinite ease-in-out;
}

@keyframes bannerParticlesDrift {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.8;
    }
    50% {
        transform: translate(20px, -30px);
        opacity: 1;
    }
}

/* Banner Content Animations */
.banner-content {
    position: relative;
    z-index: 3;
}

.banner-content h1 {
    position: relative;
    display: inline-block;
}

.banner-content h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1));
    border-radius: 4px;
    animation: bannerUnderline 3s ease-in-out infinite;
}

@keyframes bannerUnderline {
    0%, 100% {
        width: 0;
        left: 0;
    }
    50% {
        width: 100%;
        left: 0;
    }
}

/* Banner Image Float */
.banner-area .col-lg-6 img,
.about-area .about-img img {
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.banner-area .col-lg-6 img:hover,
.about-area .about-img img:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 20px 40px rgba(98, 43, 219, 0.3));
}

/* ========== NAVBAR AREA ANIMATIONS ========== */
.nav-area {
    position: relative;
    z-index: 100;
    transition: all 0.5s ease;
}

.nav-area::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(156, 107, 255, 0.5) 20%,
        rgba(90, 118, 247, 0.5) 50%,
        rgba(156, 107, 255, 0.5) 80%,
        transparent 100%
    );
    z-index: 101;
    transform: scaleX(0);
    transition: transform 0.6s ease;
    opacity: 0;
}

.nav-area:hover::before,
.nav-area:has(.is-sticky)::before {
    transform: scaleX(1);
    opacity: 1;
    animation: navLineGlow 3s ease-in-out infinite;
}

@keyframes navLineGlow {
    0%, 100% {
        filter: blur(1px);
    }
    50% {
        filter: blur(0px);
    }
}

.navbar-area {
    position: relative;
    transition: all 0.4s ease;
}

.navbar-area::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.navbar-area:hover::before {
    transform: translateX(100%);
}

.navbar-area.is-sticky {
    box-shadow: 0 10px 40px rgba(98, 43, 219, 0.15) !important;
    animation: stickyPulse 0.5s ease-out;
}

@keyframes stickyPulse {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Logo Animation */
.navbar-brand {
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand img {
    transition: all 0.5s ease;
}

.navbar-brand:hover img {
    filter: drop-shadow(0 0 15px rgba(156, 107, 255, 0.7));
    animation: logoSpinShake 0.6s ease;
}

@keyframes logoSpinShake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    50% { transform: rotate(6deg); }
    75% { transform: rotate(-3deg); }
    100% { transform: rotate(0deg); }
}

.logo-info {
    transition: all 0.4s ease;
    position: relative;
}

.navbar-brand:hover .logo-info {
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(156, 107, 255, 0.3);
}

/* Nav Link Enhanced Animations */
.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item {
    position: relative;
    transition: all 0.4s ease;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 40px);
    height: 2px;
    background: linear-gradient(90deg, rgba(156, 107, 255, 1), rgba(90, 118, 247, 1));
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item:hover::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
    box-shadow: 0 0 10px rgba(156, 107, 255, 0.6);
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item a {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: inline-block;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item:hover a {
    color: rgba(98, 43, 219, 1) !important;
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(156, 107, 255, 0.4);
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item a.active {
    position: relative;
}

.nav-area .navbar-area .main-nav nav .navbar-nav .nav-item a.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, rgba(156, 107, 255, 1), rgba(90, 118, 247, 1));
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(156, 107, 255, 0.8),
                0 0 30px rgba(156, 107, 255, 0.4);
    animation: activeDotPulse 2s ease-in-out infinite;
}

@keyframes activeDotPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 15px rgba(156, 107, 255, 0.8),
                    0 0 30px rgba(156, 107, 255, 0.4);
    }
    50% {
        transform: translateX(-50%) scale(1.3);
        box-shadow: 0 0 20px rgba(156, 107, 255, 1),
                    0 0 40px rgba(156, 107, 255, 0.6);
    }
}

/* ========== SHOW-IMG IMAGE ANIMATIONS ========== */
.show-img {
    position: relative;
    display: inline-block;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border-radius: 16px;
}

.show-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    z-index: 2;
    transition: all 0.5s ease;
    pointer-events: none;
}

.show-img:hover::before {
    border-color: rgba(156, 107, 255, 0.6);
    box-shadow: inset 0 0 20px rgba(156, 107, 255, 0.1);
    animation: imgBorderPulse 2s ease-in-out infinite;
}

@keyframes imgBorderPulse {
    0%, 100% {
        border-color: rgba(156, 107, 255, 0.6);
    }
    50% {
        border-color: rgba(90, 118, 247, 0.8);
        box-shadow: inset 0 0 30px rgba(90, 118, 247, 0.2);
    }
}

.show-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 100%
    );
    z-index: 3;
    transition: left 0.8s ease;
    pointer-events: none;
}

.show-img:hover::after {
    left: 150%;
}

.show-img img {
    display: block;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: saturate(1);
}

.show-img:hover img {
    transform: scale(1.12);
    filter: saturate(1.3) brightness(1.05) drop-shadow(0 15px 30px rgba(98, 43, 219, 0.35));
}

.show-img {
    animation: imgFloat 5s ease-in-out infinite;
}

@keyframes imgFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-img.show-img {
    animation: imgRotateFloat 6s ease-in-out infinite;
}

@keyframes imgRotateFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-12px) rotate(1deg);
    }
    50% {
        transform: translateY(-6px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

/* ========== SHOW ITEM HOVER & BORDER ANIMATIONS ========== */
.show-item,
.show-item1,
.show-item-1 {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

/* Animated Border Lines */
.show-item::before,
.show-item1::before,
.show-item-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(
        90deg,
        rgba(156, 107, 255, 0),
        rgba(156, 107, 255, 0.8),
        rgba(90, 118, 247, 0.8),
        rgba(156, 107, 255, 0)
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.show-item::after,
.show-item1::after,
.show-item-1::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(156, 107, 255, 0.15) 25%,
        transparent 50%,
        rgba(90, 118, 247, 0.15) 75%,
        transparent 100%
    );
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease, transform 2s linear;
    pointer-events: none;
}

.show-item:hover,
.show-item1:hover,
.show-item-1:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(98, 43, 219, 0.25) !important;
    background-color: rgba(255, 255, 255, 1) !important;
    z-index: 10;
}

.show-item:hover::before,
.show-item1:hover::before,
.show-item-1:hover::before {
    opacity: 1;
    animation: borderGradientSlide 3s linear infinite;
}

@keyframes borderGradientSlide {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.show-item:hover::after,
.show-item1:hover::after,
.show-item-1:hover::after {
    opacity: 1;
    animation: conicRotate 2s linear infinite;
}

@keyframes conicRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Inner Content Protection */
.show-item > *,
.show-item1 > *,
.show-item-1 > * {
    position: relative;
    z-index: 2;
}

/* ww-item hover enhancements */
.show-item .ww-img,
.show-item1 .choose-img,
.show-item-1 .ww-img {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.show-item:hover .ww-img,
.show-item1:hover .choose-img,
.show-item-1:hover .ww-img {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 10px 20px rgba(98, 43, 219, 0.3));
}

.show-item .ww-title,
.show-item1 .choose-title,
.show-item-1 .ww-title {
    transition: all 0.4s ease;
}

.show-item:hover .ww-title,
.show-item1:hover .choose-title,
.show-item-1:hover .ww-title {
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

.show-item .ww-info,
.show-item1 .choose-info,
.show-item-1 .ww-info {
    transition: all 0.4s ease;
}

.show-item:hover .ww-info,
.show-item1:hover .choose-info,
.show-item-1:hover .ww-info {
    color: rgba(80, 80, 80, 1) !important;
    font-weight: 500;
}

/* ww-item Image Pop Animation */
.choose-img img,
.ww-img img {
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.show-item:hover .ww-img img,
.show-item1:hover .choose-img img,
.show-item-1:hover .ww-img img {
    animation: imgPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes imgPop {
    0% { transform: scale(1); }
    30% { transform: scale(0.9); }
    60% { transform: scale(1.15); }
    100% { transform: scale(1.1); }
}

/* Section Title Extra Animation */
.section-title {
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, rgba(156, 107, 255, 0), rgba(156, 107, 255, 1), rgba(90, 118, 247, 1), rgba(156, 107, 255, 0));
    border-radius: 3px;
    animation: sectionLinePulse 3s ease-in-out infinite;
}

@keyframes sectionLinePulse {
    0%, 100% {
        width: 60px;
        opacity: 0.6;
    }
    50% {
        width: 100px;
        opacity: 1;
    }
}

.section-title h2 {
    position: relative;
    display: inline-block;
    transition: all 0.5s ease;
}

.section-title h2:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Works-item Animation */
.Works-item {
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 20px 15px;
    border-radius: 16px;
    background: transparent;
}

.Works-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 50px rgba(98, 43, 219, 0.15);
}

.Works-item .Works-img {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.Works-item:hover .Works-img {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 10px 25px rgba(98, 43, 219, 0.3));
}

.Works-item .Works-step {
    transition: all 0.4s ease;
}

.Works-item:hover .Works-step {
    font-size: 20px;
    text-shadow: 0 0 15px rgba(156, 107, 255, 0.5);
}

.Works-item .Works-title {
    transition: all 0.4s ease;
}

.Works-item:hover .Works-title {
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

/* Compliance-item Animation */
.Compliance-item {
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 20px;
    border-radius: 16px;
}

.Compliance-item:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 40px rgba(98, 43, 219, 0.15);
    transform: translateX(8px);
}

.Compliance-item .Compliance-img {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.Compliance-item:hover .Compliance-img {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 8px 20px rgba(98, 43, 219, 0.3));
}

.Compliance-item:hover .Compliance-title {
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Go Top Enhanced */
.go-top {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 8px 25px rgba(98, 43, 219, 0.3);
}

.go-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(98, 43, 219, 0.5);
    animation: goTopGlow 0.6s ease-in-out infinite alternate;
}

@keyframes goTopGlow {
    from {
        box-shadow: 0 15px 40px rgba(98, 43, 219, 0.4);
    }
    to {
        box-shadow: 0 15px 40px rgba(98, 43, 219, 0.7), 0 0 30px rgba(156, 107, 255, 0.6);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .show-item:hover,
    .show-item1:hover,
    .show-item-1:hover {
        transform: translateY(-4px) scale(1.01);
    }
    .show-img:hover img {
        transform: scale(1.06);
    }
    .banner-content h1::after {
        display: none;
    }
}

/*========================================
   MAIN TEXT SHOW - PRIVACY POLICY
   COOL STYLES & ANIMATIONS
========================================*/

/* ========== SECTION LAYOUT ========== */
.main-text-show {
    position: relative;
    padding: 100px 0 120px;
    background: linear-gradient(180deg, rgba(243, 238, 253, 1) 0%, rgba(255, 255, 255, 1) 30%, rgba(248, 245, 255, 1) 100%);
    overflow: hidden;
}

.mts-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ========== BACKGROUND ORBS ========== */
.mts-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: mtsOrbFloat 15s infinite ease-in-out;
}

.mts-orb-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(156, 107, 255, 0.6), transparent);
    top: 5%;
    left: -100px;
}

.mts-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(90, 118, 247, 0.5), transparent);
    top: 40%;
    right: -80px;
    animation-delay: 3s;
}

.mts-orb-3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(200, 150, 255, 0.5), transparent);
    bottom: 10%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes mtsOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -50px) scale(1.15); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(50px, 40px) scale(1.1); }
}

/* ========== GRID OVERLAY ========== */
.mts-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(156, 107, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(156, 107, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ========== PARTICLES ========== */
.mts-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mts-p {
    position: absolute;
    border-radius: 50%;
    background: rgba(156, 107, 255, 0.4);
    box-shadow: 0 0 10px rgba(156, 107, 255, 0.3);
    animation: mtsParticleDrift 10s infinite ease-in-out;
}

.mts-p1 { width: 5px; height: 5px; left: 10%; top: 15%; animation-delay: 0s; }
.mts-p2 { width: 4px; height: 4px; left: 25%; top: 50%; animation-delay: 1.2s; }
.mts-p3 { width: 6px; height: 6px; left: 45%; top: 20%; animation-delay: 2.4s; }
.mts-p4 { width: 3px; height: 3px; left: 60%; top: 70%; animation-delay: 3.6s; }
.mts-p5 { width: 5px; height: 5px; left: 80%; top: 30%; animation-delay: 4.8s; }
.mts-p6 { width: 4px; height: 4px; left: 15%; top: 80%; animation-delay: 6s; }
.mts-p7 { width: 6px; height: 6px; left: 70%; top: 60%; animation-delay: 7.2s; }
.mts-p8 { width: 3px; height: 3px; left: 90%; top: 45%; animation-delay: 8.4s; }

@keyframes mtsParticleDrift {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    25% { transform: translate(20px, -30px) scale(1.3); opacity: 0.8; }
    50% { transform: translate(-15px, 20px) scale(0.8); opacity: 0.5; }
    75% { transform: translate(25px, 15px) scale(1.1); opacity: 0.9; }
}

/* ========== CONTAINER ========== */
.mts-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

/* ========== HERO TITLE ========== */
.mts-hero {
    text-align: center;
    margin-bottom: 60px;
}

.mts-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(156, 107, 255, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(98, 43, 219, 1);
    margin-bottom: 25px;
    box-shadow: 0 4px 25px rgba(98, 43, 219, 0.12);
    animation: mtsBadgeGlow 3s ease-in-out infinite;
}

@keyframes mtsBadgeGlow {
    0%, 100% { box-shadow: 0 4px 25px rgba(98, 43, 219, 0.12); }
    50% { box-shadow: 0 4px 35px rgba(98, 43, 219, 0.3); }
}

.mts-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(156, 107, 255, 1), rgba(90, 118, 247, 1));
    animation: mtsDotPulse 2s ease-in-out infinite;
}

@keyframes mtsDotPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(156, 107, 255, 0.5); }
    50% { transform: scale(1.3); box-shadow: 0 0 0 8px rgba(156, 107, 255, 0); }
}

.mts-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.mts-gradient-text {
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1), rgba(156, 107, 255, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: mtsGradientShift 4s ease-in-out infinite;
}

@keyframes mtsGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.mts-hero-line {
    width: 100px;
    height: 4px;
    margin: 0 auto;
    background: linear-gradient(90deg, rgba(156, 107, 255, 0), rgba(156, 107, 255, 1), rgba(90, 118, 247, 1), rgba(156, 107, 255, 0));
    border-radius: 4px;
    animation: mtsLineExpand 3s ease-in-out infinite;
}

@keyframes mtsLineExpand {
    0%, 100% { width: 80px; opacity: 0.6; }
    50% { width: 140px; opacity: 1; }
}

/* ========== INTRO CARD ========== */
.mts-intro {
    display: flex;
    gap: 25px;
    padding: 35px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(243, 238, 253, 0.6));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(221, 220, 239, 1);
    border-radius: 24px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(98, 43, 219, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mts-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(156, 107, 255, 1), rgba(90, 118, 247, 1), rgba(156, 107, 255, 1));
    background-size: 200% 100%;
    animation: mtsGradientSlide 3s linear infinite;
}

@keyframes mtsGradientSlide {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.mts-intro::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.mts-intro:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(98, 43, 219, 0.15);
}

.mts-intro:hover::after {
    left: 150%;
}

.mts-intro-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 8px 25px rgba(98, 43, 219, 0.3);
    animation: mtsIconFloat 3s ease-in-out infinite;
}

.mts-intro-icon svg {
    width: 32px;
    height: 32px;
}

@keyframes mtsIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.mts-intro-body p {
    color: rgba(51, 51, 51, 1);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 12px;
}

.mts-intro-body p:last-child {
    margin-bottom: 0;
}

/* ========== SECTION ========== */
.mts-section {
    margin-bottom: 55px;
    position: relative;
}

/* Section Header */
.mts-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 2px solid rgba(243, 238, 253, 1);
    position: relative;
}

.mts-section-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgba(156, 107, 255, 1), rgba(90, 118, 247, 1));
    animation: mtsHeaderLineExpand 2s ease-in-out infinite alternate;
}

@keyframes mtsHeaderLineExpand {
    from { width: 50px; }
    to { width: 130px; }
}

.mts-section-num {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(98, 43, 219, 0.3);
    animation: mtsNumPulse 3s ease-in-out infinite;
    position: relative;
}

.mts-section-num::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 16px;
    border: 2px solid rgba(156, 107, 255, 0.3);
    animation: mtsNumRing 3s ease-in-out infinite;
}

@keyframes mtsNumRing {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0; }
}

@keyframes mtsNumPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(98, 43, 219, 0.3); }
    50% { transform: scale(1.06); box-shadow: 0 12px 35px rgba(98, 43, 219, 0.45); }
}

.mts-section-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    transition: all 0.4s ease;
}

.mts-section-header:hover h2 {
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mts-section-desc {
    color: rgba(80, 80, 80, 0.9);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 25px;
    padding-left: 5px;
}

/* ========== SUBSECTION (1.1, 1.2, etc.) ========== */
.mts-subsection {
    display: flex;
    gap: 18px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(221, 220, 239, 0.8);
    border-radius: 16px;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mts-subsection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(156, 107, 255, 1), rgba(90, 118, 247, 1));
    border-radius: 4px 0 0 4px;
    transition: width 0.4s ease;
}

.mts-subsection::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
    pointer-events: none;
}

.mts-subsection:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(156, 107, 255, 0.4);
    transform: translateX(8px);
    box-shadow: 0 10px 35px rgba(98, 43, 219, 0.12);
}

.mts-subsection:hover::before {
    width: 7px;
    box-shadow: 0 0 15px rgba(156, 107, 255, 0.5);
}

.mts-subsection:hover::after {
    transform: translateX(100%);
}

.mts-sub-marker {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 40px;
    flex-shrink: 0;
    padding-top: 2px;
    transition: transform 0.3s ease;
}

.mts-subsection:hover .mts-sub-marker {
    transform: scale(1.2);
}

.mts-sub-body {
    flex: 1;
}

.mts-sub-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    transition: color 0.3s ease;
}

.mts-subsection:hover .mts-sub-body h3 {
    color: rgba(98, 43, 219, 1);
}

.mts-sub-body p {
    color: rgba(80, 80, 80, 0.9);
    font-size: 14.5px;
    line-height: 1.8;
    margin: 0 0 10px;
}

.mts-sub-body p:last-child {
    margin-bottom: 0;
}

.mts-sub-body strong {
    color: rgba(98, 43, 219, 1);
    font-weight: 700;
}

.mts-sub-body code {
    display: inline-block;
    padding: 2px 10px;
    background: linear-gradient(135deg, rgba(243, 238, 253, 1), rgba(220, 210, 250, 1));
    border: 1px solid rgba(156, 107, 255, 0.25);
    border-radius: 6px;
    color: rgba(98, 43, 219, 1);
    font-size: 13px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

/* ========== LIST ITEM (shield icon rows) ========== */
.mts-list-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(221, 220, 239, 0.6);
    border-radius: 14px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mts-list-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(156, 107, 255, 0), rgba(156, 107, 255, 0.7), rgba(90, 118, 247, 0.7), rgba(156, 107, 255, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.mts-list-item:hover {
    transform: translateX(10px) scale(1.01);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 35px rgba(98, 43, 219, 0.12);
}

.mts-list-item:hover::before {
    opacity: 1;
    animation: mtsBorderHue 3s linear infinite;
}

@keyframes mtsBorderHue {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.mts-list-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(243, 238, 253, 1), rgba(220, 210, 250, 1));
    border: 1px solid rgba(156, 107, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(98, 43, 219, 1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mts-list-icon svg {
    width: 24px;
    height: 24px;
}

.mts-list-item:hover .mts-list-icon {
    transform: scale(1.15) rotate(-8deg);
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1));
    color: white;
    box-shadow: 0 8px 20px rgba(98, 43, 219, 0.3);
}

.mts-list-body {
    flex: 1;
    padding-top: 2px;
}

.mts-list-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
    transition: all 0.3s ease;
}

.mts-list-item:hover .mts-list-body h3 {
    color: rgba(98, 43, 219, 1);
    transform: translateX(4px);
}

.mts-list-body p {
    color: rgba(80, 80, 80, 0.9);
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
}

/* ========== TEXT BLOCK ========== */
.mts-text-block {
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(221, 220, 239, 0.8);
    border-left: 5px solid;
    border-image: linear-gradient(180deg, rgba(156, 107, 255, 1), rgba(90, 118, 247, 1)) 1;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mts-text-block::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(156, 107, 255, 0.06), transparent 70%);
    transform: translate(50%, -50%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.mts-text-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(98, 43, 219, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.mts-text-block:hover::after {
    transform: translate(20%, -20%) scale(1.5);
}

.mts-text-block p {
    color: rgba(80, 80, 80, 0.9);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
}

.mts-text-block p:last-child {
    margin-bottom: 0;
}

.mts-text-block code {
    display: inline-block;
    padding: 2px 10px;
    background: linear-gradient(135deg, rgba(243, 238, 253, 1), rgba(220, 210, 250, 1));
    border: 1px solid rgba(156, 107, 255, 0.25);
    border-radius: 6px;
    color: rgba(98, 43, 219, 1);
    font-size: 13px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

/* ========== CONTACT CARDS ========== */
.mts-contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.mts-contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(243, 238, 253, 0.5));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(221, 220, 239, 1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mts-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(156, 107, 255, 1), rgba(90, 118, 247, 1));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.mts-contact-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(156, 107, 255, 0.08) 25%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: mtsConicRotate 4s linear infinite;
    pointer-events: none;
}

@keyframes mtsConicRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mts-contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(98, 43, 219, 0.15);
    border-color: rgba(156, 107, 255, 0.4);
}

.mts-contact-card:hover::before {
    transform: scaleX(1);
}

.mts-contact-card:hover::after {
    opacity: 1;
}

.mts-contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 8px 25px rgba(98, 43, 219, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mts-contact-card:hover .mts-contact-icon {
    transform: rotate(360deg) scale(1.1);
}

.mts-contact-icon svg {
    width: 28px;
    height: 28px;
}

.mts-contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mts-contact-label {
    font-size: 13px;
    color: rgba(102, 102, 102, 1);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.mts-contact-value {
    font-size: 16px;
    color: #1a1a2e;
    font-weight: 700;
    transition: color 0.3s ease;
}

.mts-contact-card:hover .mts-contact-value {
    color: rgba(98, 43, 219, 1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .main-text-show {
        padding: 60px 0 80px;
    }

    .mts-hero-title {
        font-size: 38px;
    }

    .mts-hero-badge {
        font-size: 12px;
        padding: 6px 18px;
    }

    .mts-intro {
        flex-direction: column;
        padding: 28px 24px;
        gap: 18px;
    }

    .mts-intro-icon {
        width: 50px;
        height: 50px;
    }

    .mts-section-header {
        gap: 14px;
    }

    .mts-section-num {
        width: 44px;
        height: 44px;
        font-size: 20px;
        border-radius: 12px;
    }

    .mts-section-header h2 {
        font-size: 20px;
    }

    .mts-subsection {
        flex-direction: column;
        gap: 10px;
        padding: 20px 22px;
    }

    .mts-sub-marker {
        width: auto;
    }

    .mts-list-item {
        padding: 16px 20px;
        gap: 14px;
    }

    .mts-list-item:hover {
        transform: translateX(4px) scale(1.01);
    }

    .mts-list-icon {
        width: 38px;
        height: 38px;
    }

    .mts-contact-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mts-contact-card {
        padding: 22px 24px;
    }

    .mts-text-block {
        padding: 22px 24px;
    }

    .mts-orb {
        display: none;
    }
}

/*========================================
   CONTACT FORM - DATA DELETION
   COOL STYLES & ANIMATIONS
========================================*/

/* ========== FORM CONTAINER ========== */
.need-form-show {
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(243, 238, 253, 0.8));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(221, 220, 239, 1);
    border-radius: 28px;
    position: relative;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(98, 43, 219, 0.1);
}

.need-form-show::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(156, 107, 255, 1), rgba(90, 118, 247, 1), rgba(156, 107, 255, 1));
    background-size: 200% 100%;
    animation: mtsFormGradientSlide 3s linear infinite;
}

@keyframes mtsFormGradientSlide {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.mts-contact-form {
    position: relative;
    z-index: 2;
}

/* ========== FORM GROUP ========== */
.mts-form-group {
    margin-bottom: 28px;
    position: relative;
}

.mts-form-group label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.mts-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(221, 220, 239, 1);
    border-radius: 14px;
    font-size: 15px;
    color: #1a1a2e;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    outline: none;
    font-family: inherit;
}

.mts-input:focus {
    border-color: rgba(156, 107, 255, 1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(156, 107, 255, 0.15);
    transform: translateY(-2px);
}

.mts-input::placeholder {
    color: rgba(150, 150, 150, 0.8);
    font-weight: 400;
}

.mts-phone-wrap {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.mts-phone-prefix {
    display: flex;
    align-items: center;
    padding: 0 16px;
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1));
    border: 2px solid rgba(98, 43, 219, 1);
    border-right: none;
    border-radius: 14px 0 0 14px;
    color: white;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s ease;
}

.mts-phone-input {
    border-radius: 0 14px 14px 0;
}

.mts-phone-wrap:focus-within .mts-phone-prefix {
    background: linear-gradient(135deg, rgba(120, 63, 230, 1), rgba(112, 138, 250, 1));
    border-color: rgba(156, 107, 255, 1);
}

/* ========== SELECT ========== */
.mts-form-group:last-of-type {
    z-index: 10;
}

.mts-select-wrap {
    position: relative;
    z-index: 10;
}

.mts-select {
    width: 100%;
    padding: 0 48px 0 18px;
    height: 52px;
    line-height: 52px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(221, 220, 239, 1);
    border-radius: 14px;
    font-size: 15px;
    color: #1a1a2e;
    outline: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    -webkit-text-fill-color: #1a1a2e;
    text-align: left;
}

.mts-select:focus {
    border-color: rgba(156, 107, 255, 1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(156, 107, 255, 0.15);
    transform: translateY(-2px);
}

.mts-select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: rgba(98, 43, 219, 1);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.mts-select-arrow svg {
    width: 100%;
    height: 100%;
}

.mts-select-wrap:focus-within .mts-select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* ========== SUBMIT BUTTON ========== */
.mts-submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: rgba(98, 43, 219, 1);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(98, 43, 219, 0.3);
    letter-spacing: 1px;
}

.mts-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(120, 63, 230, 1), rgba(112, 138, 250, 1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mts-btn-text {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
    display: inline-block;
}

.mts-btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.mts-submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(98, 43, 219, 0.45);
}

.mts-submit-btn:hover::before {
    opacity: 1;
}

.mts-submit-btn:hover .mts-btn-text {
    transform: scale(1.05);
}

.mts-submit-btn:hover .mts-btn-shine {
    transform: translateX(100%);
}

.mts-submit-btn:active {
    transform: translateY(-1px) scale(1.01);
}

/* ========== MODAL ========== */
.mts-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.mts-modal.active {
    display: flex;
    animation: mtsModalFadeIn 0.3s ease;
}

@keyframes mtsModalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mts-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(8px);
    animation: mtsBackdropBlur 0.3s ease;
}

@keyframes mtsBackdropBlur {
    from { backdrop-filter: blur(0px); }
    to { backdrop-filter: blur(8px); }
}

.mts-modal-dialog {
    position: relative;
    max-width: 420px;
    width: 90%;
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
    animation: mtsModalPopIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes mtsModalPopIn {
    0% { transform: scale(0.7) translateY(30px); opacity: 0; }
    60% { transform: scale(1.05) translateY(-10px); }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Error theme */
.mts-modal-dialog.error {
    background: linear-gradient(135deg, rgba(243, 238, 253, 1), rgba(255, 255, 255, 1));
    border: 2px solid rgba(156, 107, 255, 0.3);
    box-shadow: 0 30px 80px rgba(98, 43, 219, 0.25);
}

/* Success theme */
.mts-modal-dialog.success {
    background: linear-gradient(135deg, rgba(98, 43, 219, 1), rgba(90, 118, 247, 1));
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 80px rgba(98, 43, 219, 0.5);
}

.mts-modal-content {
    position: relative;
    padding: 40px 35px 35px;
    text-align: center;
    z-index: 2;
}

/* Error theme content */
.mts-modal-dialog.error .mts-modal-icon {
    background: linear-gradient(135deg, rgba(156, 107, 255, 1), rgba(90, 118, 247, 1));
    color: white;
}

.mts-modal-dialog.error .mts-modal-title {
    color: #1a1a2e;
}

.mts-modal-dialog.error .mts-modal-message {
    color: rgba(80, 80, 80, 1);
}

.mts-modal-dialog.error .mts-modal-close {
    background: rgba(98, 43, 219, 1);
    color: white;
}

/* Success theme content */
.mts-modal-dialog.success .mts-modal-icon {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.mts-modal-dialog.success .mts-modal-title {
    color: white;
}

.mts-modal-dialog.success .mts-modal-message {
    color: rgba(255, 255, 255, 0.9);
}

.mts-modal-dialog.success .mts-modal-close {
    background: white;
    color: rgba(98, 43, 219, 1);
}

.mts-modal-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid;
    animation: mtsIconBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

.mts-modal-icon svg {
    width: 36px;
    height: 36px;
}

@keyframes mtsIconBounce {
    0% { transform: scale(0) rotate(-180deg); }
    60% { transform: scale(1.2) rotate(10deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.mts-modal-dialog.error .mts-modal-icon svg {
    animation: mtsIconShake 0.5s ease-in-out 0.8s;
}

@keyframes mtsIconShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-6px); }
    80% { transform: translateX(6px); }
}

.mts-modal-dialog.success .mts-modal-icon svg {
    animation: mtsIconPop 0.5s ease-out 0.8s;
}

@keyframes mtsIconPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.mts-modal-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 12px;
}

.mts-modal-message {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 28px;
}

.mts-modal-close {
    padding: 12px 40px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(98, 43, 219, 0.3);
}

.mts-modal-dialog.success .mts-modal-close {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.mts-modal-close:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(98, 43, 219, 0.4);
}

.mts-modal-dialog.success .mts-modal-close:hover {
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

/* Modal particles */
.mts-modal-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.mts-modal-p {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: mtsParticleExplode 1s ease-out 0.3s forwards;
}

.mts-modal-dialog.error .mts-modal-p {
    background: rgba(156, 107, 255, 0.6);
}

.mts-modal-dialog.success .mts-modal-p {
    background: rgba(255, 255, 255, 0.7);
}

.mts-mp1 { width: 6px; height: 6px; top: 30%; left: 20%; }
.mts-mp2 { width: 4px; height: 4px; top: 25%; left: 80%; }
.mts-mp3 { width: 5px; height: 5px; top: 70%; left: 15%; }
.mts-mp4 { width: 3px; height: 3px; top: 75%; left: 75%; }
.mts-mp5 { width: 5px; height: 5px; top: 50%; left: 10%; }
.mts-mp6 { width: 4px; height: 4px; top: 55%; left: 88%; }

@keyframes mtsParticleExplode {
    0% { opacity: 0; transform: translate(0, 0) scale(0); }
    30% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: translate(var(--tx, 50px), var(--ty, -50px)) scale(0); }
}

.mts-mp1 { --tx: 80px; --ty: -60px; }
.mts-mp2 { --tx: -60px; --ty: -80px; }
.mts-mp3 { --tx: 100px; --ty: 40px; }
.mts-mp4 { --tx: -90px; --ty: 50px; }
.mts-mp5 { --tx: 70px; --ty: -70px; }
.mts-mp6 { --tx: -50px; --ty: 80px; }

/* Shake animation for validation error */
.mts-form-group.error {
    animation: mtsFormShake 0.5s ease;
}

@keyframes mtsFormShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-10px); }
    40% { transform: translateX(10px); }
    60% { transform: translateX(-8px); }
    80% { transform: translateX(8px); }
}

.mts-form-group.error .mts-input,
.mts-form-group.error .mts-select {
    border-color: rgba(255, 99, 132, 1);
    box-shadow: 0 0 0 4px rgba(255, 99, 132, 0.15);
    animation: mtsErrorPulse 0.5s ease;
}

@keyframes mtsErrorPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255, 99, 132, 0.15); }
    50% { box-shadow: 0 0 0 6px rgba(255, 99, 132, 0.3); }
}

/* ========== NEW SHOW FLEX LAYOUT ========== */
.new-show-flex {
    display: flex;
    align-items: center;
    gap: 30px;
}

.new-show-left {
    flex: 2;
}

.new-show-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
}
.contact-img{
    width: 15px;
    height: auto;
    margin-right: 5px;
}
.show-img-show img {
    width: 320px;
    height: auto;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.show-img-show img:hover {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 15px 30px rgba(98, 43, 219, 0.3));
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .need-form-show {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .mts-submit-btn {
        font-size: 16px;
        padding: 14px 24px;
    }

    .mts-modal-dialog {
        max-width: 360px;
    }

    .mts-modal-content {
        padding: 30px 25px 25px;
    }

    .mts-modal-title {
        font-size: 20px;
    }

    .new-show-flex {
        gap: 20px;
    }

    .show-img-show img {
        width: 120px;
    }
}
