/* Base Styles */
:root {
    --primary-color: #00c3ff;
    --secondary-color: #ff00e6;
    --accent-color: #7000ff;
    --background-color: #0a0e17;
    --card-bg-color: #111827;
    --text-color: #ffffff;
    --text-secondary: #a0aec0;
    --border-color: #1e293b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.highlight {
    color: var(--primary-color);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 195, 255, 0.3);
    margin-top: auto; /* Aligns button at the bottom inside flex column cards */
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 195, 255, 0.4);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(255, 0, 230, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 230, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--background-color);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.floating-stats {
    position: absolute;
    bottom: -30px;
    left: 0;
    display: flex;
    gap: 20px;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Services Section */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 30px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Locations Section */
.locations {
    padding: 100px 0;
    background-color: rgba(17, 24, 39, 0.5);
}

.globe-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.globe {
    flex: 1;
    min-width: 300px;
    height: 400px;
    position: relative;
    perspective: 1000px;
}

.globe-sphere {
    width: 300px;
    height: 300px;
    background: url('https://via.placeholder.com/600x600') no-repeat center center;
    background-size: cover;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(0deg);
    box-shadow: 0 0 50px rgba(0, 195, 255, 0.3);
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateY(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateY(360deg);
    }
}

.location-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 10;
}

.location-marker.germany {
    top: 35%;
    left: 48%;
}

.location-marker.bulgaria {
    top: 40%;
    left: 55%;
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.marker-pulse {
    width: 30px;
    height: 30px;
    background: rgba(0, 195, 255, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

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

.location-info {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg-color);
    padding: 15px;
    border-radius: 10px;
    width: 250px;
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.location-marker:hover .location-info {
    opacity: 1;
    visibility: visible;
}

.location-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.location-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.location-stats {
    margin-bottom: 10px;
}

.location-stats .stat {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.location-stats .stat-label {
    color: var(--text-secondary);
}

.location-stats .stat-value {
    font-size: 0.9rem;
}

.location-stats .stat-value.online {
    color: var(--success-color);
}

.location-stats .stat-value.offline {
    color: var(--danger-color);
}

.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.location-details {
    flex: 1;
    min-width: 300px;
}

.location-tabs {
    display: flex;
    margin-bottom: 20px;
    background-color: var(--card-bg-color);
    border-radius: 50px;
    padding: 5px;
}

.location-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    color: var(--text-color);
}

.location-tab.active {
    background: var(--gradient-primary);
}

.location-content {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 20px;
    display: none;
}

.location-content.active {
    display: block;
}

.location-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.spec {
    display: flex;
    align-items: center;
    gap: 15px;
}

.spec i {
    font-size: 24px;
    color: var(--primary-color);
}

.spec h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.spec p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.location-status {
    margin-top: 20px;
}

.status-chart {
    height: 200px;
}

/* Latency Test Section */
.latency {
    padding: 100px 0;
}

.latency-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.latency-map {
    flex: 1;
    min-width: 300px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: var(--card-bg-color);
    border-radius: 10px;
    overflow: hidden;
}

.map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://via.placeholder.com/1000x500') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.map-point {
    position: absolute;
    width: 20px;
    height: 20px;
}

.user-point {
    top: 50%;
    left: 20%;
}

.germany-point {
    top: 30%;
    left: 48%;
}

.bulgaria-point {
    top: 35%;
    left: 55%;
}

.point-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.point-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: var(--text-color);
    font-size: 0.8rem;
    margin-top: 5px;
}

.connection-line {
    position: absolute;
    height: 2px;
    background: var(--primary-color);
    transform-origin: 0 0;
    opacity: 0.5;
}

.latency-results {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.latency-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.latency-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.latency-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.latency-icon i {
    font-size: 18px;
}

.latency-value {
    text-align: center;
    margin-bottom: 15px;
}

.latency-value .value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.latency-value .unit {
    font-size: 1rem;
    color: var(--text-secondary);
}

.latency-bar {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}

.latency-progress {
    height: 100%;
    background: var(--gradient-primary);
    width: 0;
    transition: width 1s ease;
}

/* Status Section */
.status {
    padding: 100px 0;
    background-color: rgba(17, 24, 39, 0.5);
}

.status-dashboard {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.status-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.status-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--box-shadow);
}

.status-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon i {
    font-size: 24px;
}

.status-info {
    flex: 1;
}

.status-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-indicator .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-secondary);
}

