* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    background: #0B1020;
    color: #FFFFFF;
    cursor: none;
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: #2563FF;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
    will-change: transform;
    transform: translateZ(0);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(37, 99, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.2s ease;
    mix-blend-mode: difference;
    will-change: transform;
    transform: translateZ(0);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563FF, #5FF4E7, #F8D100);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11, 16, 32, 0.8);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 15px 50px;
    background: rgba(11, 16, 32, 0.95);
    box-shadow: 0 5px 30px rgba(37, 99, 255, 0.2);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563FF;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(95, 244, 231, 0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    to {
        left: 100%;
    }
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #2563FF;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563FF, #5FF4E7);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 50px 50px;
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#heroAnimatedBg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(11, 16, 32, 0.85) 0%,
            rgba(37, 99, 255, 0.75) 50%,
            rgba(95, 244, 231, 0.65) 100%);
    backdrop-filter: blur(2px);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    /* animation controlled by JS transition */
}

.hero-content.animate-content {
    pointer-events: auto;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 30px;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #5FF4E7;
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero Title */
.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15vh;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateY(-5vh);
}

.title-line {
    display: block;
    color: #FFFFFF;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
}

.animate-content .title-line {
    animation: titleSlideIn 0.8s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.5s;
}

.title-line:nth-child(2) {
    animation-delay: 0.7s;
}

@keyframes titleSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, #5FF4E7 0%, #FFFFFF 50%, #F8D100 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(20px);
}

.animate-content .hero-subtitle {
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

/* Hero Description */
.hero-description {
    max-width: 600px;
    margin: 0 auto 40px;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(20px);
}

.animate-content .hero-description {
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

.hero-description p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
}

.animate-content .hero-cta-group {
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: none;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(135deg, #2563FF, #5FF4E7);
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(37, 99, 255, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 255, 0.6);
}

.cta-primary svg {
    transition: transform 0.3s ease;
}

.cta-primary:hover svg {
    transform: translateX(5px);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    color: #FFFFFF;
    overflow: hidden;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #5FF4E7, #2563FF, #F8D100, #5FF4E7);
    background-size: 300% 300%;
    border-radius: 50px;
    z-index: -1;
    animation: gradientRotate 4s ease infinite;
}

@keyframes gradientRotate {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.cta-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-secondary:hover::after {
    left: 100%;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(95, 244, 231, 0.4);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.animate-content .hero-stats {
    animation: fadeInUp 0.8s ease forwards 1.1s;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #5FF4E7;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(95, 244, 231, 0.5);
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.7s;
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #5FF4E7;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.3;
    }
}

.scroll-indicator span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
section {
    padding: 120px 50px;
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-title .title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section-title.visible .title-word {
    opacity: 1;
    transform: translateY(0);
}

.section-title.visible .title-word:nth-child(1) {
    transition-delay: 0.1s;
}

.section-title.visible .title-word:nth-child(2) {
    transition-delay: 0.2s;
}

.section-title.visible .title-word:nth-child(3) {
    transition-delay: 0.3s;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.content-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
#about {
    background: #EDE9E3;
    color: #0B1020;
}

#about p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* What We Do Section */
#what-we-do {
    background: #FFFFFF;
    color: #0B1020;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    transform-style: preserve-3d;
    opacity: 0;
    transform: translateY(50px) translateZ(0);
    will-change: transform, opacity;
    backface-visibility: hidden;
    pointer-events: none;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0) translateZ(0);
    pointer-events: auto;
}

.service-card:nth-child(1).visible {
    transition-delay: 0.1s;
}

.service-card:nth-child(2).visible {
    transition-delay: 0.2s;
}

.service-card:nth-child(3).visible {
    transition-delay: 0.3s;
}

.service-card:nth-child(4).visible {
    transition-delay: 0.4s;
}

.service-card:hover {
    transform: translateY(-10px) translateZ(0);
    border-color: #2563FF;
    box-shadow: 0 20px 40px rgba(37, 99, 255, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563FF, #5FF4E7);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 99, 255, 0.4), transparent);
    border-radius: 15px;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0B1020;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #2A2F36;
}

/* How We Work Section */
#how-we-work {
    background: #2A2F36;
}

.process-steps {
    display: grid;
    gap: 40px;
    margin-top: 60px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
}

.step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step:nth-child(1).visible {
    transition-delay: 0.1s;
}

.step:nth-child(2).visible {
    transition-delay: 0.2s;
}

.step:nth-child(3).visible {
    transition-delay: 0.3s;
}

.step:nth-child(4).visible {
    transition-delay: 0.4s;
}

.step:nth-child(5).visible {
    transition-delay: 0.5s;
}

.step:hover {
    background: rgba(95, 244, 231, 0.1);
    transform: translateX(10px);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #5FF4E7;
    line-height: 1;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #5FF4E7, transparent);
    transition: width 0.4s ease;
}

.step:hover .step-number::after {
    width: 100%;
}

.step-line {
    position: absolute;
    left: 70px;
    top: 100%;
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #5FF4E7, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step.visible .step-line {
    opacity: 0.5;
}

.step:last-child .step-line {
    display: none;
}

.step-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #F8D100;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Team Section */
#team {
    background: #0B1020;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.team-member.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.team-member:nth-child(1).visible {
    transition-delay: 0.1s;
}

.team-member:nth-child(2).visible {
    transition-delay: 0.15s;
}

.team-member:nth-child(3).visible {
    transition-delay: 0.2s;
}

.team-member:nth-child(4).visible {
    transition-delay: 0.25s;
}

.team-member:nth-child(5).visible {
    transition-delay: 0.3s;
}

.team-member:nth-child(6).visible {
    transition-delay: 0.35s;
}

.team-member:nth-child(7).visible {
    transition-delay: 0.4s;
}

.team-member:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(37, 99, 255, 0.1);
}

