/* Unified CSS for both index.html and page.html */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    line-height: 1.6;
    scroll-behavior: smooth;
    width: 100vw;
}

/* Page-specific body styles */
body.page-body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 200vh;
    display: block;
}


/* Hero Section - for page.html */
.hero-section {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    z-index: 1;
}

.hero-content {
    max-width: 1000px;
    z-index: 100;
    margin-bottom: 8rem;
}

/* Avatar Styles */
.avatar-container {
    margin-top: 3rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(78, 205, 196, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.avatar-image:hover {
    transform: scale(1.05);
    border-color: rgba(78, 205, 196, 0.6);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.2);
}

/* Circular Social/Contact Items */
.circular-social {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Golden variant for premium users */
.circular-social.golden {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.25) 0%, 
        rgba(255, 193, 7, 0.2) 25%, 
        rgba(255, 165, 0, 0.3) 50%, 
        rgba(255, 140, 0, 0.25) 75%, 
        rgba(255, 215, 0, 0.2) 100%);
    backdrop-filter: blur(25px) saturate(150%);
    border: 3px solid rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 215, 0, 0.2);
    animation: luxury-golden-glow 4s ease-in-out infinite;
}


@keyframes luxury-golden-glow {
    0%, 100% {
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.3),
            0 0 40px rgba(255, 215, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(255, 215, 0, 0.2);
        border-color: rgba(255, 215, 0, 0.6);
    }
    50% {
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.4),
            0 0 60px rgba(255, 215, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 0 rgba(255, 215, 0, 0.3);
        border-color: rgba(255, 215, 0, 0.8);
    }
}


.social-item {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    /* Fix mobile touch interactions */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.social-item:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


/* Position social items in a circle - 8 items with optimized spacing */
.social-item.twitter {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.social-item.linkedin {
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.social-item.github {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.social-item.instagram {
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

.social-item.email {
    top: 22%;
    right: 22%;
    transform: translate(50%, -50%);
}

.social-item.phone {
    bottom: 22%;
    right: 22%;
    transform: translate(50%, 50%);
}

.social-item.medium {
    bottom: 22%;
    left: 22%;
    transform: translate(-50%, 50%);
}

.social-item.contact-btn {
    top: 22%;
    left: 22%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.3), rgba(69, 183, 209, 0.3));
    border: 2px solid rgba(78, 205, 196, 0.6);
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.4), 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse-glow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.social-item.contact-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1, #4ecdc4);
    border-radius: 50%;
    z-index: -1;
    animation: rotate-border 3s linear infinite;
}

.social-item.contact-btn:hover {
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.5), rgba(69, 183, 209, 0.5));
    border-color: rgba(78, 205, 196, 0.8);
    box-shadow: 0 0 30px rgba(78, 205, 196, 0.6), 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translate(-50%, -50%) scale(1.15);
    color: white;
}

/* Special animations for contact button */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(78, 205, 196, 0.4), 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(78, 205, 196, 0.6), 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Social item hover effects */
.social-item.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.social-item.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.social-item.github:hover {
    background: #333;
    border-color: #333;
}

.social-item.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
}

.social-item.email:hover {
    background: #ea4335;
    border-color: #ea4335;
}

.social-item.phone:hover {
    background: #34a853;
    border-color: #34a853;
}

.social-item.medium:hover {
    background: #00ab6c;
    border-color: #00ab6c;
}

.social-item.contact-btn:hover {
    background: rgba(78, 205, 196, 0.4);
    border-color: rgba(78, 205, 196, 0.6);
    color: #4ecdc4;
}

/* Custom tooltip styles */
.custom-tooltip {
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10000;
    pointer-events: none;
}

.custom-tooltip::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid rgba(0, 0, 0, 0.9);
}

.custom-tooltip.show {
    opacity: 1;
    visibility: visible;
}

.hero-title {
    font-size: 6rem;
    font-weight: 600;
    color: rgba(232, 244, 253, 0.75);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    margin-bottom: -4rem;
    font-family: 'Poppins', sans-serif;
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

/* Mobile-specific adjustments for iPhone browser navigation bar */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 6rem; /* Increased from 3rem to 6rem to account for iPhone browser nav bar */
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 8rem; /* Even more space for smaller screens */
    }
}

.scroll-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.scroll-text span {
    color: #4ecdc4;
    font-weight: 700;
}