.status-indicator.online .dot {
    background-color: var(--success-color);
}

.status-indicator.issue .dot {
    background-color: var(--warning-color);
}

.status-indicator.offline .dot {
    background-color: var(--danger-color);
}

.status-details {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    overflow: hidden;
}

.status-tabs {
    display: flex;
    background-color: rgba(0, 0, 0, 0.2);
}

.status-tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    color: var(--text-color);
}

.status-tab.active {
    background: var(--gradient-primary);
}

.status-content {
    padding: 20px;
    display: none;
}

.status-content.active {
    display: block;
}

.status-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon i {
    font-size: 18px;
}

.metric-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-info h4 {
    font-size: 1rem;
}

.metric-value {
    font-weight: 600;
}

.chart-bar {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.chart-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 0;
    transition: width 1s ease;
}

.status-history {
    margin-top: 20px;
}

.status-history h4 {
    margin-bottom: 15px;
}

.history-chart {
    height: 200px;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden; /* Prevents any overflow glitches */
}

.feature-card img {
    width: 300;
    height: 300;
    object-fit: contain; /* Keeps image aspect ratio and prevents squishing */
    align-self: center;  /* Centers the image horizontally */
    margin-bottom: 16px;
    flex-shrink: 0;      /* Prevents image from shrinking */
}

.feature-card .btn {
    margin-top: auto; /* Pushes the button to the bottom */
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
}
/*reviews*/
.features {
    padding: 100px 0;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden; /* Prevents any overflow glitches */
}

.review-card img {
    width: 300;
    height: 300;
    object-fit: contain; /* Keeps image aspect ratio and prevents squishing */
    align-self: center;  /* Centers the image horizontally */
    margin-bottom: 16px;
    flex-shrink: 0;      /* Prevents image from shrinking */
}

.review-card .btn {
    margin-top: auto; /* Pushes the button to the bottom */
}

.review-card:hover {
    transform: translateY(-10px);
}

.review-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
/*review*/
.feature-icon i {
    font-size: 30px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
}
/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: rgba(17, 24, 39, 0.5);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 500;
}

.faq-icon i {
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    background-color: var(--card-bg-color);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo p {
    color: var(--text-secondary);
    margin: 15px 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links-column {
    min-width: 150px;
}

.footer-links-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-links-column ul li a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-links-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 195, 255, 0.3);
    transition: all 0.3s ease;
}

.chat-button i {
    font-size: 24px;
}

.chat-button span {
    display: none;
}

.chat-button:hover {
    width: auto;
    padding: 0 20px;
    border-radius: 30px;
}

.chat-button:hover i {
    margin-right: 10px;
}

.chat-button:hover span {
    display: block;
}

.chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background-color: var(--card-bg-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    display: none;
    transition: all 0.3s ease;
}

.chat-popup.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.chat-header {
    padding: 15px;
    background: var(--gradient-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    font-size: 1.2rem;
}

.chat-close {
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.2rem;
}

.chat-messages {
    height: 300px;
    padding: 15px;
    overflow-y: auto;
}

.chat-message {
    display: flex;
    margin-bottom: 15px;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.chat-message.user .message-avatar {
    margin-right: 0;
    margin-left: 10px;
}

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

.message-content {
    max-width: 70%;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
}

.chat-message.user .message-content {
    background: var(--gradient-primary);
}

.message-time {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

.chat-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid var(--border-color);
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--text-color);
    outline: none;
}

.chat-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: var(--text-color);
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Pages */
.service-hero {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 23, 0.9), rgba(17, 24, 39, 0.8));
    z-index: -1;
}

.discord-hero::before {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(17, 24, 39, 0.8)), url('https://via.placeholder.com/1920x1080') no-repeat center center;
    background-size: cover;
}

.minecraft-hero::before {
    background: linear-gradient(135deg, rgba(67, 176, 71, 0.2), rgba(17, 24, 39, 0.8)), url('https://via.placeholder.com/1920x1080') no-repeat center center;
    background-size: cover;
}

.beamng-hero::before {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2), rgba(17, 24, 39, 0.8)), url('https://via.placeholder.com/1920x1080') no-repeat center center;
    background-size: cover;
}

.service-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-hero-content {
    flex: 1;
    max-width: 600px;
}