.team-photo {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #2563FF, #5FF4E7);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.team-photo span {
    position: relative;
    z-index: 2;
}

.team-photo-image {
    padding: 0;
    background: none;
}

.team-photo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .photo-overlay {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 14px;
    color: #5FF4E7;
    font-weight: 600;
}

/* Clickable Team Member */
.team-member-clickable {
    cursor: pointer;
    position: relative;
}

.team-member-clickable:hover {
    transform: translateY(-15px) scale(1.08);
}

.click-hint {
    font-size: 11px;
    color: rgba(95, 244, 231, 0.8);
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member-clickable:hover .click-hint {
    opacity: 1;
}

/* Team Modal */
.team-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: modalFadeIn 0.3s ease;
}

.team-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    z-index: 10001;
    max-width: 90%;
    max-height: 90vh;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8) translateY(50px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    font-size: 36px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
    border-color: #5FF4E7;
}

/* Careers Section */
#careers {
    background: #0B1020;
    color: #FFFFFF;
}

#careers .section-title {
    color: #5FF4E7;
}

.careers-content {
    max-width: 900px;
    margin: 0 auto;
}

.careers-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.qualities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.quality-item {
    padding: 20px;
    background: rgba(95, 244, 231, 0.1);
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    border: 2px solid #5FF4E7;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.quality-item.visible {
    opacity: 1;
    transform: scale(1);
}

.quality-item:nth-child(1).visible {
    transition-delay: 0.1s;
}

.quality-item:nth-child(2).visible {
    transition-delay: 0.15s;
}

.quality-item:nth-child(3).visible {
    transition-delay: 0.2s;
}

.quality-item:nth-child(4).visible {
    transition-delay: 0.25s;
}

.quality-item:nth-child(5).visible {
    transition-delay: 0.3s;
}

.quality-item:hover {
    transform: scale(1.05);
    background: rgba(95, 244, 231, 0.2);
    box-shadow: 0 0 20px rgba(95, 244, 231, 0.3);
}

.opportunities {
    margin-top: 40px;
}

.opportunities h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #5FF4E7;
}

.opp-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.opp-item {
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #2563FF;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s ease;
}

.opp-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.opp-item:nth-child(1).visible {
    transition-delay: 0.1s;
}

.opp-item:nth-child(2).visible {
    transition-delay: 0.15s;
}

.opp-item:nth-child(3).visible {
    transition-delay: 0.2s;
}

.opp-item:nth-child(4).visible {
    transition-delay: 0.25s;
}

.opp-item:nth-child(5).visible {
    transition-delay: 0.3s;
}

.opp-item:hover {
    background: rgba(37, 99, 255, 0.1);
    transform: translateX(10px);
}

#careers .cta-button {
    /* Premium glossy pill-shaped button */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: linear-gradient(135deg, #FFD700 0%, #F8D100 30%, #A8E063 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 50px;
    box-shadow:
        0 0 40px rgba(37, 99, 255, 0.6),
        0 0 80px rgba(37, 99, 255, 0.4),
        0 8px 24px rgba(0, 0, 0, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Glossy lighting highlight on top half */
#careers .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%);
    border-radius: 50px 50px 0 0;
    pointer-events: none;
    z-index: 1;
}

/* Subtle shimmer effect */
#careers .cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-25deg);
    animation: shimmerMove 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

#careers .cta-button span {
    position: relative;
    z-index: 3;
}

