/* ===== MYTROUPE V2 - MAIN CSS ===== */

/* ===== IMPORTS ===== */
@import url("legal-pages-Rjr3HFq.css");

/* ===== UTILITY CLASSES ===== */

/* Max width utility */
.mx-800 {
    max-width: 800px;
    display: inline-block;
}

/* ===== ANIMATIONS WOW ===== */

/* Animation de base pour les éléments WOW */
.wow {
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animation fadeInLeft */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation fadeInRight */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation fadeInUp */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation fadeInDown */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation fadeIn */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation zoomIn */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation slideInUp */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation slideInLeft */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation slideInRight */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation bounceIn */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation flipInX */
@keyframes flipInX {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg);
    }
    40% {
        transform: perspective(400px) rotateX(-20deg);
    }
    60% {
        opacity: 1;
        transform: perspective(400px) rotateX(10deg);
    }
    80% {
        transform: perspective(400px) rotateX(-5deg);
    }
    100% {
        opacity: 1;
        transform: perspective(400px) rotateX(0deg);
    }
}

/* Animation flipInY */
@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    40% {
        transform: perspective(400px) rotateY(-20deg);
    }
    60% {
        opacity: 1;
        transform: perspective(400px) rotateY(10deg);
    }
    80% {
        transform: perspective(400px) rotateY(-5deg);
    }
    100% {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

/* Animation lightSpeedIn */
@keyframes lightSpeedIn {
    0% {
        opacity: 0;
        transform: translateX(-100%) skewX(-15deg);
    }
    60% {
        opacity: 1;
        transform: translateX(20%) skewX(-15deg);
    }
    80% {
        transform: translateX(-5%) skewX(-15deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) skewX(0deg);
    }
}

/* Animation lightSpeedOut */
@keyframes lightSpeedOut {
    0% {
        opacity: 1;
        transform: translateX(0) skewX(0deg);
    }
    100% {
        opacity: 0;
        transform: translateX(100%) skewX(15deg);
    }
}

/* Animation pulse */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Animation rubberBand */
@keyframes rubberBand {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scaleX(1.25) scaleY(0.75);
    }
    40% {
        transform: scaleX(0.75) scaleY(1.25);
    }
    50% {
        transform: scaleX(1.15) scaleY(0.85);
    }
    65% {
        transform: scaleX(0.95) scaleY(1.05);
    }
    75% {
        transform: scaleX(1.05) scaleY(0.95);
    }
    100% {
        transform: scale(1);
    }
}

/* Animation shake */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

/* Animation swing */
@keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Animation tada */
@keyframes tada {
    0% {
        transform: scale(1);
    }
    10%, 20% {
        transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        transform: scale(1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Animation wobble */
@keyframes wobble {
    0% {
        transform: translateX(0%);
    }
    15% {
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        transform: translateX(0%);
    }
}

/* Animation jello */
@keyframes jello {
    0%, 11.1%, 100% {
        transform: translateX(0);
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

/* Animation heartBeat */
@keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

/* Animation hinge */
@keyframes hinge {
    0% {
        transform: rotate(0);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }
    20%, 60% {
        transform: rotate(80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }
    40%, 80% {
        transform: rotate(60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }
    100% {
        transform: rotate(60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }
}

/* Animation jackInTheBox */
@keyframes jackInTheBox {
    0% {
        opacity: 0;
        transform: scale(0.1) rotate(30deg);
        transform-origin: center bottom;
    }
    50% {
        transform: rotate(-10deg);
    }
    70% {
        transform: rotate(3deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Animation rollIn */
@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translateX(-100%) rotate(-120deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

/* Animation rollOut */
@keyframes rollOut {
    0% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateX(100%) rotate(120deg);
    }
}

/* Animation zoomInUp */
@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale(0.1) translateY(1000px);
    }
    60% {
        opacity: 1;
        transform: scale(0.475) translateY(-60px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Animation zoomInDown */
@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale(0.1) translateY(-1000px);
    }
    60% {
        opacity: 1;
        transform: scale(0.475) translateY(60px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Animation zoomInLeft */
@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale(0.1) translateX(-1000px);
    }
    60% {
        opacity: 1;
        transform: scale(0.475) translateX(60px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

/* Animation zoomInRight */
@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale(0.1) translateX(1000px);
    }
    60% {
        opacity: 1;
        transform: scale(0.475) translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

/* Animation zoomOut */
@keyframes zoomOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0;
        transform: scale(0.3);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Animation zoomOutUp */
@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale(0.475) translateY(60px);
    }
    100% {
        opacity: 0;
        transform: scale(0.1) translateY(-1000px);
    }
}

/* Animation zoomOutDown */
@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale(0.475) translateY(-60px);
    }
    100% {
        opacity: 0;
        transform: scale(0.1) translateY(1000px);
    }
}

/* Animation zoomOutLeft */
@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale(0.475) translateX(60px);
    }
    100% {
        opacity: 0;
        transform: scale(0.1) translateX(-1000px);
    }
}

/* Animation zoomOutRight */
@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale(0.475) translateX(-60px);
    }
    100% {
        opacity: 0;
        transform: scale(0.1) translateX(1000px);
    }
}

/* Animation slideInDown */
@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation slideOutUp */
@keyframes slideOutUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

/* Animation slideOutDown */
@keyframes slideOutDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}

/* Animation slideOutLeft */
@keyframes slideOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-100%);
    }
}

/* Animation slideOutRight */
@keyframes slideOutRight {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Animation bounceInDown */
@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-3000px);
    }
    60% {
        opacity: 1;
        transform: translateY(30px);
    }
    80% {
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation bounceInLeft */
@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-3000px);
    }
    60% {
        opacity: 1;
        transform: translateX(30px);
    }
    80% {
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation bounceInRight */
@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(3000px);
    }
    60% {
        opacity: 1;
        transform: translateX(-30px);
    }
    80% {
        transform: translateX(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation bounceInUp */
@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(3000px);
    }
    60% {
        opacity: 1;
        transform: translateY(-30px);
    }
    80% {
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation bounceOut */
@keyframes bounceOut {
    20% {
        transform: scale(0.9);
    }
    50%, 55% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

/* Animation bounceOutDown */
@keyframes bounceOutDown {
    20% {
        transform: translateY(10px);
    }
    40%, 45% {
        opacity: 1;
        transform: translateY(-20px);
    }
    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

/* Animation bounceOutLeft */
@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translateX(20px);
    }
    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

/* Animation bounceOutRight */
@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translateX(-20px);
    }
    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

/* Animation bounceOutUp */
@keyframes bounceOutUp {
    20% {
        transform: translateY(-10px);
    }
    40%, 45% {
        opacity: 1;
        transform: translateY(20px);
    }
    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

/* Animation fadeInUpBig */
@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation fadeInDownBig */
@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation fadeInLeftBig */
@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation fadeInRightBig */
@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation fadeOutUpBig */
@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

/* Animation fadeOutDownBig */
@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

/* Animation fadeOutLeftBig */
@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

/* Animation fadeOutRightBig */
@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

/* Animation rotateIn */
@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-200deg);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg);
    }
}