.scroll-arrow {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(78, 205, 196, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(78, 205, 196, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.2);
    /* Fix mobile touch interactions */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.scroll-arrow:hover {
    background: rgba(78, 205, 196, 0.3);
    border-color: rgba(78, 205, 196, 0.6);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(78, 205, 196, 0.4);
}

.scroll-arrow svg {
    color: rgba(78, 205, 196, 0.9);
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
}

.scroll-arrow:hover svg {
    color: #4ecdc4;
    transform: translateY(2px);
}

/* Golden variant for scroll arrow */
.scroll-indicator.golden .scroll-arrow {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.25) 0%, 
        rgba(255, 193, 7, 0.2) 25%, 
        rgba(255, 165, 0, 0.3) 50%, 
        rgba(255, 140, 0, 0.25) 75%, 
        rgba(255, 215, 0, 0.2) 100%);
    backdrop-filter: blur(25px) saturate(150%);
    border: 3px solid rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.4),
        0 0 50px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 215, 0, 0.2);
    animation: bounce 2s infinite, luxury-golden-glow 4s ease-in-out infinite;
}

.scroll-indicator.golden .scroll-arrow:hover {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.35) 0%, 
        rgba(255, 193, 7, 0.3) 25%, 
        rgba(255, 165, 0, 0.4) 50%, 
        rgba(255, 140, 0, 0.35) 75%, 
        rgba(255, 215, 0, 0.3) 100%);
    border-color: rgba(255, 215, 0, 0.8);
    transform: scale(1.1);
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 215, 0, 0.3);
}

.scroll-indicator.golden .scroll-arrow svg {
    color: rgba(255, 215, 0, 0.9);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.scroll-indicator.golden .scroll-arrow:hover svg {
    color: rgba(255, 215, 0, 1);
    transform: translateY(2px);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.7));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Floating Fact Images Background */
.floating-fact-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
    animation: slideWall 60s linear infinite;
}

/* Floating fact images for index.html hero container */
.hero-container .floating-fact-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    animation: slideWall 60s linear infinite;
}

.floating-fact-image {
    position: absolute;
    border-radius: 8px;
    opacity: 0.08;
    filter: blur(1px);
    transition: opacity 0.3s ease;
    object-fit: cover;
}

.floating-fact-image:hover {
    opacity: 0.25;
}

@keyframes slideWall {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Facts Section - for page.html */
.facts-section {
    width: 100vw;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    z-index: 1;
}

/* Floating Scroll Arrow for Facts Section */
.facts-scroll-arrow {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    background: rgba(78, 205, 196, 0.7);
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
}

.facts-scroll-arrow.visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
}

.facts-scroll-arrow.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Golden variant for facts scroll arrow */
.facts-scroll-arrow.golden {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.25) 0%, 
        rgba(255, 193, 7, 0.2) 25%, 
        rgba(255, 165, 0, 0.3) 50%, 
        rgba(255, 140, 0, 0.25) 75%, 
        rgba(255, 215, 0, 0.2) 100%);
    backdrop-filter: blur(25px) saturate(150%);
    border: 3px solid rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.2),
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 215, 0, 0.2);
    animation: luxury-golden-glow 4s ease-in-out infinite;
}

.facts-scroll-arrow.golden .scroll-arrow-content {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.25) 0%, 
        rgba(255, 193, 7, 0.2) 25%, 
        rgba(255, 165, 0, 0.3) 50%, 
        rgba(255, 140, 0, 0.25) 75%, 
        rgba(255, 215, 0, 0.2) 100%);
    backdrop-filter: blur(25px) saturate(150%);
    border: 2px solid rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.2),
        0 0 20px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 215, 0, 0.2);
    animation: subtle-pulse 3s ease-in-out infinite;
}

.facts-scroll-arrow.golden .scroll-arrow-content:hover {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.35) 0%, 
        rgba(255, 193, 7, 0.3) 25%, 
        rgba(255, 165, 0, 0.4) 50%, 
        rgba(255, 140, 0, 0.35) 75%, 
        rgba(255, 215, 0, 0.3) 100%);
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 
        0 12px 35px rgba(255, 215, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.facts-scroll-arrow.golden .scroll-arrow-icon {
    color: rgba(255, 215, 0, 0.9);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.facts-scroll-arrow.golden .scroll-arrow-content:hover .scroll-arrow-icon {
    color: rgba(255, 215, 0, 1);
    transform: translateY(2px);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.7));
}

.scroll-arrow-content {
    background: rgba(78, 205, 196, 0.4);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(78, 205, 196, 0.5);
    border-radius: 50px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.2);
    cursor: pointer;
    transition: all 0.5s ease;
    animation: subtle-pulse 3s ease-in-out infinite;
    /* Fix mobile touch interactions */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.scroll-arrow-content:hover {
    background: rgba(78, 205, 196, 0.6);
    border-color: rgba(78, 205, 196, 0.8);
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.3);
    transform: translateY(-2px);
}

.scroll-arrow-content:active {
    transform: translateY(0) scale(0.98);
}