@keyframes shimmerMove {
    0% {
        left: -100%;
    }

    50% {
        left: -100%;
    }

    70% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

#careers .cta-button:hover {
    background: linear-gradient(135deg, #A8E063 0%, #F8D100 30%, #FFD700 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 0 50px rgba(37, 99, 255, 0.8),
        0 0 100px rgba(37, 99, 255, 0.5),
        0 12px 32px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.6),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

#careers .cta-button:active {
    transform: translateY(-1px) scale(0.99);
    box-shadow:
        0 0 30px rgba(37, 99, 255, 0.7),
        0 0 60px rgba(37, 99, 255, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

/* Inquiry Section - Elegant Design */
#inquiry {
    background: linear-gradient(135deg, #0B1020 0%, #1a2332 50%, #0B1020 100%);
    position: relative;
    overflow: hidden;
}

#inquiry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(95, 244, 231, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    padding: 50px 45px;
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563FF, #5FF4E7, #2563FF);
    border-radius: 24px 24px 0 0;
}

.form-group {
    margin-bottom: 28px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #1a2332;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e0e4e8;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #FFFFFF;
    color: #0B1020;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563FF;
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(37, 99, 255, 0.15),
        0 0 0 4px rgba(37, 99, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus+.input-border,
.form-group textarea:focus+.input-border {
    width: 100%;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563FF, #5FF4E7);
    transition: width 0.4s ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e0e4e8;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #FFFFFF;
    color: #0B1020;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%232563FF' d='M7 10L2 5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-group select:focus {
    outline: none;
    border-color: #2563FF;
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(37, 99, 255, 0.15),
        0 0 0 4px rgba(37, 99, 255, 0.08);
}

.form-group select:focus+.input-border {
    width: 100%;
}

.submit-btn {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #2563FF 0%, #1e4fd9 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 24px rgba(37, 99, 255, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.submit-btn span {
    position: relative;
    z-index: 2;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1e4fd9 0%, #2563FF 100%);
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(37, 99, 255, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.submit-btn:active {
    transform: translateY(-1px);
    box-shadow:
        0 6px 20px rgba(37, 99, 255, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Thank You Message */
.thank-you-message {
    text-align: center;
    padding: 60px 40px;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #5FF4E7, #2563FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #FFFFFF;
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.thank-you-message h3 {
    font-size: 32px;
    color: #0B1020;
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.thank-you-message p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.thank-you-message .submit-btn {
    max-width: 300px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease 0.5s both;
}

/* Contact Section - Elegant Redesign */
#contact {
    background: linear-gradient(135deg, #0B1020 0%, #151b2e 50%, #0B1020 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(37, 99, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(95, 244, 231, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.contact-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
    z-index: 1;
}

.contact-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px 35px;
    text-align: center;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2563FF, #5FF4E7, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.contact-item:nth-child(1).visible {
    transition-delay: 0.15s;
}

.contact-item:nth-child(2).visible {
    transition-delay: 0.25s;
}

.contact-item:nth-child(3).visible {
    transition-delay: 0.35s;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(37, 99, 255, 0.3);
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(37, 99, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(37, 99, 255, 0.15), rgba(95, 244, 231, 0.15));
    border: 2px solid rgba(37, 99, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow:
        0 8px 24px rgba(37, 99, 255, 0.15),
        inset 0 2px 8px rgba(255, 255, 255, 0.1);
}

.contact-icon span {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 255, 0.4), transparent);
    transform: translate(-50%, -50%);
    animation: elegantPulse 3s ease-in-out infinite;
    opacity: 0;
}

@keyframes elegantPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.3;
    }
}

.contact-item:hover .contact-icon {
    transform: translateY(-5px) scale(1.08);
    background: linear-gradient(135deg, rgba(37, 99, 255, 0.25), rgba(95, 244, 231, 0.25));
    border-color: rgba(95, 244, 231, 0.5);
    box-shadow:
        0 12px 32px rgba(37, 99, 255, 0.3),
        0 0 40px rgba(95, 244, 231, 0.2),
        inset 0 2px 12px rgba(255, 255, 255, 0.15);
}

.contact-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: rgba(95, 244, 231, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 8px 0;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563FF, #5FF4E7);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.contact-item:hover a {
    color: #FFFFFF;
    transform: translateY(-2px);
}

.contact-item:hover a::after {
    width: 100%;
}

/* Footer */
footer {
    background: #0B1020;
    padding: 40px 50px;
    text-align: center;
    border-top: 1px solid rgba(37, 99, 255, 0.3);
}

footer p {
    opacity: 0.7;
    color: #FFFFFF;
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    nav {
        padding: 15px 25px;
    }

    .mobile-menu-btn {
        display: flex;
        cursor: pointer;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(11, 16, 32, 0.98);
        padding: 30px;
        border-radius: 20px;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 25px;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 80px 25px 40px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .stat-divider {
        width: 80%;
        height: 1px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        cursor: pointer;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    section {
        padding: 80px 25px;
    }

    .section-title {
        font-size: 36px;
    }
}

/* ==================== CHATBOT STYLES ==================== */

/* Chatbot Button */
.chatbot-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563FF, #5FF4E7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 8px 32px rgba(37, 99, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: chatbotPulse 2s ease-in-out infinite;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 99, 255, 0.6);
}

.chatbot-button.active {
    transform: scale(0.9);
}

@keyframes chatbotPulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(37, 99, 255, 0.4), 0 0 0 0 rgba(37, 99, 255, 0.7);
    }

    50% {
        box-shadow: 0 8px 32px rgba(37, 99, 255, 0.4), 0 0 0 15px rgba(37, 99, 255, 0);
    }
}

.chatbot-icon {
    font-size: 28px;
    transition: transform 0.3s ease;
}

.chatbot-button.active .chatbot-icon {
    transform: rotate(90deg);
}

/* Notification Badge */
.chatbot-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #F8D100;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #0B1020;
    animation: notificationBounce 0.5s ease;
}

@keyframes notificationBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Chatbot Container */
.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 400px;
    max-width: calc(100vw - 60px);
    height: 600px;
    max-height: calc(100vh - 140px);
    background: rgba(11, 16, 32, 0.95);
    backdrop-filter: blur(40px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 9997;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbot-container.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Chatbot Header */
.chatbot-header {
    padding: 24px;
    background: linear-gradient(135deg, rgba(37, 99, 255, 0.2), rgba(95, 244, 231, 0.2));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563FF, #5FF4E7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
}

.chatbot-avatar::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #5FF4E7;
    border: 2px solid #0B1020;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.chatbot-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chatbot-title h3 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.chatbot-title p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.chatbot-close {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Chatbot Messages */
.chatbot-messages {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(95, 244, 231, 0.3);
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(95, 244, 231, 0.5);
}

/* Message Bubble */
.message {
    display: flex;
    gap: 12px;
    animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.message.bot .message-avatar {
    background: linear-gradient(135deg, #2563FF, #5FF4E7);
}

.message.user .message-avatar {
    background: linear-gradient(135deg, #F8D100, #5FF4E7);
}

.message-content {
    max-width: 70%;
}

.message-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.message.bot .message-bubble {
    background: rgba(37, 99, 255, 0.15);
    border: 1px solid rgba(37, 99, 255, 0.3);
    color: #FFFFFF;
    border-bottom-left-radius: 4px;
}

.message.user .message-bubble {
    background: linear-gradient(135deg, #2563FF, #5FF4E7);
    color: #FFFFFF;
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    padding: 0 4px;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 12px;
    padding: 12px 0;
}

.typing-indicator .message-avatar {
    background: linear-gradient(135deg, #2563FF, #5FF4E7);
}

.typing-dots {
    background: rgba(37, 99, 255, 0.15);
    border: 1px solid rgba(37, 99, 255, 0.3);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    padding: 12px 16px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #5FF4E7;
    border-radius: 50%;
    animation: typingDot 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.7;
    }

    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Quick Replies */
.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.quick-reply {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(95, 244, 231, 0.3);
    border-radius: 20px;
    color: #5FF4E7;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.quick-reply:hover {
    background: rgba(95, 244, 231, 0.1);
    border-color: #5FF4E7;
    transform: translateY(-2px);
}

/* Chatbot Input */
.chatbot-input-container {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 4px 4px 4px 16px;
    transition: all 0.2s ease;
}

.chatbot-input-wrapper:focus-within {
    border-color: #5FF4E7;
    box-shadow: 0 0 0 3px rgba(95, 244, 231, 0.1);
}

.chatbot-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-size: 14px;
    padding: 12px 0;
    font-family: inherit;
}

.chatbot-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.chatbot-send {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563FF, #5FF4E7);
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chatbot-send:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 99, 255, 0.4);
}

.chatbot-send:active {
    transform: scale(0.95);
}

.chatbot-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Welcome Message */
.welcome-message {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.welcome-message h4 {
    color: #5FF4E7;
    margin-bottom: 8px;
    font-size: 16px;
}

.welcome-message p {
    font-size: 13px;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chatbot-container {
        bottom: 90px;
        right: 15px;
        left: 15px;
        width: auto;
        max-width: none;
        height: 500px;
    }

    .chatbot-button {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .chatbot-icon {
        font-size: 24px;
    }

    .message-content {
        max-width: 80%;
    }
}