/* Animation rotateInDownLeft */
@keyframes rotateInDownLeft {
    0% {
        opacity: 0;
        transform: rotate(-45deg);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg);
    }
}

/* Animation rotateInDownRight */
@keyframes rotateInDownRight {
    0% {
        opacity: 0;
        transform: rotate(45deg);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg);
    }
}

/* Animation rotateInUpLeft */
@keyframes rotateInUpLeft {
    0% {
        opacity: 0;
        transform: rotate(45deg);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg);
    }
}

/* Animation rotateInUpRight */
@keyframes rotateInUpRight {
    0% {
        opacity: 0;
        transform: rotate(-45deg);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg);
    }
}

/* Animation rotateOut */
@keyframes rotateOut {
    0% {
        opacity: 1;
        transform: rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: rotate(200deg);
    }
}

/* Animation rotateOutDownLeft */
@keyframes rotateOutDownLeft {
    0% {
        opacity: 1;
        transform: rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: rotate(45deg);
    }
}

/* Animation rotateOutDownRight */
@keyframes rotateOutDownRight {
    0% {
        opacity: 1;
        transform: rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: rotate(-45deg);
    }
}

/* Animation rotateOutUpLeft */
@keyframes rotateOutUpLeft {
    0% {
        opacity: 1;
        transform: rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: rotate(-45deg);
    }
}

/* Animation rotateOutUpRight */
@keyframes rotateOutUpRight {
    0% {
        opacity: 1;
        transform: rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: rotate(45deg);
    }
}

/* ===== COMPONENTS CSS ===== */

/* Main Content */
.main {
    min-height: 100vh;
}

/* Animations au scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Formes abstraites pour les sections */
.section-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.section-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.section-shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.section-shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #7004bc 0%, #3264f5 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="20" fill="rgba(255,255,255,0.1)">+</text></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn {
    min-width: 200px;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
}

/* Beta Testeurs Section */
#beta-testeurs {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

#beta-testeurs .heading-area .title {
    font-size: 40px;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

#beta-testeurs .heading-area p.para {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}

#beta-testeurs .heading-area p.para strong {
    font-weight: 700;
}

/* Testimonials Section */
.testimonial-carousel {
    position: relative;
    padding: 60px 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    color: white;
    overflow: hidden;
    z-index: 1;
}

.testimonial-carousel::after {
    content: '';
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
    background: url("../images/quote-OXgoP0s.svg") no-repeat;
    background-size: contain;
    opacity: 0.1;
    z-index: -1;
}

.testimonial-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
}

.testimonial-item .name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-item .designation {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    color: #fff;
}

.testimonial-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.testimonial-dot {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    pointer-events: auto;
}

.testimonial-dot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.testimonial-dot:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.testimonial-dot.active {
    border-color: #fff;
    animation: pulse_effect 2s infinite;
}

.testimonial-dot.active img {
    transform: scale(1.1);
}

