/* Hover animations */
.cta-button:hover {
background: #00e6f7;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 204, 221, 0.3);
}

.cta-button:hover .calendar-icon {
opacity: 0;
transform: translateX(10px) rotate(45deg);
}

.cta-button:hover .arrow-icon {
opacity: 1;
transform: translateX(0) rotate(0);
}

/* Active state */
.cta-button:active {
transform: translateY(0);
box-shadow: 0 2px 8px rgba(0, 204, 221, 0.2);
}

/* Animations */
@keyframes fadeInDown {
from {
    opacity: 0;
    transform: translateY(-20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Integration Map Styles - Keep Desktop Version */
.node img {
height: 40px;
width: auto;
}

/* Mobile-First Integration Design - Completely Different Layout */
.integration-mobile {
    display: none;
    padding: 50px 20px;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
}

.integration-mobile-container {
    max-width: 400px;
    margin: 0 auto;
}

.integration-mobile-header {
    text-align: center;
    margin-bottom: 40px;
}

.mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-logo img, .mobile-logo svg {
    height: 35px;
    width: auto;
    filter: brightness(1.2);
}

.mobile-logo .connector {
    width: 30px;
    height: 2px;
    background: rgba(0, 204, 221, 0.5);
}

.integration-mobile-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.integration-mobile-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.5;
}

.integration-cards {
    display: grid;
    gap: 12px;
}

.integration-card-mobile {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.integration-card-mobile:hover {
    border-color: #00CCDD;
    background: rgba(0, 204, 221, 0.08);
    transform: translateY(-2px);
}

.integration-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 204, 221, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.integration-icon svg {
    width: 24px;
    height: 24px;
    color: #00CCDD;
}

.integration-content {
    flex: 1;
}

.integration-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.integration-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Show mobile version on mobile screens */
@media (max-width: 768px) {

    .integration-card h3{
        left: unset;
        transform: unset;
    }
    .integration-map {
        display: none;
    }
    
    .integration-mobile {
        display: block;
    }
}

.glare-effect {
position: absolute;
top: -200%;
left: -200%;
width: 400%;
height: 400%;
background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.4) 45%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.4) 55%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0) 100%
);
transform: rotate(45deg);
animation: none;
pointer-events: none;
z-index: 1;
}




.play-button {
position: absolute;
cursor: pointer;
transition: transform 0.3s ease;
}

.play-button:hover {
transform: scale(1.1);
}

@keyframes glareSwipe {
0% {
    transform: translate(-150%, -150%) rotate(45deg);
}
100% {
    transform: translate(150%, 150%) rotate(45deg);
}
}

@keyframes animate-overlay-right {
0% {
    transform: scale(0,0);
}
20% {
    transform: scale(0.1,1);
}
50% {
    transform: scale(1,1);
}
100% {
    transform: translateX(101%);
}
}

/* Add these new styles */
.video-overlay {



position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.9);
z-index: 9999;
justify-content: center;
align-items: center;
}

.video-overlay.active {
display: flex;
}

.video-container {
position: relative;
width: 80%;
max-width: 900px;
aspect-ratio: 16/9;
background: #000;
}

#youtube-player {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.close-video {
position: absolute;
top: -40px;
right: -40px;
background: none;
border: none;
color: white;
font-size: clamp(28.8px, 2.122vw, 32px);
cursor: pointer;
padding: 10px;
}

.close-video:hover {
color: #00CCDD;
}

.content-wrapper.reverse {
grid-template-columns: 1.5fr 1fr;
}

.content-wrapper.reverse .globe-animation {
grid-column: 2 / 3;
grid-row: 1 / 2;
}

.content-wrapper.reverse .info-content {
grid-column: 1 / 2;
grid-row: 1 / 2;
transform: translateX(-50px); /* Initial position for animation */
}

.second-section {
margin: 50px 0; /* Add space between sections */
}

/* Update the animation trigger for the second section */
.second-section .info-content {
transform: translateX(-50px);
}

/* Add vertical timeline line */


/* Optional: Remove the default link underline on hover */
.integration-card:hover {
text-decoration: none;
}



/* Hover effect */
.integration-card:hover img {
opacity: 0;
}

.integration-card:hover .card-overlay {
background-color: rgb(0, 204, 221);
}

.integration-card:hover .arrow-icons {
opacity: 1;
}

/* Responsive design */



/* Animation classes */
.timeline-item.animate {
opacity: 1;
transform: translateY(0);
}

/* Update media queries for responsive design */


@keyframes heroProgressLine {
from { width: 0; }
to { width: 100%; }
}

/* Animation classes */


@keyframes heroFadeInUp {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}

@keyframes heroFadeIn {
from { opacity: 0; }
to { opacity: 1; }
}


/* FAQ Section CSS */


.faq-item:hover {
border-color: rgba(0, 204, 221, 0.4);
box-shadow: 0 4px 20px rgba(0, 204, 221, 0.1);
}


.faq-item.active {
border-color: #00CCDD;
}

.faq-item.active .faq-icon {
transform: rotate(180deg);
}



.faq-item.active .faq-answer {
max-height: 300px;
padding-bottom: 25px;
}

/* Add animation for answer expansion */
@keyframes slideDown {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}

.faq-item.active .faq-answer {
animation: slideDown 0.3s ease forwards;
}

/* Mobile Responsiveness */


.book-call-btn:hover::after {
transform: scaleX(0);
transform-origin: left;
}



@media (max-width: 1024px) {
.slider-content {
    grid-template-columns: 1fr;
    gap: 40px;
    height: auto; /* Remove fixed height */
    padding: 40px 0;
}

.title {
    font-size: 2.5rem;
    margin-bottom: 40px; /* Reduce bottom margin */
}

.right-column {
    height: 550px; /* Set fixed height for mobile */
}}

@media (max-width: 768px) {
.integrations-slider {
    padding: 60px 20px;
}

.title {
    font-size: clamp(28.8px, 2.122vw, 32px);
}

.hero-content h1 {
    font-size: clamp(28.8px, 4.8vw, 32px);
}

.hero-description {
    font-size: clamp(14.4px, 1.061vw, 16px);
    margin-bottom: 20px;
}

.hero-content {
    width: 100%;
    padding: 0 20px;
}

.cta-button {
    width: 100%;
    justify-content: center;
}
}

@media (max-width: 480px) {
.hero-container {
    padding: 60px 20px;
}

.hero-content h1 .line-2,
.hero-content h1 .line-3 {
    display: block;
}
}

@media (max-width: 991px) {

.video-overlay .video-container {
    width: 90%;
    height: auto;
    aspect-ratio: 16/9;
}
}

@media (max-width: 767px) {

.play-button {
    width: 40px;
    height: 40px;
}

.play-button svg {
    width: 40px;
    height: 40px;
}

.video-overlay .video-container {
    width: 95%;
}

.close-video {
    top: -40px;
    right: 0;
    font-size: clamp(27.0px, 1.99vw, 30px);
}
}