.service-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.service-hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.service-hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.service-features {
    padding: 100px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .service-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .service-hero-content {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 15px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--background-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .floating-stats {
        position: static;
        margin-top: 20px;
    }
    
    .globe {
        height: 300px;
    }
    
    .globe-sphere {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .chat-popup {
        width: 300px;
    }
}
/* discord */
 @media only screen and (max-width: 1000px) {
    .discord-widget {
      display: none;
    }
  }
  .flux-node {
    position: relative;
    cursor: pointer;
    transition:
        transform 1.1s cubic-bezier(.36,1.7,.43,1.01),
        box-shadow 1.1s cubic-bezier(.36,1.7,.43,1.01);
}
.flux-node:hover {
    transform: translateY(-10px) scale(1.07) rotate(-2deg);
    box-shadow:
        0 0 24px 2px #3efffa,
        0 12px 36px rgba(0,255,255,0.25),
        0 4px 24px rgba(0,0,0,0.10);
    z-index: 2;
}

.flux-popup {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translate(-50%, -24px) scale(0.85);
    min-width: 180px;
    padding: 15px 22px;
    background: rgba(25, 32, 50, 0.97);
    color: #fff;
    border-radius: 13px;
    box-shadow:
        0 0 24px 2px #3efffa,
        0 8px 32px rgba(0,255,255,0.10),
        0 1.5px 6px rgba(0,0,0,0.15);
    font-size: 1.08rem;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 1.5s cubic-bezier(.36,1.7,.43,1.01),
        transform 1.5s cubic-bezier(.36,1.7,.43,1.01),
        box-shadow 1.5s cubic-bezier(.36,1.7,.43,1.01);
    z-index: 10;
    font-family: inherit;
    filter: drop-shadow(0 0 6px #0ffbea99);
}

.flux-node:hover .flux-popup {
    opacity: 1;
    transform: translate(-50%, 0) scale(1.13);
    pointer-events: auto;
    box-shadow:
        0 0 32px 4px #00fff7,
        0 12px 40px rgba(0,255,255,0.20),
        0 2px 18px rgba(0,0,0,0.18);
    filter: drop-shadow(0 0 14px #00ffe0cc);
}

.flux-popup::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -13px;
    transform: translateX(-50%);
    border-width: 0 12px 14px 12px;
    border-style: solid;
    border-color: transparent transparent #3efffa transparent;
    filter: blur(2px) brightness(2);
    opacity: 0.8;
    z-index: 1;
}

@media (max-width: 500px) {
    .flux-popup {
        min-width: 120px;
        font-size: 0.95rem;
        padding: 11px 7px;
    }
}
/* Trustpilot */
.trustpilot-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.trustpilot-link {
  position: relative;
  display: inline-block;
  color: #00b67a;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.trustpilot-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #00b67a;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.trustpilot-link:hover {
  color: #00e69b;
  transform: scale(1.03);
}

.trustpilot-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/*sweep animation features */

.feature-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px; /* reduced space between cards */
  justify-content: center;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 35px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 123, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #e0e0e0;
  max-width: 425px;
  overflow: hidden;
  transition: box-shadow 0.5s ease, border 0.5s ease;
  box-shadow: 0 0 0 rgba(0, 123, 255, 0);
  text-align: center;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 123, 255, 0.05), rgba(0, 123, 255, 0.15), rgba(0, 123, 255, 0.05));
  z-index: 0;
  transition: left 0.6s ease-in-out;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  box-shadow: 0 0 30px rgba(0, 123, 255, 0.2);
  border-color: rgba(0, 123, 255, 0.4);
}

.feature-card * {
  position: relative;
  z-index: 1;
}

.icon-box,
.feature-icon {
  background: rgba(0, 123, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 13px;
  padding: 28px 12px 27px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin: 0 auto px auto;
  box-shadow: inset 0 0 6px rgba(0, 80, 255, 0.4), 0 4px 8px rgba(0, 80, 255, 0.3);
  color: #a8d1ff;
  transition: transform 0.5s ease, color 0.5s ease;
  height: 56px;
  width: 56px;
}

.feature-card:hover .icon-box,
.feature-card:hover .feature-icon {
  transform: translateY(-10px) scale(1.25);
  color: #c1e3ff;
}
/*sweeping features end */

.icon-gap {
  margin-right: 15px;
}

.small-icons-gap{
    margin-right: 6px;
}

/*Sweeping animation for review cards */
.review-card {
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 123, 255, 0.05), rgba(0, 123, 255, 0.15), rgba(0, 123, 255, 0.05));
  z-index: 0;
  transition: left 0.6s ease-in-out;
}

.review-card:hover::before {
  left: 100%;
}