@keyframes pulse_effect {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@media (max-width: 768px) {
    .testimonial-dots {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        z-index: 2;
    }
    
    .testimonial-dot {
        position: absolute;
        width: 100px;
        height: 100px;
        pointer-events: auto;
    }
    
    .testimonial-item {
        padding: 0 20px;
    }
    
    .testimonial-item .name {
        font-size: 1.2rem;
    }
    
    .testimonial-item .designation {
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact-us {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.contact-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="20" fill="rgba(112,4,188,0.05)">+</text></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.5;
}

.contact-us .container {
    position: relative;
    z-index: 2;
}

.contact-detail {
    padding-right: 30px;
    position: relative;
    min-height: 600px;
}

.contact-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.address li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.address li:last-child {
    margin-bottom: 0;
}

.address .address-icon {
    font-size: 30px;
    margin-right: 20px;
    flex-shrink: 0;
}

.address .address-text {
    color: #696969;
    font-size: 16px;
    line-height: 1.6;
}

/* Gradient text for icons */
.gradient-text2 {
    background: #3264f5;
    background: -moz-linear-gradient(left, #3264f5 2%, #7004bc 82%);
    background: -webkit-linear-gradient(left, #3264f5 2%, #7004bc 82%);
    background: linear-gradient(to right, #3264f5 2%, #7004bc 82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact form styling */
.contact-form .form-control {
    border: 1px solid #d4d4d4;
    padding: 15px 15px;
    background: #fff;
    letter-spacing: 0.5px;
    font-weight: 400;
    border-radius: 5px;
    box-shadow: none;
    font-size: 14px;
    min-height: 45px;
    position: relative;
    transition: border 0.9s ease;
}

.contact-form .form-control:focus {
    border-color: #7004bc;
    box-shadow: none;
    outline: none;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form textarea.form-control {
    min-height: 183px;
    resize: none;
    margin-bottom: 0;
}

.contact-form .form-group:last-child {
    margin-bottom: 0;
}

/* Heading styles for contact section */
.contact-us .heading-area .title {
    font-size: 40px;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.contact-us .heading-area h3 {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #696969;
    font-weight: 400;
    margin-bottom: 2rem;
}

.contact-us .heading-area .para {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #696969;
    margin-bottom: 2rem;
}

/* Contact avatar styling */
.contact-avatar {
    flex-shrink: 0;
}

.contact-avatar-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #7004bc;
    box-shadow: 0 4px 15px rgba(112, 4, 188, 0.2);
}

/* Button styling */
.btn {
    -webkit-appearance: initial;
    overflow: hidden;
    position: sticky;
    z-index: 2;
    display: inline-block;
    font-size: 17px;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    line-height: inherit;
    border-radius: 0;
    text-transform: capitalize;
    width: auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.5s ease;
}

.btn.btn-large {
    font-size: 14px;
    padding: 9px 34px;
    line-height: 1.8em;
}

.btn.btn-rounded {
    border-radius: 50px;
}

.btn.btn-purple {
    background: #7004bc;
    border-color: #7004bc;
    color: #ffffff;
}

.btn.btn-hvr-blue:hover,
.btn.btn-hvr-blue:focus {
    color: #fff;
    border-color: #03a9f5;
    background: transparent !important;
}

.btn.btn-hvr-blue .btn-hvr-effect {
    background: #03A9F5;
    border-color: #03A9F5;
}

/* Button hover effects */
.btn-hvr-setting {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
}

.btn-hvr-setting-inner {
    position: relative;
    display: block;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.btn-hvr-effect {
    position: absolute;
    top: -5px;
    width: 25%;
    height: 100%;
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.7);
    transition: transform 0.45s;
}

.btn-hvr-effect:nth-child(1) {
    left: 0;
    transition-delay: 0s;
}

.btn-hvr-effect:nth-child(2) {
    left: 30%;
    transition-delay: 0.08s;
}

.btn-hvr-effect:nth-child(3) {
    left: 60%;
    transition-delay: 0.16s;
}

.btn-hvr-effect:nth-child(4) {
    left: 90%;
    transition-delay: 0.24s;
}

.btn-hvr-setting:hover .btn-hvr-effect,
.btn:hover .btn-hvr-effect,
.btn:active .btn-hvr-effect,
.btn:focus .btn-hvr-effect {
    transform: translateZ(0) scale(1.7) !important;
}

/* Responsive contact section */
@media (max-width: 991px) {
    .contact-us {
        text-align: left;
    }
    
    .contact-detail {
        padding: 0;
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .contact-detail {
        min-height: 300px;
    }
    
    .address .address-icon {
        font-size: 25px;
        margin-right: 15px;
    }
    
    .address .address-text {
        font-size: 14px;
    }
    
    .contact-form .form-control {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .contact-us .heading-area .title {
        font-size: 32px;
    }
    
    .contact-us .heading-area h3 {
        font-size: 1rem;
    }
    
    .contact-us .heading-area .para {
        font-size: 1rem;
    }
    
    .contact-avatar-img {
        width: 100px;
        height: 100px;
    }
    
    .contact-us .heading-area {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-avatar {
        margin-top: 1rem;
        margin-left: 0 !important;
    }
} 