@keyframes subtle-pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.scroll-arrow-text {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.scroll-arrow-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.scroll-arrow-content:hover .scroll-arrow-icon {
    transform: translateY(2px);
}

.scroll-arrow-content:active .scroll-arrow-icon {
    transform: translateY(0);
}

/* Individual Fact Items */
.fact-item {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    box-sizing: border-box;
    gap: 3rem;
}

.fact-item:nth-child(even) {
    flex-direction: row-reverse;
}

.fact-image {
    flex: 1;
    height: 80%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.fact-image:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.fact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.fact-image:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.fact-content {
    flex: 1;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: all 0.3s ease, border-color 0.3s ease;
    height: 60%;
    width: 100%;
}

.fact-content:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(78, 205, 196, 0.1);
}

.fact-content:hover .fact-number {
    color: rgba(78, 205, 196, 1);
    text-shadow: 0 0 30px rgba(78, 205, 196, 0.5);
    transform: scale(1.05);
}

.fact-content:hover .fact-text h2 {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.fact-content:hover .fact-text p {
    color: rgba(255, 255, 255, 0.9);
}

.fact-number {
    font-size: 6rem;
    font-weight: 800;
    color: rgba(78, 205, 196, 0.8);
    line-height: 1;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.fact-text h2 {
    font-size: 3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.fact-text p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
}

/* CTA Fact Special Styling */
.cta-fact {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(69, 183, 209, 0.1) 100%);
}


.cta-fact .fact-content {
    background: rgba(78, 205, 196, 0.1);
    border: 2px solid rgba(78, 205, 196, 0.3);
}


.cta-fact .fact-icon {
    font-size: 4rem;
    color: rgba(78, 205, 196, 0.8);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

.cta-fact .fact-text h2 {
    color: rgba(78, 205, 196, 0.9);
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    border: none;
    cursor: pointer;
    display: inline-block;
    min-width: 200px;
    text-align: center;
    margin-top: 2rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    background: linear-gradient(45deg, #ff5252, #ff9800);
    color: white;
    text-decoration: none;
}

/* CTA Section Styles - Redesigned */
.cta-section {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 60rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content {
    background: #1a1a1a;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.08), transparent);
    transition: left 0.5s ease;
}

.cta-content:hover::before {
    left: 100%;
}

.cta-content:hover {
    transform: translateY(-4px);
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(78, 205, 196, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.cta-icon {
    font-size: 3.5rem;
    color: #4ecdc4;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.4);
    animation: float 3s ease-in-out infinite;
    position: relative;
}

.cta-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0; }
}

.cta-title {
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4ecdc4 0%, #45b7d1 50%, #ff6b6b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.2);
    position: relative;
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4ecdc4, #ff6b6b);
    border-radius: 2px;
    animation: expand-line 2s ease-out infinite;
}

@keyframes expand-line {
    0%, 100% { width: 60px; }
    50% { width: 90px; }
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.cta-buttons .btn {
    position: relative;
    overflow: hidden;
    min-width: 180px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    box-shadow: 
        0 10px 25px rgba(255, 107, 107, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
}

.cta-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.4s ease;
}

.cta-buttons .btn-primary:hover::before {
    left: 100%;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(255, 107, 107, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ff5252 0%, #ff9800 100%);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 2px solid rgba(78, 205, 196, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-buttons .btn-secondary:hover {
    transform: translateY(-2px) scale(1.02);
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.6);
    box-shadow: 
        0 15px 35px rgba(78, 205, 196, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    color: #4ecdc4;
}

/* Simplified floating particles effect */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, rgba(78, 205, 196, 0.2), transparent),
        radial-gradient(1px 1px at 60px 70px, rgba(255, 107, 107, 0.15), transparent);
    background-repeat: repeat;
    background-size: 150px 150px;
    animation: float-particles 15s linear infinite;
    pointer-events: none;
    opacity: 0.4;
}

@keyframes float-particles {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-150px); }
}




/* Hero Container - for index.html */
.hero-container {
    text-align: center;
    margin-top: -1.3rem;
    position: relative;
    z-index: 100;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.logo {
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    opacity: 1;
    position: relative;
    z-index: 10;
}

.logo a {
    display: block;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo img {
    width: 350px;
    height: auto;
}

/* Page-specific logo styling */
.hero-section .logo img {
    width: 150px;
    height: auto;
}

.slogan {
    max-width: 45rem;
    font-size: 2.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffeb3b, #ffc107, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
    opacity: 1;
    position: relative;
    z-index: 10;
}

.typing-container {
    height: 80px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typing-text {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    opacity: 1;
    position: relative;
    z-index: 10;
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 1.5rem;
    background-color: #ff6b6b;
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Social Links - for page.html */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    align-items: center;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.social-link.twitter:hover {
    background: #1da1f2;
}

.social-link.linkedin:hover {
    background: #0077b5;
}

.social-link.github:hover {
    background: #333;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Contact Modal - for page.html */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.contact-modal.active .contact-modal-content {
    transform: scale(1);
}

.contact-modal-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-modal-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #4ecdc4;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #4ecdc4;
}



/* Buttons */
.buttons-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: stretch;
    opacity: 1;
    position: relative;
    z-index: 10;
}

.btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    opacity: 1;
    z-index: 10;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    background: linear-gradient(45deg, #ff5252, #ff9800);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Sample Button Special Styling */
.sample-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.2rem;
    min-width: 320px;
    max-width: 350px;
    white-space: nowrap;
}

.sample-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.sample-link-wrapper {
    background: #53538575;
    border: 1px solid rgba(100, 149, 237, 0.6);
    border-radius: 15px;
    padding: 0.3rem 0.6rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.bi-globe {
    color: #6495ed;
    flex-shrink: 0;
    font-size: 16px;
}

.sample-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.sample-btn:hover .sample-link-wrapper {
    background: transparent;
    border-color: rgba(100, 149, 237, 0.5);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(100, 149, 237, 0.2);
}

.sample-btn:hover .sample-link,
.sample-btn:hover .bi-globe {
    color: #000000;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        padding: 1rem;
    }

    .logo {
        margin-bottom: 1.5rem;
    }

    .logo img {
        width: 180px;
    }

    /* Page-specific responsive logo */
    .hero-section .logo img {
        width: 90px;
    }

    .slogan {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .typing-text {
        font-size: 1.5rem;
    }

    .typing-container {
        height: 60px;
        margin-bottom: 2rem;
    }

    .buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        min-width: auto;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .sample-btn {
        padding: 0.6rem 1rem;
        min-width: 280px;
        max-width: 300px;
        width: 100%;
    }

    .sample-text {
        font-size: 0.65rem;
    }

    .sample-link {
        font-size: 0.65rem;
        font-weight: 600;
    }

    /* Page.html responsive styles */
    .hero-section {
        padding-top: 1.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
        line-height: 1.2;
    }

    .avatar-image {
        width: 120px;
        height: 120px;
    }

    .avatar-container {
        margin-bottom: 6rem;
    }

    .circular-social {
        width: 280px;
        height: 280px;
    }

    .social-item {
        width: 45px;
        height: 45px;
    }

    .social-item svg {
        width: 18px;
        height: 18px;
    }


    .social-links {
        gap: 0.8rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .scroll-text {
        font-size: 1rem;
    }

    .scroll-arrow {
        width: 70px;
        height: 70px;
    }

    /* Facts scroll arrow mobile styles */
    .facts-scroll-arrow {
        bottom: 1.5rem;
    }

    .scroll-arrow-content {
        padding: 0.8rem;
    }

    .scroll-arrow-icon {
        width: 20px;
        height: 20px;
    }

    /* Facts responsive */
    .fact-item {
        padding: 1.5rem;
        flex-direction: column;
        gap: 2rem;
    }

    .fact-item:nth-child(even) {
        flex-direction: column;
    }

    .fact-image {
        flex: none;
        height: 40%;
        width: 100%;
    }


    .fact-content {
        flex: none;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }


    .fact-number {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }

    .fact-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .fact-text p {
        font-size: 1.2rem;
    }

    .cta-fact .fact-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        min-width: 180px;
    }

    /* CTA Section Mobile Styles */
    .cta-section {
        padding: 3.5rem 1rem;
    }

    .cta-content {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-icon {
        font-size: 3rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    /* Pricing section responsive */
    .pricing-section {
        padding: 2rem 1rem;
    }

    .pricing-title {
        font-size: 2rem;
        line-height: 1.1;
        white-space: nowrap;
    }

    .pricing-description {
        font-size: 1.1rem;
    }

    .pricing-plans {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .plan-title {
        font-size: 1.8rem;
    }

    .price-current {
        font-size: 2.5rem;
    }

    .price-original {
        font-size: 1.2rem;
    }

    .price-period {
        font-size: 1rem;
    }

    .plan-description p {
        font-size: 1rem;
    }

    .feature-label,
    .feature-value {
        font-size: 0.9rem;
    }

    .plan-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    /* Recent pages section responsive */
    .recent-pages-section {
        padding: 2rem 1rem;
    }

    .recent-pages-title {
        font-size: 2rem;
        line-height: 1.1;
        white-space: nowrap;
    }

    .recent-pages-description {
        font-size: 1.1rem;
    }

    .page-card {
        min-width: 250px;
        padding: 1.5rem 1rem;
    }

    .page-image {
        width: 70px;
        height: 70px;
        margin-bottom: 0.8rem;
    }

    .page-name {
        font-size: 1.3rem;
    }

    .facts-count {
        font-size: 0.9rem;
    }

    /* Testimonials section responsive */
    .testimonials-section {
        padding: 2rem 1rem;
    }

    .testimonials-title {
        font-size: 2rem;
        line-height: 1.1;
        white-space: nowrap;
    }

    .testimonials-description {
        font-size: 1.1rem;
    }

    .testimonial-card {
        min-width: 300px;
        padding: 1.2rem;
    }

    .user-avatar {
        width: 45px;
        height: 45px;
    }

    .user-name {
        font-size: 0.9rem;
    }

    .user-handle {
        font-size: 0.8rem;
    }

    .testimonial-content p {
        font-size: 0.9rem;
    }

    .stat-item {
        font-size: 0.8rem;
        gap: 1rem;
    }

}

@media (max-width: 480px) {
    .slogan {
        font-size: 1.5rem;
    }

    .typing-text {
        font-size: 1.3rem;
    }

    .typing-container {
        height: 50px;
        margin-bottom: 1.5rem;
    }

    .btn {
        max-width: 260px;
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .sample-btn {
        min-width: 260px;
        max-width: 280px;
        padding: 0.5rem 0.8rem;
    }

    .sample-text {
        font-size: 0.65rem;
    }

    .sample-link {
        font-size: 0.65rem;
        font-weight: 600;
    }

    /* Page.html responsive styles */
    .hero-section {
        padding-top: 1rem;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.3;
        margin-bottom: 4rem;
    }

    .avatar-image {
        width: 100px;
        height: 100px;
    }

    .avatar-container {
        margin-bottom: 7rem;
    }

    .circular-social {
        width: 240px;
        height: 240px;
    }

    .social-item {
        width: 40px;
        height: 40px;
    }

    .social-item svg {
        width: 16px;
        height: 16px;
    }


    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .scroll-text {
        font-size: 0.9rem;
    }

    .scroll-arrow {
        width: 60px;
        height: 60px;
    }

    /* Facts scroll arrow small mobile styles */
    .facts-scroll-arrow {
        bottom: 1rem;
    }

    .scroll-arrow-content {
        padding: 0.7rem;
    }

    .scroll-arrow-icon {
        width: 24px;
        height: 24px;
    }

    /* Facts responsive for small screens */
    .fact-item {
        padding: 1rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .fact-item:nth-child(even) {
        flex-direction: column;
    }

    .fact-image {
        flex: none;
        height: 35%;
        width: 100%;
    }

    .fact-content {
        flex: none;
        padding: 1.5rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .fact-number {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .fact-text h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .fact-text p {
        font-size: 1rem;
    }

    .cta-fact .fact-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
        min-width: 160px;
    }

    /* Recent pages section responsive for small screens */
    .recent-pages-section {
        padding: 1.5rem 0.5rem;
        min-height: 50vh !important;
    }

    .recent-pages-title {
        font-size: 1.8rem !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
    }

    .recent-pages-description {
        font-size: 1rem;
    }

    .page-card {
        min-width: 200px;
        padding: 1.2rem 0.8rem;
    }

    .page-image {
        width: 60px;
        height: 60px;
        margin-bottom: 0.6rem;
    }

    .page-name {
        font-size: 1.1rem;
    }

    .facts-count {
        font-size: 0.8rem;
    }

    /* Testimonials section responsive for small screens */
    .testimonials-section {
        padding: 1.5rem 0.5rem;
        min-height: 50vh !important;
    }

    .testimonials-title {
        font-size: 1.8rem !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
    }

    .testimonials-description {
        font-size: 1rem;
    }

    .testimonial-card {
        min-width: 250px;
        padding: 1rem;
    }

    .user-avatar {
        width: 40px;
        height: 40px;
    }

    .user-name {
        font-size: 0.85rem;
    }

    .user-handle {
        font-size: 0.75rem;
    }

    .testimonial-content p {
        font-size: 0.85rem;
    }

    .stat-item {
        font-size: 0.75rem;
        gap: 0.8rem;
    }

    /* Pricing section responsive for small screens */
    .pricing-section {
        padding: 1.5rem 0.5rem;
    }

    .pricing-title {
        font-size: 1.8rem !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
    }

    .pricing-description {
        font-size: 1rem;
    }

    .pricing-plans {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 350px;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .plan-title {
        font-size: 1.5rem;
    }

    .price-current {
        font-size: 2rem;
    }

    .price-original {
        font-size: 1rem;
    }

    .price-period {
        font-size: 0.9rem;
    }

    .plan-description p {
        font-size: 0.9rem;
    }

    .feature-label,
    .feature-value {
        font-size: 0.8rem;
    }

    .plan-btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }

    /* CTA Section Mobile Styles for Small Screens */
    .cta-section {
        padding: 3rem 0.5rem;
    }

    .cta-content {
        padding: 2rem 1rem;
        border-radius: 18px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }

    .cta-icon {
        font-size: 2.8rem;
    }

    .cta-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        max-width: 260px;
    }
}

/* Top Navbar */
.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.navbar-link:hover {
    color: white;
}

.navbar-link.active {
    color: #4ecdc4;
}

.navbar-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #4ecdc4;
    border-radius: 1px;
}

.navbar-cta {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    min-width: auto;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    background: linear-gradient(45deg, #ff5252, #ff9800);
}

/* Steps Section */
.steps-section {
    width: 100vw;
    min-height: 80vh;
    background: linear-gradient(135deg, rgb(74, 85, 104) 0%, rgb(85, 60, 154) 50%, rgb(85, 60, 154) 100%);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.steps-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    z-index: 100;
}

.steps-header {
    margin-bottom: 4rem;
}

.steps-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.steps-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.steps-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 280px;
    /* Fix mobile touch scrolling issues */
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: auto;
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgb(15 15 15 / 63%);
    z-index: 10;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.step-item:hover .step-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.step-icon i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.step-item:hover .step-icon i {
    color: white;
    transform: scale(1.1);
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    white-space: nowrap;
    min-height: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

.step-description .highlight {
    background: linear-gradient(45deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
}

/* Steps Section Responsive */
@media (max-width: 768px) {
    .steps-section {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .steps-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .steps-description {
        font-size: 1.1rem;
    }

    .steps-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }

    .step-item {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
        min-height: 250px;
        /* Enhanced mobile touch behavior */
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }

    .step-icon i {
        font-size: 2rem;
    }

    .step-title {
        font-size: 1.3rem;
        white-space: nowrap;
        min-height: 1.6rem;
    }

    .step-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .steps-section {
        padding: 1.5rem 0.5rem;
    }

    .steps-title {
        font-size: 2rem !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
    }

    .steps-description {
        font-size: 1rem;
    }

    .steps-content {
        gap: 1.5rem;
        max-width: 350px;
    }

    .step-item {
        padding: 1.5rem 1rem;
        min-height: 220px;
        /* Enhanced mobile touch behavior for small screens */
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .step-icon i {
        font-size: 1.8rem;
    }

    .step-title {
        font-size: 1.2rem;
        white-space: nowrap;
        min-height: 1.4rem;
    }

    .step-description {
        font-size: 0.9rem;
    }
}

/* Why Section */
.why-section {
    width: 100vw;
    min-height: 60vh;
    background: linear-gradient(135deg, rgb(74, 85, 104) 0%, rgb(85, 60, 154) 50%, rgb(85, 60, 154) 100%);
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    z-index: 100;
}

.why-header {
    margin-bottom: 2.5rem;
}

.why-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
}

.why-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', sans-serif;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 220px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.05);
}

.reason-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 6px 15px rgba(0, 0, 0, 0.08);
}

.reason-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.reason-item:hover::before {
    left: 100%;
}


.reason-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 
        0 8px 20px rgba(78, 205, 196, 0.25),
        0 3px 8px rgba(78, 205, 196, 0.15);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.reason-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), rgba(68, 160, 141, 0.2));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reason-item:hover .reason-icon {
    transform: scale(1.05);
    box-shadow: 
        0 12px 25px rgba(78, 205, 196, 0.3),
        0 5px 12px rgba(78, 205, 196, 0.2);
}

.reason-item:hover .reason-icon::before {
    opacity: 0.5;
}

.reason-icon i {
    font-size: 1.3rem;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reason-item:hover .reason-icon i {
    transform: scale(1.05);
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}

.reason-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.reason-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.reason-item:hover .reason-title {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}

.reason-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reason-item:hover .reason-description {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Why Section Responsive */
@media (max-width: 768px) {
    .why-section {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .why-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .why-description {
        font-size: 1.1rem;
    }

    .why-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 600px;
    }

    .reason-item {
        padding: 1.5rem 1rem;
        min-height: 200px;
    }

    .reason-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.8rem;
    }

    .reason-icon i {
        font-size: 1.2rem;
    }

    .reason-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .reason-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .why-section {
        padding: 1.5rem 0.5rem;
    }

    .why-title {
        font-size: 2rem !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
    }

    .why-description {
        font-size: 1rem;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 350px;
    }

    .reason-item {
        padding: 1.5rem 1rem;
        min-height: 180px;
    }

    .reason-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.8rem;
    }

    .reason-icon i {
        font-size: 1.1rem;
    }

    .reason-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .reason-description {
        font-size: 0.8rem;
    }
}

/* AI Process Section */
.ai-process-section {
    width: 100vw;
    min-height: 80vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.ai-process-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    z-index: 100;
}

.ai-process-header {
    margin-bottom: 4rem;
}

.ai-process-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.ai-process-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.ai-process-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    height: auto;
    min-height: 500px;
    width: 100%;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.step-image {
    width: 100%;
    max-height: 100%;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.process-step:hover .step-image img {
    transform: scale(1.05);
}

.step-content {
    margin-bottom: 1rem;
    width: 100%;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.step-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    text-align: center;
    padding: 0 0.5rem;
}

/* Chat Container Styles */
.chat-container {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow-y: auto;
    padding: 1rem;
    padding-top: 2rem;
}

.chat-message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    animation: fadeInUp 0.5s ease-out;
}

.chat-message:last-child {
    margin-bottom: 0;
}

.chat-message.ai-message {
    justify-content: flex-start;
}

.chat-message.user-message {
    justify-content: flex-end;
}

.message-avatar {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.message-avatar svg {
    color: white;
    width: 14px;
    height: 14px;
}

.message-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.6rem 0.8rem;
    max-width: 80%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 0.5rem;
    margin-bottom: 0.6rem;
}

.ai-message .message-content {
    background: rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.3);
}

.user-message .message-content {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.message-content p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 1.3;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fact Content Styles for AI Process Section */
.process-step .fact-content {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
    padding: 1rem;
    width: 100%;
    max-height: 250px;
    overflow: hidden;
}

.process-step .fact-content:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(78, 205, 196, 0.1);
}

.process-step .fact-content:hover .fact-number {
    color: rgba(78, 205, 196, 1);
    text-shadow: 0 0 30px rgba(78, 205, 196, 0.5);
    transform: scale(1.05);
}

.process-step .fact-content:hover .fact-text h2 {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.process-step .fact-content:hover .fact-text p {
    color: rgba(255, 255, 255, 0.9);
}

/* AI Fact Content Styles for index.html */
.ai-fact-content {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
    padding: 1rem;
    height: 28%;
    width: 100%;
    max-height: 250px;
    overflow: hidden;
}

.ai-fact-content h2 {
    color: rgba(78, 205, 196, 0.8) !important;
}

.process-step .fact-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(78, 205, 196, 0.8);
    line-height: 1;
    margin-bottom: 0.3rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.process-step .fact-text h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.process-step .fact-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    margin: 0;
}

/* Process Connection Styles */
.process-connection {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 60px;
    height: 100px;
    margin: 0 1rem;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
    transform: translateY(-50%);
}

.connection-icon {
    position: relative;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-connection 2s ease-in-out infinite;
}

.connection-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.connection-icon svg {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.connection-icon:hover svg {
    color: white;
}

@keyframes pulse-connection {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

/* AI Process Section Responsive */
@media (max-width: 768px) {
    .ai-process-section {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .ai-process-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .ai-process-description {
        font-size: 1.1rem;
    }

    .ai-process-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-step {
        max-width: 90%;
        height: auto;
        min-height: 30rem;
        width: 90%;
        padding: 1.5rem 1rem;
        margin: 0 auto;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .step-title {
        font-size: 1.3rem;
    }


    .process-step .fact-content {
        padding: 0.8rem;
        margin-top: 1rem;
    }

    .process-step .fact-number {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
    }

    .process-step .fact-text h2 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }

    .process-step .fact-text p {
        font-size: 0.9rem;
    }

    .process-connection {
        transform: rotate(90deg);
        margin: 1rem 0;
        height: 60px;
        min-width: 100px;
    }

    .connection-line {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
        transform: translateX(-50%);
    }

    .chat-container {
        padding: 1rem;
        padding-top: 2rem;
        height: 24rem;
    }

    .message-content p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .ai-process-section {
        padding: 1.5rem 0.5rem;
    }

    .ai-process-title {
        font-size: 2rem !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
    }

    .ai-process-description {
        font-size: 1rem;
    }

    .ai-process-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-step {
        height: auto;
        min-height: 30rem;
        width: 90%;
        padding: 1.2rem 0.8rem;
        margin: 0 auto;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .step-title {
        font-size: 1.2rem;
    }


    .process-step .fact-number {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .process-step .fact-text h2 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .process-step .fact-text p {
        font-size: 0.85rem;
    }

    .process-connection {
        height: 50px;
        min-width: 80px;
    }

    .connection-icon {
        width: 35px;
        height: 35px;
    }

    .connection-icon svg {
        width: 20px;
        height: 20px;
    }

    .chat-container {
        padding: 2rem;
        padding-top: 2rem;
    }

    .message-content {
        padding: 0.4rem 0.5rem;
    }

    .message-content p {
        font-size: 0.7rem;
    }

    .message-avatar {
        width: 20px;
        height: 20px;
    }

    .message-avatar svg {
        width: 12px;
        height: 12px;
    }
}

/* Recent Pages Section */
.recent-pages-section {
    width: 100vw;
    min-height: 70vh;
    background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 50%, #ff9800 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.recent-pages-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    z-index: 100;
}

.recent-pages-header {
    margin-bottom: 4rem;
}

.recent-pages-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.recent-pages-description {
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.pages-carousel {
    width: 100%;
    position: relative;
}

.pages-track {
    padding: 0 2rem;
    display: flex;
    animation: scroll-left 30s linear infinite;
    gap: 2rem;
    width: fit-content;
}

.page-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    min-width: 280px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: block;
    color: inherit;
}

.page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.page-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.page-card:hover .page-image img {
    transform: scale(1.1);
}


.page-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.page-stats {
    display: flex;
    justify-content: center;
    align-items: center;
}

.facts-count {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pricing Section */
.pricing-section {
    width: 100vw;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.pricing-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    z-index: 100;
}

.pricing-header {
    margin-bottom: 4rem;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: rgba(232, 244, 253, 0.75);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.pricing-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.premium-plan {
    border: 2px solid rgba(78, 205, 196, 0.3);
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.premium-plan:hover {
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 30px 60px rgba(78, 205, 196, 0.2);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-title {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-current {
    font-size: 3rem;
    font-weight: 700;
    color: #4ecdc4;
    font-family: 'Poppins', sans-serif;
}

.price-original {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-family: 'Poppins', sans-serif;
}

.price-period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Poppins', sans-serif;
}

.plan-description {
    margin-bottom: 2rem;
}

.plan-description p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.plan-features {
    margin-bottom: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-hint {
    margin-top: auto;
    margin-bottom: 1.5rem;
    padding: 0.8rem 0;
    text-align: center;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.feature-hint small {
    color: rgba(78, 205, 196, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
}

.feature-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.feature-value {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.unlimited-text {
    color: #4ecdc4 !important;
    font-weight: 700 !important;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.3);
}

.plan-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.basic-plan .plan-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.basic-plan .plan-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.premium-plan .plan-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.premium-plan .plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    background: linear-gradient(45deg, #ff5252, #ff9800);
}

/* Testimonials Section */
.testimonials-section {
    width: 100vw;
    min-height: 70vh;
    background: linear-gradient(135deg, rgb(74, 85, 104) 0%, rgb(85, 60, 154) 50%, rgb(85, 60, 154) 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.testimonials-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    z-index: 100;
}

.testimonials-header {
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.testimonials-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.testimonials-carousel {
    width: 100%;
    position: relative;
}

.testimonials-track {
    padding: 0 2rem;
    display: flex;
    animation: scroll-testimonials 40s linear infinite;
    gap: 2rem;
    width: fit-content;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    min-width: 350px;
    max-width: 400px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: block;
    color: inherit;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(78, 205, 196, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.user-name {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.9);
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.user-handle {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.post-time {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.testimonial-content {
    margin-bottom: 1rem;
    text-align: left;
}

.testimonial-content p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.5;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.testimonial-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.stat-item:hover {
    color: rgba(78, 205, 196, 0.8);
}

.stat-item i {
    font-size: 1rem;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Footer */
.footer {
    position: relative;
    padding: 2rem 0;
    margin-top: 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-content a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #4ecdc4;
}

/* Scroll to Top Arrow */
.scroll-to-top {
    position: fixed;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    background: rgba(255, 107, 107, 0.7);
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
}

.scroll-to-top.visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
}

.scroll-to-top .scroll-arrow-content {
    background: rgba(255, 107, 107, 0.4);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 107, 0.5);
    border-radius: 50px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.2);
    cursor: pointer;
    transition: all 0.5s ease;
    animation: subtle-pulse 3s ease-in-out infinite;
    /* Fix mobile touch interactions */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.scroll-to-top .scroll-arrow-content:hover {
    background: rgba(255, 107, 107, 0.9);
    border-color: rgba(255, 107, 107, 1);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    transform: translateY(-2px);
}

.scroll-to-top .scroll-arrow-content:active {
    transform: translateY(0) scale(0.95);
}

.scroll-to-top .scroll-arrow-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

/* Adjust body padding for navbar */
body {
    padding-top: 80px;
}

.hero-section {
    padding-top: 1rem;
}


/* Responsive navbar */
@media (max-width: 768px) {
    .top-navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        width: 100%;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-links {
        gap: 1rem;
    }

    .navbar-link {
        font-size: 0.9rem;
    }

    .navbar-cta {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        min-width: auto;
        width: auto;
    }
}

@media (max-width: 480px) {
    .top-navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        width: 100%;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .navbar-links {
        gap: 0.5rem;
    }

    .navbar-link {
        font-size: 0.8rem;
    }

    .navbar-cta {
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
        min-width: auto;
        width: auto;
    }
}